score.vue 7.6 KB

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