score.vue 8.4 KB

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