score.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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 circle value-box ss-flex ss-row-center" :style="circleStyle">
  6. <view >积分</view>
  7. </view>
  8. <view class="ss-m-b-30 ss-font-40" :style="{color:percentageColor}">
  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. <!-- -->
  14. <button class="btn ss-reset-button" @tap="sheep.$router.go('/pages/goods/list', { categoryId: 98 })">
  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 @tap="sheep.$router.go('/pages/user/wallet/maxScoreLog')"
  23. title="当前可获得峰值" showArrow :border="false">
  24. <template v-slot:body>
  25. <p style="width: 100%">
  26. 当前可获得峰值:{{ points2point(userWallet.integralDO.currentQuota) }}/{{ points2point(userWallet.integralDO.highQuota) }}
  27. </p>
  28. </template>
  29. </uni-list-item>
  30. <uni-list-item clickable @tap="sheep.$router.go('/pages/user/wallet/ScoreLog', {isFreeze: true})"
  31. title="待确权" showArrow :border="false">
  32. <template v-slot:body>
  33. <p style="width: 100%">待确权:{{points2point(userWallet.integralDO.freezeQuota)}}</p>
  34. </template>
  35. </uni-list-item>
  36. <uni-list-item clickable @tap="sheep.$router.go('/pages/user/wallet/ScoreLog',{isFreeze: false})"
  37. title="积分来源记录" showArrow :border="false">
  38. <template v-slot:body>
  39. <p style="width: 100%">积分来源记录</p>
  40. </template>
  41. </uni-list-item>
  42. <uni-list-item clickable @tap="state.showModel = true" title="积分计算规则" :border="false">
  43. <template v-slot:body>
  44. <p style="width: 100%">积分计算规则</p>
  45. </template>
  46. </uni-list-item>
  47. </uni-list>
  48. </view>
  49. <!-- 积分计算规则 -->
  50. <su-popup :show="state.showModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
  51. <view class="head-nav">
  52. <view :class="state.navIndex==0?'activite':''" class="ss-m-l-20" @click="checkIndex(0)">
  53. 积分计算规则
  54. </view>
  55. </view>
  56. <scroll-view class="scroll-view_H" scroll-y="true">
  57. <richtext title="积分计算规则" type='tab' />
  58. </scroll-view>
  59. </su-popup>
  60. </s-layout>
  61. </template>
  62. <script setup>
  63. import sheep from '@/sheep';
  64. import {
  65. onLoad,
  66. onReachBottom
  67. } from '@dcloudio/uni-app';
  68. import {
  69. computed,
  70. reactive
  71. } from 'vue';
  72. import {
  73. points2point
  74. } from '@/sheep/hooks/useGoods';
  75. import _ from 'lodash';
  76. import dayjs from 'dayjs';
  77. import PointApi from '@/sheep/api/member/point';
  78. import {
  79. resetPagination
  80. } from '@/sheep/util';
  81. import ScoreApi from '@/sheep/api/distri/score';
  82. import ScoreLog from './ScoreLog'
  83. import richtext from '@/pages/public/richtext'
  84. const userWallet = computed(() => sheep.$store('user').userWallet);
  85. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  86. const userInfo = computed(() => sheep.$store('user').userInfo);
  87. const sys_navBar = sheep.$platform.navbar;
  88. const state = reactive({
  89. currentTab: 0,
  90. pagination: {
  91. list: [],
  92. total: 0,
  93. pageSize: 10,
  94. pageNo: 1,
  95. },
  96. loadStatus: '',
  97. showModel: false,
  98. });
  99. function close() {
  100. state.showModel = false;
  101. }
  102. const pointsPercentage = computed(() => {
  103. const currentQuota = parseFloat(points2point(userWallet.value.integralDO.currentQuota))
  104. const highQuota =parseFloat(points2point(userWallet.value.integralDO.highQuota))
  105. if (currentQuota > highQuota) {
  106. return 100;
  107. } else {
  108. const percentage = (currentQuota / highQuota) * 100;
  109. return Math.min(percentage, 100); // 确保百分比不会超过100
  110. }
  111. });
  112. const percentageColor = computed(() => {
  113. if (pointsPercentage.value>=90) {
  114. return '#fe0000';
  115. } else if(pointsPercentage.value>=75){
  116. return '#d8b800';
  117. } else {
  118. return '#0c912f';
  119. }
  120. });
  121. const circleStyle = computed(() => {
  122. return {
  123. // background: `conic-gradient(${percentageColor.value} ${pointsPercentage.value}%, #ddd ${pointsPercentage.value}%)`
  124. background: percentageColor.value
  125. };
  126. });
  127. async function getLogList(isFreeze) {
  128. state.loadStatus = 'loading';
  129. // isFreeze为true是冻结积分 isFreeze为false是已拿到的积分
  130. let {
  131. code,
  132. data
  133. } = await ScoreApi.getScoreApi({
  134. pageNo: state.pagination.pageNo,
  135. pageSize: state.pagination.pageSize,
  136. isFreeze: isFreeze
  137. });
  138. if (code !== 0) {
  139. return;
  140. }
  141. let list = _.concat(state.pagination.list, data.list);
  142. state.pagination.list = list;
  143. state.pagination.total = data.total;
  144. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  145. }
  146. function onLoadMore(isFreeze) {
  147. if (state.loadStatus === 'noMore') {
  148. return;
  149. }
  150. state.pagination.pageNo++;
  151. getLogList(isFreeze);
  152. }
  153. onReachBottom(() => {
  154. onLoadMore();
  155. });
  156. </script>
  157. <style lang="scss" scoped>
  158. .circle {
  159. position: relative;
  160. width: 100px;
  161. height: 100px;
  162. border-radius: 50%;
  163. }
  164. .circle::before {
  165. content: '';
  166. position: absolute;
  167. top: 10px;
  168. left: 10px;
  169. right: 10px;
  170. bottom: 10px;
  171. border-radius: 50%;
  172. background-color: #fff;
  173. }
  174. .circle view {
  175. position: absolute;
  176. top: 50%;
  177. left: 50%;
  178. transform: translate(-50%, -50%);
  179. font-size: 14px;
  180. font-weight: bold;
  181. }
  182. .scroll-view_H {
  183. width: 600rpx;
  184. height: 700rpx;
  185. padding: 20rpx;
  186. }
  187. .head-nav {
  188. margin: 20rpx auto;
  189. display: flex;
  190. align-items: center;
  191. box-sizing: border-box;
  192. color: var(--ui-BG-Main);
  193. }
  194. .head-nav>view {
  195. padding-bottom: 10rpx;
  196. border-bottom: 4rpx solid var(--ui-BG-Main);
  197. }
  198. .uni-list-item {
  199. margin: 0 20rpx;
  200. padding: 10rpx 0;
  201. border-bottom: 1px solid #d8d8d9;
  202. }
  203. .color-red {
  204. color: red;
  205. }
  206. .color-green {
  207. color: green;
  208. }
  209. .score-box {
  210. border-radius: 20rpx;
  211. padding-top: 100rpx;
  212. }
  213. .avatar-box {
  214. width: 100rpx;
  215. height: 100rpx;
  216. border-radius: 50%;
  217. overflow: hidden;
  218. .avatar-img {
  219. width: 100%;
  220. height: 100%;
  221. }
  222. }
  223. .value-box {
  224. width: 150rpx;
  225. height: 150rpx;
  226. text-align: center;
  227. border-radius: 50%;
  228. font-weight: bold;
  229. }
  230. .btn {
  231. width: 250rpx;
  232. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  233. border-radius: 20rpx;
  234. font-size: 30rpx;
  235. font-weight: 500;
  236. line-height: 80rpx;
  237. color: $white;
  238. position: relative;
  239. z-index: 1;
  240. }
  241. .header-box {
  242. width: 100%;
  243. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  244. background-size: 750rpx 100%;
  245. padding: 0 0 120rpx 0;
  246. box-sizing: border-box;
  247. .score-box {
  248. height: 100%;
  249. .all-num {
  250. font-size: 50rpx;
  251. font-weight: bold;
  252. color: #fff;
  253. font-family: OPPOSANS;
  254. }
  255. .all-title {
  256. font-size: 26rpx;
  257. font-weight: 500;
  258. color: #fff;
  259. }
  260. .cicon-help-o {
  261. color: #fff;
  262. font-size: 28rpx;
  263. }
  264. }
  265. }
  266. // 筛选
  267. .filter-box {
  268. height: 114rpx;
  269. background-color: $bg-page;
  270. .total-box {
  271. font-size: 24rpx;
  272. font-weight: 500;
  273. color: $dark-9;
  274. }
  275. .date-btn {
  276. background-color: $white;
  277. line-height: 54rpx;
  278. border-radius: 27rpx;
  279. padding: 0 20rpx;
  280. font-size: 24rpx;
  281. font-weight: 500;
  282. color: $dark-6;
  283. .ss-seldate-icon {
  284. font-size: 50rpx;
  285. color: $dark-9;
  286. }
  287. }
  288. }
  289. .model-box {
  290. height: 50vh;
  291. }
  292. .list-box {
  293. width: 500rpx;
  294. padding: 0 30rpx;
  295. overflow-y: auto;
  296. .list-item {
  297. background: #fff;
  298. // border-bottom: 1rpx solid #dfdfdf;
  299. padding: 30rpx;
  300. .name {
  301. font-size: 28rpx;
  302. font-weight: 500;
  303. color: rgba(102, 102, 102, 1);
  304. line-height: 28rpx;
  305. // margin-bottom: 20rpx;
  306. }
  307. .time {
  308. font-size: 24rpx;
  309. font-weight: 500;
  310. color: rgba(196, 196, 196, 1);
  311. line-height: 24px;
  312. }
  313. .add {
  314. font-size: 30rpx;
  315. font-weight: 500;
  316. color: #e6b873;
  317. }
  318. .minus {
  319. font-size: 30rpx;
  320. font-weight: 500;
  321. color: $dark-3;
  322. }
  323. }
  324. }
  325. </style>