score.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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 >数字 <br> 权益</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. <!-- @tap="sheep.$router.go('/pages/user/wallet/scoreToMoney')" -->
  14. <button class="btn ss-reset-button ui-Shadow-Main" @tap="sheep.$helper.toast('功能待开放')">
  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. };
  125. });
  126. async function getLogList(isFreeze) {
  127. state.loadStatus = 'loading';
  128. // isFreeze为true是冻结数字权益 isFreeze为false是已拿到的数字权益
  129. let {
  130. code,
  131. data
  132. } = await ScoreApi.getScoreApi({
  133. pageNo: state.pagination.pageNo,
  134. pageSize: state.pagination.pageSize,
  135. isFreeze: isFreeze
  136. });
  137. if (code !== 0) {
  138. return;
  139. }
  140. let list = _.concat(state.pagination.list, data.list);
  141. state.pagination.list = list;
  142. state.pagination.total = data.total;
  143. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  144. }
  145. function onLoadMore(isFreeze) {
  146. if (state.loadStatus === 'noMore') {
  147. return;
  148. }
  149. state.pagination.pageNo++;
  150. getLogList(isFreeze);
  151. }
  152. onReachBottom(() => {
  153. onLoadMore();
  154. });
  155. </script>
  156. <style lang="scss" scoped>
  157. .circle {
  158. position: relative;
  159. width: 100px;
  160. height: 100px;
  161. border-radius: 50%;
  162. }
  163. .circle::before {
  164. content: '';
  165. position: absolute;
  166. top: 10px;
  167. left: 10px;
  168. right: 10px;
  169. bottom: 10px;
  170. border-radius: 50%;
  171. background-color: #fff;
  172. }
  173. .circle view {
  174. position: absolute;
  175. top: 50%;
  176. left: 50%;
  177. transform: translate(-50%, -50%);
  178. font-size: 14px;
  179. font-weight: bold;
  180. }
  181. .scroll-view_H {
  182. width: 600rpx;
  183. height: 700rpx;
  184. padding: 20rpx;
  185. }
  186. .head-nav {
  187. margin: 20rpx auto;
  188. display: flex;
  189. align-items: center;
  190. box-sizing: border-box;
  191. color: rgb(14, 147, 46);
  192. }
  193. .head-nav>view {
  194. padding-bottom: 10rpx;
  195. border-bottom: 4rpx solid rgb(14, 147, 46);
  196. }
  197. .uni-list-item {
  198. margin: 0 20rpx;
  199. padding: 10rpx 0;
  200. border-bottom: 1px solid #d8d8d9;
  201. }
  202. .color-red {
  203. color: red;
  204. }
  205. .color-green {
  206. color: green;
  207. }
  208. .score-box {
  209. // margin: 20rpx;
  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. // line-height: 100rpx;
  227. text-align: center;
  228. border-radius: 50%;
  229. // border: 8px solid #fe0000;
  230. font-weight: bold;
  231. }
  232. .btn {
  233. width: 250rpx;
  234. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  235. border-radius: 20rpx;
  236. font-size: 30rpx;
  237. font-weight: 500;
  238. line-height: 80rpx;
  239. color: $white;
  240. position: relative;
  241. z-index: 1;
  242. }
  243. .header-box {
  244. width: 100%;
  245. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  246. background-size: 750rpx 100%;
  247. padding: 0 0 120rpx 0;
  248. box-sizing: border-box;
  249. .score-box {
  250. height: 100%;
  251. .all-num {
  252. font-size: 50rpx;
  253. font-weight: bold;
  254. color: #fff;
  255. font-family: OPPOSANS;
  256. }
  257. .all-title {
  258. font-size: 26rpx;
  259. font-weight: 500;
  260. color: #fff;
  261. }
  262. .cicon-help-o {
  263. color: #fff;
  264. font-size: 28rpx;
  265. }
  266. }
  267. }
  268. // 筛选
  269. .filter-box {
  270. height: 114rpx;
  271. background-color: $bg-page;
  272. .total-box {
  273. font-size: 24rpx;
  274. font-weight: 500;
  275. color: $dark-9;
  276. }
  277. .date-btn {
  278. background-color: $white;
  279. line-height: 54rpx;
  280. border-radius: 27rpx;
  281. padding: 0 20rpx;
  282. font-size: 24rpx;
  283. font-weight: 500;
  284. color: $dark-6;
  285. .ss-seldate-icon {
  286. font-size: 50rpx;
  287. color: $dark-9;
  288. }
  289. }
  290. }
  291. .model-box {
  292. height: 50vh;
  293. }
  294. .list-box {
  295. width: 500rpx;
  296. padding: 0 30rpx;
  297. overflow-y: auto;
  298. .list-item {
  299. background: #fff;
  300. // border-bottom: 1rpx solid #dfdfdf;
  301. padding: 30rpx;
  302. .name {
  303. font-size: 28rpx;
  304. font-weight: 500;
  305. color: rgba(102, 102, 102, 1);
  306. line-height: 28rpx;
  307. // margin-bottom: 20rpx;
  308. }
  309. .time {
  310. font-size: 24rpx;
  311. font-weight: 500;
  312. color: rgba(196, 196, 196, 1);
  313. line-height: 24px;
  314. }
  315. .add {
  316. font-size: 30rpx;
  317. font-weight: 500;
  318. color: #e6b873;
  319. }
  320. .minus {
  321. font-size: 30rpx;
  322. font-weight: 500;
  323. color: $dark-3;
  324. }
  325. }
  326. }
  327. </style>