score.vue 6.1 KB

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