score.vue 7.3 KB

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