score.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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. state.showModel = true;
  90. }
  91. function showQueModel(){
  92. state.showQueModel = true;
  93. }
  94. async function getLogList(isFreeze) {
  95. state.loadStatus = 'loading';
  96. // isFreeze为true是冻结积分 isFreeze为false是已拿到的积分
  97. let {
  98. code,
  99. data
  100. } = await ScoreApi.getScoreApi({
  101. pageNo: state.pagination.pageNo,
  102. pageSize: state.pagination.pageSize,
  103. isFreeze: isFreeze
  104. });
  105. if (code !== 0) {
  106. return;
  107. }
  108. let list = _.concat(state.pagination.list, data.list);
  109. state.pagination.list = list;
  110. state.pagination.total = data.total;
  111. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  112. }
  113. onLoad(() => {
  114. });
  115. function onLoadMore(isFreeze) {
  116. if (state.loadStatus === 'noMore') {
  117. return;
  118. }
  119. state.pagination.pageNo++;
  120. getLogList(isFreeze);
  121. }
  122. onReachBottom(() => {
  123. onLoadMore();
  124. });
  125. </script>
  126. <style lang="scss" scoped>
  127. .color-red{
  128. color: red;
  129. }
  130. .color-green{
  131. color: green;
  132. }
  133. .score-box {
  134. margin: 20rpx;
  135. border-radius: 20rpx;
  136. padding-top: 100rpx;
  137. }
  138. .avatar-box {
  139. width: 100rpx;
  140. height: 100rpx;
  141. border-radius: 50%;
  142. overflow: hidden;
  143. .avatar-img {
  144. width: 100%;
  145. height: 100%;
  146. }
  147. }
  148. .value-box {
  149. width: 100rpx;
  150. height: 100rpx;
  151. line-height: 100rpx;
  152. text-align: center;
  153. border-radius: 50%;
  154. border: 2px solid #f6f6f6;
  155. }
  156. .btn {
  157. width: 300rpx;
  158. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  159. border-radius: 20rpx;
  160. font-size: 30rpx;
  161. font-weight: 500;
  162. line-height: 80rpx;
  163. color: $white;
  164. position: relative;
  165. z-index: 1;
  166. }
  167. .header-box {
  168. width: 100%;
  169. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  170. background-size: 750rpx 100%;
  171. padding: 0 0 120rpx 0;
  172. box-sizing: border-box;
  173. .score-box {
  174. height: 100%;
  175. .all-num {
  176. font-size: 50rpx;
  177. font-weight: bold;
  178. color: #fff;
  179. font-family: OPPOSANS;
  180. }
  181. .all-title {
  182. font-size: 26rpx;
  183. font-weight: 500;
  184. color: #fff;
  185. }
  186. .cicon-help-o {
  187. color: #fff;
  188. font-size: 28rpx;
  189. }
  190. }
  191. }
  192. // 筛选
  193. .filter-box {
  194. height: 114rpx;
  195. background-color: $bg-page;
  196. .total-box {
  197. font-size: 24rpx;
  198. font-weight: 500;
  199. color: $dark-9;
  200. }
  201. .date-btn {
  202. background-color: $white;
  203. line-height: 54rpx;
  204. border-radius: 27rpx;
  205. padding: 0 20rpx;
  206. font-size: 24rpx;
  207. font-weight: 500;
  208. color: $dark-6;
  209. .ss-seldate-icon {
  210. font-size: 50rpx;
  211. color: $dark-9;
  212. }
  213. }
  214. }
  215. .model-box{
  216. height: 50vh;
  217. }
  218. .list-box {
  219. width: 500rpx;
  220. padding: 0 30rpx;
  221. overflow-y: auto;
  222. .list-item {
  223. background: #fff;
  224. // border-bottom: 1rpx solid #dfdfdf;
  225. padding: 30rpx;
  226. .name {
  227. font-size: 28rpx;
  228. font-weight: 500;
  229. color: rgba(102, 102, 102, 1);
  230. line-height: 28rpx;
  231. // margin-bottom: 20rpx;
  232. }
  233. .time {
  234. font-size: 24rpx;
  235. font-weight: 500;
  236. color: rgba(196, 196, 196, 1);
  237. line-height: 24px;
  238. }
  239. .add {
  240. font-size: 30rpx;
  241. font-weight: 500;
  242. color: #e6b873;
  243. }
  244. .minus {
  245. font-size: 30rpx;
  246. font-weight: 500;
  247. color: $dark-3;
  248. }
  249. }
  250. }
  251. </style>