score.vue 6.3 KB

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