score.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. <!-- 我的数字权益 -->
  2. <template>
  3. <s-layout class="wallet-wrap" :bgStyle="{'backgroundColor':'#ffffff'}" title="我的数字权益" navbar="normal">
  4. <view class="score-box bg-white ss-flex-col ss-row-center ss-col-center">
  5. <view class="ss-m-b-10 value-box ss-flex ss-row-center" @tap="showModel()">
  6. <view class="all-title">数字<br>权益</view>
  7. </view>
  8. <view class="ss-m-b-30 ss-font-40" style="color:#fe0000;">
  9. <text class="all-title ss-m-r-8">{{ points2point(userWallet.integralDO.currentQuota) }}</text>
  10. </view>
  11. <view class="ss-m-b-40">
  12. <view class="all-title ss-m-r-8">
  13. <!-- <button class="btn ss-reset-button ui-Shadow-Main"
  14. @tap="sheep.$router.go('/pages/user/wallet/scoreToMoney')">
  15. 兑换
  16. </button> -->
  17. <button class="btn ss-reset-button ui-Shadow-Main"
  18. @tap="sheep.$helper.toast('功能待开放')">
  19. 兑换
  20. </button>
  21. </view>
  22. </view>
  23. <!-- 分割线 -->
  24. <view class="ss-m-b-10" style="width: 100%;height: 20rpx;background-color: #ececec;"></view>
  25. <view class="ss-m-b-40 ss-font-32 text-center">
  26. <view class="all-title ss-m-r-8 ss-m-b-10 ">
  27. 当前可兑换数字权益:{{ points2point(userWallet.integralDO.currentQuota) }}</view>
  28. <view class="all-title ss-m-r-8" style="color: var(--ui-BG-Main)" @tap="showQueModel()">
  29. 待确权数字权益:{{points2point(userWallet.integralDO.freezeQuota)}}</view>
  30. </view>
  31. <view class="ss-m-b-80">
  32. <view class="all-title ss-m-r-8 ss-m-b-10">可兑换数字权益得计算规则</view>
  33. <view class="all-title ss-m-r-8 text-center">[点击查看说明]</view>
  34. </view>
  35. <!-- <view class="ss-m-b-40">
  36. <view class="all-title ss-m-r-8">
  37. <button class="btn ss-reset-button ui-Shadow-Main">
  38. 代购NFR
  39. </button>
  40. </view>
  41. </view> -->
  42. </view>
  43. <!-- 数字权益来源 -->
  44. <su-popup :show="state.showModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
  45. <ScoreLog :isFreeze="false"/>
  46. </su-popup>
  47. <!-- 数字权益确权 -->
  48. <su-popup :show="state.showQueModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
  49. <ScoreLog :isFreeze="true"/>
  50. </su-popup>
  51. </s-layout>
  52. </template>
  53. <script setup>
  54. import sheep from '@/sheep';
  55. import {
  56. onLoad,
  57. onReachBottom
  58. } from '@dcloudio/uni-app';
  59. import {
  60. computed,
  61. reactive
  62. } from 'vue';
  63. import {
  64. points2point
  65. } from '@/sheep/hooks/useGoods';
  66. import _ from 'lodash';
  67. import dayjs from 'dayjs';
  68. import PointApi from '@/sheep/api/member/point';
  69. import {
  70. resetPagination
  71. } from '@/sheep/util';
  72. import ScoreApi from '@/sheep/api/distri/score';
  73. import ScoreLog from './ScoreLog'
  74. const userWallet = computed(() => sheep.$store('user').userWallet);
  75. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  76. const userInfo = computed(() => sheep.$store('user').userInfo);
  77. const sys_navBar = sheep.$platform.navbar;
  78. const state = reactive({
  79. currentTab: 0,
  80. pagination: {
  81. list: [],
  82. total: 0,
  83. pageSize: 10,
  84. pageNo: 1,
  85. },
  86. loadStatus: '',
  87. showModel:false,
  88. showQueModel:false
  89. });
  90. function close(){
  91. state.showModel = false;
  92. state.showQueModel = false;
  93. }
  94. function showModel(){
  95. state.showModel = true;
  96. }
  97. function showQueModel(){
  98. state.showQueModel = true;
  99. }
  100. async function getLogList(isFreeze) {
  101. state.loadStatus = 'loading';
  102. // isFreeze为true是冻结数字权益 isFreeze为false是已拿到的数字权益
  103. let {
  104. code,
  105. data
  106. } = await ScoreApi.getScoreApi({
  107. pageNo: state.pagination.pageNo,
  108. pageSize: state.pagination.pageSize,
  109. isFreeze: isFreeze
  110. });
  111. if (code !== 0) {
  112. return;
  113. }
  114. let list = _.concat(state.pagination.list, data.list);
  115. state.pagination.list = list;
  116. state.pagination.total = data.total;
  117. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  118. }
  119. onLoad(() => {
  120. });
  121. function onLoadMore(isFreeze) {
  122. if (state.loadStatus === 'noMore') {
  123. return;
  124. }
  125. state.pagination.pageNo++;
  126. getLogList(isFreeze);
  127. }
  128. onReachBottom(() => {
  129. onLoadMore();
  130. });
  131. </script>
  132. <style lang="scss" scoped>
  133. .color-red{
  134. color: red;
  135. }
  136. .color-green{
  137. color: green;
  138. }
  139. .score-box {
  140. // margin: 20rpx;
  141. border-radius: 20rpx;
  142. padding-top: 100rpx;
  143. }
  144. .avatar-box {
  145. width: 100rpx;
  146. height: 100rpx;
  147. border-radius: 50%;
  148. overflow: hidden;
  149. .avatar-img {
  150. width: 100%;
  151. height: 100%;
  152. }
  153. }
  154. .value-box {
  155. width: 120rpx;
  156. height: 120rpx;
  157. // line-height: 100rpx;
  158. text-align: center;
  159. border-radius: 50%;
  160. border: 8px solid #fe0000;
  161. font-weight: bold;
  162. }
  163. .btn {
  164. width: 250rpx;
  165. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  166. border-radius: 20rpx;
  167. font-size: 30rpx;
  168. font-weight: 500;
  169. line-height: 80rpx;
  170. color: $white;
  171. position: relative;
  172. z-index: 1;
  173. }
  174. .header-box {
  175. width: 100%;
  176. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  177. background-size: 750rpx 100%;
  178. padding: 0 0 120rpx 0;
  179. box-sizing: border-box;
  180. .score-box {
  181. height: 100%;
  182. .all-num {
  183. font-size: 50rpx;
  184. font-weight: bold;
  185. color: #fff;
  186. font-family: OPPOSANS;
  187. }
  188. .all-title {
  189. font-size: 26rpx;
  190. font-weight: 500;
  191. color: #fff;
  192. }
  193. .cicon-help-o {
  194. color: #fff;
  195. font-size: 28rpx;
  196. }
  197. }
  198. }
  199. // 筛选
  200. .filter-box {
  201. height: 114rpx;
  202. background-color: $bg-page;
  203. .total-box {
  204. font-size: 24rpx;
  205. font-weight: 500;
  206. color: $dark-9;
  207. }
  208. .date-btn {
  209. background-color: $white;
  210. line-height: 54rpx;
  211. border-radius: 27rpx;
  212. padding: 0 20rpx;
  213. font-size: 24rpx;
  214. font-weight: 500;
  215. color: $dark-6;
  216. .ss-seldate-icon {
  217. font-size: 50rpx;
  218. color: $dark-9;
  219. }
  220. }
  221. }
  222. .model-box{
  223. height: 50vh;
  224. }
  225. .list-box {
  226. width: 500rpx;
  227. padding: 0 30rpx;
  228. overflow-y: auto;
  229. .list-item {
  230. background: #fff;
  231. // border-bottom: 1rpx solid #dfdfdf;
  232. padding: 30rpx;
  233. .name {
  234. font-size: 28rpx;
  235. font-weight: 500;
  236. color: rgba(102, 102, 102, 1);
  237. line-height: 28rpx;
  238. // margin-bottom: 20rpx;
  239. }
  240. .time {
  241. font-size: 24rpx;
  242. font-weight: 500;
  243. color: rgba(196, 196, 196, 1);
  244. line-height: 24px;
  245. }
  246. .add {
  247. font-size: 30rpx;
  248. font-weight: 500;
  249. color: #e6b873;
  250. }
  251. .minus {
  252. font-size: 30rpx;
  253. font-weight: 500;
  254. color: $dark-3;
  255. }
  256. }
  257. }
  258. </style>