score.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  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="state.showModel = true">
  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="state.showQueModel = true">
  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. <view class="model-box ss-flex-col">
  40. <scroll-view class="list-box" style="width: 600rpx;" scroll-y="true" @touchmove.stop>
  41. <view v-if="state.pagination.total > 0">
  42. <view class="list-item ss-flex ss-col-center ss-row-between "
  43. v-for="(item,index) in state.pagination.list" :key="item.id" style="padding: 30rpx 0;">
  44. <view class="ss-flex ss-col-center" style="width: 100%;">
  45. <view>
  46. {{index+1}}
  47. </view>
  48. <!-- 头像 -->
  49. <view class="avatar-box ss-m-x-20">
  50. <image class="avatar-img" :src="
  51. sheep.$url.static('/static/img/shop/default_avatar.png')" mode="aspectFill"></image>
  52. </view>
  53. <view class="ss-flex ss-m-t-10"
  54. style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.5rem);">
  55. <view class="name" style="width: 100%;"> {{ item.name || '空' }} <text
  56. style="float: right;">#{{item.point}}</text></view>
  57. <view class="time " style="width: 100%;">
  58. {{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM')}}
  59. <text style="float: right;">消费额:¥234</text>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. <s-empty v-else text="暂无数据" paddingTop="120" icon="/static/data-empty.png" />
  66. </scroll-view>
  67. </view>
  68. </su-popup>
  69. {{state.pagination.list}}
  70. <!-- 积分确权 -->
  71. <su-popup :show="state.showQueModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
  72. <view class="model-box ss-flex-col">
  73. <view class="all-title ss-p-x-30 ss-p-t-30">
  74. 待确权积分 <text style="float: right;">共#{{points2point(userWallet.integralDO.freezeQuota)}}</text>
  75. </view>
  76. <scroll-view class="list-box" style="width: 600rpx;" scroll-y="true" @touchmove.stop>
  77. <view v-if="!(state.pagination.total > 0)">
  78. <view class="list-item ss-flex ss-col-center ss-row-between "
  79. v-for="(item,index) in state.pagination.list" :key="item.id" style="padding: 30rpx 0;">
  80. <view class="ss-flex ss-col-center" style="width: 100%;">
  81. <view>
  82. {{index+1}}
  83. </view>
  84. <!-- 头像 -->
  85. <view class="avatar-box ss-m-x-20">
  86. <image class="avatar-img" :src="
  87. sheep.$url.static('/static/img/shop/default_avatar.png')" mode="aspectFill"></image>
  88. </view>
  89. <view class="ss-flex ss-m-t-10"
  90. style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.5rem);">
  91. <view class="name" style="width: 100%;"> {{ item.name || '空' }} <text
  92. style="float: right;">#{{item.point}}</text></view>
  93. <view class="time " style="width: 100%;">
  94. {{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM')}}
  95. <text style="float: right;">消费额:¥234</text>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. <s-empty v-else text="暂无数据" paddingTop="80" icon="/static/data-empty.png" />
  102. </scroll-view>
  103. </view>
  104. </su-popup>
  105. </s-layout>
  106. </template>
  107. <script setup>
  108. import sheep from '@/sheep';
  109. import {
  110. onLoad,
  111. onReachBottom
  112. } from '@dcloudio/uni-app';
  113. import {
  114. computed,
  115. reactive
  116. } from 'vue';
  117. import {
  118. points2point
  119. } from '@/sheep/hooks/useGoods';
  120. import _ from 'lodash';
  121. import dayjs from 'dayjs';
  122. import PointApi from '@/sheep/api/member/point';
  123. import {
  124. resetPagination
  125. } from '@/sheep/util';
  126. import ScoreApi from '@/sheep/api/distri/score';
  127. const userWallet = computed(() => sheep.$store('user').userWallet);
  128. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  129. const userInfo = computed(() => sheep.$store('user').userInfo);
  130. const sys_navBar = sheep.$platform.navbar;
  131. const state = reactive({
  132. currentTab: 0,
  133. pagination: {
  134. "list": [{
  135. "createTime": 1713607898000,
  136. "profitStatus": 6,
  137. "profitStatusName": "最高可以获得积分",
  138. "userId": 247,
  139. "orderId": 67,
  140. "orderNo": "o202404161713151",
  141. "id": 28,
  142. "amount": 93312,
  143. "afterAmount": 2822688,
  144. "freezeAmount": null,
  145. "afterFreezeAmount": null,
  146. "percentTemplate": "{\"createTime\":1712568106000,\"updateTime\":1713238272000,\"creator\":\"1\",\"updater\":\"1\",\"deleted\":false,\"id\":1,\"grossProfitPerc\":\"0.3888\",\"grossProfitUserQuotaPerc\":\"0.3500\",\"grossProfitAncestorQuotaPerc\":\"0.3500\",\"grossProfitBonusQuotaPerc\":\"0.0800\",\"grossProfitPlatformQuotaPerc\":\"0.1000\",\"divideIntoPerc\":\"0.0400\",\"status\":1}"
  147. },
  148. {
  149. "createTime": 1713607898000,
  150. "profitStatus": 4,
  151. "profitStatusName": "直推人额度",
  152. "userId": 247,
  153. "orderId": 73,
  154. "orderNo": "o202404172239581",
  155. "id": 33,
  156. "amount": 13608,
  157. "afterAmount": 227832,
  158. "freezeAmount": null,
  159. "afterFreezeAmount": null,
  160. "percentTemplate": "{\"createTime\":1712568106000,\"updateTime\":1713238272000,\"creator\":\"1\",\"updater\":\"1\",\"deleted\":false,\"id\":1,\"grossProfitPerc\":\"0.3888\",\"grossProfitUserQuotaPerc\":\"0.3500\",\"grossProfitAncestorQuotaPerc\":\"0.3500\",\"grossProfitBonusQuotaPerc\":\"0.0800\",\"grossProfitPlatformQuotaPerc\":\"0.1000\",\"divideIntoPerc\":\"0.0400\",\"status\":1}"
  161. },
  162. {
  163. "createTime": 1713607898000,
  164. "profitStatus": 6,
  165. "profitStatusName": "最高可以获得积分",
  166. "userId": 247,
  167. "orderId": 73,
  168. "orderNo": "o202404172239581",
  169. "id": 35,
  170. "amount": 116640,
  171. "afterAmount": 1632960,
  172. "freezeAmount": null,
  173. "afterFreezeAmount": null,
  174. "percentTemplate": "{\"createTime\":1712568106000,\"updateTime\":1713238272000,\"creator\":\"1\",\"updater\":\"1\",\"deleted\":false,\"id\":1,\"grossProfitPerc\":\"0.3888\",\"grossProfitUserQuotaPerc\":\"0.3500\",\"grossProfitAncestorQuotaPerc\":\"0.3500\",\"grossProfitBonusQuotaPerc\":\"0.0800\",\"grossProfitPlatformQuotaPerc\":\"0.1000\",\"divideIntoPerc\":\"0.0400\",\"status\":1}"
  175. }
  176. ],
  177. total: 0,
  178. pageSize: 6,
  179. pageNo: 1,
  180. },
  181. loadStatus: '',
  182. });
  183. async function getLogList(isFreeze) {
  184. state.loadStatus = 'loading';
  185. // isFreeze为true是冻结积分 isFreeze为false是已拿到的积分
  186. let {
  187. code,
  188. data
  189. } = await ScoreApi.getScoreApi({
  190. pageNo: state.pagination.pageNo,
  191. pageSize: state.pagination.pageSize,
  192. isFreeze: isFreeze
  193. });
  194. if (code !== 0) {
  195. return;
  196. }
  197. state.pagination.list = data.list;
  198. state.pagination.total = data.total;
  199. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  200. }
  201. onLoad(() => {
  202. // getLogList(true);
  203. // getLogList(false);
  204. });
  205. function onLoadMore() {
  206. if (state.loadStatus === 'noMore') {
  207. return;
  208. }
  209. state.pagination.pageNo++;
  210. getLogList();
  211. }
  212. onReachBottom(() => {
  213. onLoadMore();
  214. });
  215. </script>
  216. <style lang="scss" scoped>
  217. .score-box {
  218. margin: 20rpx;
  219. border-radius: 20rpx;
  220. padding-top: 100rpx;
  221. }
  222. .avatar-box {
  223. width: 100rpx;
  224. height: 100rpx;
  225. border-radius: 50%;
  226. overflow: hidden;
  227. .avatar-img {
  228. width: 100%;
  229. height: 100%;
  230. }
  231. }
  232. .value-box {
  233. width: 100rpx;
  234. height: 100rpx;
  235. line-height: 100rpx;
  236. text-align: center;
  237. border-radius: 50%;
  238. border: 2px solid #f6f6f6;
  239. }
  240. .btn {
  241. width: 300rpx;
  242. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  243. border-radius: 20rpx;
  244. font-size: 30rpx;
  245. font-weight: 500;
  246. line-height: 80rpx;
  247. color: $white;
  248. position: relative;
  249. z-index: 1;
  250. }
  251. .header-box {
  252. width: 100%;
  253. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  254. background-size: 750rpx 100%;
  255. padding: 0 0 120rpx 0;
  256. box-sizing: border-box;
  257. .score-box {
  258. height: 100%;
  259. .all-num {
  260. font-size: 50rpx;
  261. font-weight: bold;
  262. color: #fff;
  263. font-family: OPPOSANS;
  264. }
  265. .all-title {
  266. font-size: 26rpx;
  267. font-weight: 500;
  268. color: #fff;
  269. }
  270. .cicon-help-o {
  271. color: #fff;
  272. font-size: 28rpx;
  273. }
  274. }
  275. }
  276. // 筛选
  277. .filter-box {
  278. height: 114rpx;
  279. background-color: $bg-page;
  280. .total-box {
  281. font-size: 24rpx;
  282. font-weight: 500;
  283. color: $dark-9;
  284. }
  285. .date-btn {
  286. background-color: $white;
  287. line-height: 54rpx;
  288. border-radius: 27rpx;
  289. padding: 0 20rpx;
  290. font-size: 24rpx;
  291. font-weight: 500;
  292. color: $dark-6;
  293. .ss-seldate-icon {
  294. font-size: 50rpx;
  295. color: $dark-9;
  296. }
  297. }
  298. }
  299. .list-box {
  300. width: 500rpx;
  301. height: 600rpx;
  302. padding: 0 20rpx;
  303. overflow-y: auto;
  304. .list-item {
  305. background: #fff;
  306. // border-bottom: 1rpx solid #dfdfdf;
  307. padding: 30rpx;
  308. .name {
  309. font-size: 28rpx;
  310. font-weight: 500;
  311. color: rgba(102, 102, 102, 1);
  312. line-height: 28rpx;
  313. // margin-bottom: 20rpx;
  314. }
  315. .time {
  316. font-size: 24rpx;
  317. font-weight: 500;
  318. color: rgba(196, 196, 196, 1);
  319. line-height: 24px;
  320. }
  321. .add {
  322. font-size: 30rpx;
  323. font-weight: 500;
  324. color: #e6b873;
  325. }
  326. .minus {
  327. font-size: 30rpx;
  328. font-weight: 500;
  329. color: $dark-3;
  330. }
  331. }
  332. }
  333. </style>