score.vue 7.9 KB

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