score.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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. </view>
  28. </view>
  29. <!-- <view class="ss-m-b-40">
  30. <view class="all-title ss-m-r-8">
  31. <button class="btn ss-reset-button ui-Shadow-Main">
  32. 代购NFR
  33. </button>
  34. </view>
  35. </view> -->
  36. </view>
  37. <!-- 积分来源 -->
  38. <su-popup :show="state.showModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
  39. <ScoreLog :isFreeze="false"/>
  40. </su-popup>
  41. <!-- 积分确权 -->
  42. <su-popup :show="state.showQueModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
  43. <ScoreLog :isFreeze="true"/>
  44. </su-popup>
  45. </s-layout>
  46. </template>
  47. <script setup>
  48. import sheep from '@/sheep';
  49. import {
  50. onLoad,
  51. onReachBottom
  52. } from '@dcloudio/uni-app';
  53. import {
  54. computed,
  55. reactive
  56. } from 'vue';
  57. import {
  58. points2point
  59. } from '@/sheep/hooks/useGoods';
  60. import _ from 'lodash';
  61. import dayjs from 'dayjs';
  62. import PointApi from '@/sheep/api/member/point';
  63. import {
  64. resetPagination
  65. } from '@/sheep/util';
  66. import ScoreApi from '@/sheep/api/distri/score';
  67. import ScoreLog from './ScoreLog'
  68. const userWallet = computed(() => sheep.$store('user').userWallet);
  69. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  70. const userInfo = computed(() => sheep.$store('user').userInfo);
  71. const sys_navBar = sheep.$platform.navbar;
  72. const state = reactive({
  73. currentTab: 0,
  74. pagination: {
  75. list: [],
  76. total: 0,
  77. pageSize: 10,
  78. pageNo: 1,
  79. },
  80. loadStatus: '',
  81. showModel:false,
  82. showQueModel:false
  83. });
  84. function close(){
  85. state.showModel = false;
  86. state.showQueModel = false;
  87. }
  88. function showModel(){
  89. // getLogList(false);
  90. state.showModel = true;
  91. }
  92. function showQueModel(){
  93. // getLogList(true);
  94. state.showQueModel = true;
  95. }
  96. async function getLogList(isFreeze) {
  97. state.loadStatus = 'loading';
  98. // isFreeze为true是冻结积分 isFreeze为false是已拿到的积分
  99. let {
  100. code,
  101. data
  102. } = await ScoreApi.getScoreApi({
  103. pageNo: state.pagination.pageNo,
  104. pageSize: state.pagination.pageSize,
  105. isFreeze: isFreeze
  106. });
  107. if (code !== 0) {
  108. return;
  109. }
  110. let list = _.concat(state.pagination.list, data.list);
  111. state.pagination.list = list;
  112. state.pagination.total = data.total;
  113. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  114. }
  115. onLoad(() => {
  116. });
  117. function onLoadMore(isFreeze) {
  118. if (state.loadStatus === 'noMore') {
  119. return;
  120. }
  121. state.pagination.pageNo++;
  122. getLogList(isFreeze);
  123. }
  124. onReachBottom(() => {
  125. onLoadMore();
  126. });
  127. </script>
  128. <style lang="scss" scoped>
  129. .color-red{
  130. color: red;
  131. }
  132. .color-green{
  133. color: green;
  134. }
  135. .score-box {
  136. margin: 20rpx;
  137. border-radius: 20rpx;
  138. padding-top: 100rpx;
  139. }
  140. .avatar-box {
  141. width: 100rpx;
  142. height: 100rpx;
  143. border-radius: 50%;
  144. overflow: hidden;
  145. .avatar-img {
  146. width: 100%;
  147. height: 100%;
  148. }
  149. }
  150. .value-box {
  151. width: 100rpx;
  152. height: 100rpx;
  153. line-height: 100rpx;
  154. text-align: center;
  155. border-radius: 50%;
  156. border: 2px solid #f6f6f6;
  157. }
  158. .btn {
  159. width: 300rpx;
  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>