score.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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.accumulatedQuota + userWallet.integralDO.ancestorQuota) }}/{{ points2point(userWallet.integralDO.highQuotaTotal) }}
  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.accumulatedQuota + userWallet.value.integralDO.ancestorQuota));
  105. const highQuotaTotal = parseFloat(points2point(userWallet.value.integralDO.highQuotaTotal));
  106. const percentage = (currentQuota / highQuotaTotal) * 100;
  107. return Math.min(percentage, 100); // 确保百分比不会超过100
  108. });
  109. const percentageColor = computed(() => {
  110. if (pointsPercentage.value >= 90) {
  111. return '#fe0000';
  112. } else if (pointsPercentage.value >= 75) {
  113. return '#d8b800';
  114. } else {
  115. return '#0c912f';
  116. }
  117. });
  118. const circleStyle = computed(() => {
  119. return {
  120. // background: `conic-gradient(${percentageColor.value} ${pointsPercentage.value}%, #ddd ${pointsPercentage.value}%)`
  121. background: percentageColor.value
  122. };
  123. });
  124. </script>
  125. <style lang="scss" scoped>
  126. .circle {
  127. position: relative;
  128. width: 100px;
  129. height: 100px;
  130. border-radius: 50%;
  131. }
  132. .circle::before {
  133. content: '';
  134. position: absolute;
  135. top: 10px;
  136. left: 10px;
  137. right: 10px;
  138. bottom: 10px;
  139. border-radius: 50%;
  140. background-color: #fff;
  141. }
  142. .circle view {
  143. position: absolute;
  144. top: 50%;
  145. left: 50%;
  146. transform: translate(-50%, -50%);
  147. font-size: 14px;
  148. font-weight: bold;
  149. }
  150. .scroll-view_H {
  151. width: 600rpx;
  152. height: 700rpx;
  153. padding: 20rpx;
  154. }
  155. .head-nav {
  156. margin: 20rpx auto;
  157. display: flex;
  158. align-items: center;
  159. box-sizing: border-box;
  160. color: var(--ui-BG-Main);
  161. }
  162. .head-nav>view {
  163. padding-bottom: 10rpx;
  164. border-bottom: 4rpx solid var(--ui-BG-Main);
  165. }
  166. .uni-list-item {
  167. margin: 0 20rpx;
  168. padding: 10rpx 0;
  169. border-bottom: 1px solid #d8d8d9;
  170. }
  171. .color-red {
  172. color: red;
  173. }
  174. .color-green {
  175. color: green;
  176. }
  177. .score-box {
  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: 150rpx;
  193. height: 150rpx;
  194. text-align: center;
  195. border-radius: 50%;
  196. font-weight: bold;
  197. }
  198. .btn {
  199. width: 250rpx;
  200. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  201. border-radius: 20rpx;
  202. font-size: 30rpx;
  203. font-weight: 500;
  204. line-height: 80rpx;
  205. color: $white;
  206. position: relative;
  207. z-index: 1;
  208. }
  209. .header-box {
  210. width: 100%;
  211. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  212. background-size: 750rpx 100%;
  213. padding: 0 0 120rpx 0;
  214. box-sizing: border-box;
  215. .score-box {
  216. height: 100%;
  217. .all-num {
  218. font-size: 50rpx;
  219. font-weight: bold;
  220. color: #fff;
  221. font-family: OPPOSANS;
  222. }
  223. .all-title {
  224. font-size: 26rpx;
  225. font-weight: 500;
  226. color: #fff;
  227. }
  228. .cicon-help-o {
  229. color: #fff;
  230. font-size: 28rpx;
  231. }
  232. }
  233. }
  234. // 筛选
  235. .filter-box {
  236. height: 114rpx;
  237. background-color: $bg-page;
  238. .total-box {
  239. font-size: 24rpx;
  240. font-weight: 500;
  241. color: $dark-9;
  242. }
  243. .date-btn {
  244. background-color: $white;
  245. line-height: 54rpx;
  246. border-radius: 27rpx;
  247. padding: 0 20rpx;
  248. font-size: 24rpx;
  249. font-weight: 500;
  250. color: $dark-6;
  251. .ss-seldate-icon {
  252. font-size: 50rpx;
  253. color: $dark-9;
  254. }
  255. }
  256. }
  257. .model-box {
  258. height: 50vh;
  259. }
  260. .list-box {
  261. width: 500rpx;
  262. padding: 0 30rpx;
  263. overflow-y: auto;
  264. .list-item {
  265. background: #fff;
  266. // border-bottom: 1rpx solid #dfdfdf;
  267. padding: 30rpx;
  268. .name {
  269. font-size: 28rpx;
  270. font-weight: 500;
  271. color: rgba(102, 102, 102, 1);
  272. line-height: 28rpx;
  273. // margin-bottom: 20rpx;
  274. }
  275. .time {
  276. font-size: 24rpx;
  277. font-weight: 500;
  278. color: rgba(196, 196, 196, 1);
  279. line-height: 24px;
  280. }
  281. .add {
  282. font-size: 30rpx;
  283. font-weight: 500;
  284. color: #e6b873;
  285. }
  286. .minus {
  287. font-size: 30rpx;
  288. font-weight: 500;
  289. color: $dark-3;
  290. }
  291. }
  292. }
  293. </style>