maxScoreLog.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <template>
  2. <!-- 佣金确权 -->
  3. <s-layout class="wallet-wrap" :bgStyle="{'backgroundColor':'#ffffff'}" title="" navbar="normal">
  4. <view class="model-box ss-flex-col">
  5. <scroll-view class="list-box" scroll-y="true" @touchmove.stop>
  6. <view v-if="state.pagination.total > 0" style="padding: 20rpx;">
  7. <view class="list-item ss-flex ss-col-center ss-row-between "
  8. v-for="(item,index) in state.pagination.list" :key="item.id"
  9. style="padding:0;padding: 20rpx 0;border-bottom: 1px solid #c4c4c4;">
  10. <view class="ss-flex ss-col-center" style="width: 100%;">
  11. <view class="ss-flex ss-m-t-10"
  12. style="flex-direction: column;align-items: flex-start;width: 100%;">
  13. <view class="name" style="width: 100%;"> {{ title(item) }}
  14. <text style="float: right;" class="color-red"
  15. :class="{'color-green':item.maxAvailablePointsAmount < 0 || freezeHighQuota < 0 }">
  16. {{changeValue(item)}}
  17. </text>
  18. </view>
  19. <view class="time " style="width: 100%;">
  20. {{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM')}}
  21. <text
  22. style="float: right;">{{ balance(item)}}</text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <s-empty v-else text="暂无数据" paddingTop="200" icon="/static/data-empty.png" />
  29. <uni-load-more v-if="state.pagination.total > 0" :status="state.loadStatus" :content-text="{
  30. contentdown: '点击加载更多',
  31. }" @tap="onLoadMore(true)" @scrolltolower="onLoadMore(true)" />
  32. </scroll-view>
  33. </view>
  34. </s-layout>
  35. </template>
  36. <script setup>
  37. import sheep from '@/sheep';
  38. import {
  39. onLoad,
  40. onReachBottom
  41. } from '@dcloudio/uni-app';
  42. import {
  43. computed,
  44. reactive
  45. } from 'vue';
  46. import {
  47. points2point
  48. } from '@/sheep/hooks/useGoods';
  49. import _ from 'lodash';
  50. import dayjs from 'dayjs';
  51. import PointApi from '@/sheep/api/member/point';
  52. import {
  53. resetPagination
  54. } from '@/sheep/util';
  55. import ScoreApi from '@/sheep/api/distri/score';
  56. const userWallet = computed(() => sheep.$store('user').userWallet);
  57. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  58. const userInfo = computed(() => sheep.$store('user').userInfo);
  59. const sys_navBar = sheep.$platform.navbar;
  60. const props = defineProps({
  61. isFreeze: {
  62. type: Boolean
  63. }
  64. })
  65. const state = reactive({
  66. currentTab: 0,
  67. pagination: {
  68. list: [],
  69. total: 0,
  70. pageSize: 10,
  71. pageNo: 1,
  72. },
  73. loadStatus: '',
  74. showModel: false,
  75. showQueModel: false
  76. });
  77. // 列表标题
  78. const title = (item) => {
  79. let title = item.profitStatusName + '';
  80. // 如果有返回username就显示
  81. if(item.username){
  82. title += '('+item.username+ ')'
  83. }
  84. // 如果profitStatus === 23 || 24 就会显示待确权 否则都是确权
  85. if(item.profitStatus === 23 || item.profitStatus === 24){
  86. title += "-待确权"
  87. }else{
  88. title += "-转确权"
  89. }
  90. // title += ")"
  91. return title;
  92. }
  93. // 计算变化值
  94. const changeValue = (item) => {
  95. let value = '';
  96. if(item.freezeHighQuota > 0 || item.maxAvailablePointsAmount > 0){
  97. value = '+'
  98. }
  99. if(item.profitStatus === 23 || item.profitStatus === 24){
  100. value += points2point(item.freezeHighQuota)
  101. }else{
  102. value += points2point(item.maxAvailablePointsAmount)
  103. }
  104. return value;
  105. }
  106. // 计算余额
  107. const balance = (item) => {
  108. let value = '';
  109. if(item.profitStatus === 23 || item.profitStatus === 24){
  110. value += '待确权余额:'
  111. value += points2point(item.afterFreezeHighQuota)
  112. }else{
  113. value += '余额:'
  114. value += points2point(item.afterMaxAvailablePointsAmount)
  115. }
  116. return value;
  117. }
  118. async function getLogList(isFreeze) {
  119. state.loadStatus = 'loading';
  120. // isFreeze为true是冻结佣金 isFreeze为false是已拿到的佣金
  121. let {
  122. code,
  123. data
  124. } = await ScoreApi.getMaxScoreList({
  125. pageNo: state.pagination.pageNo,
  126. pageSize: state.pagination.pageSize,
  127. });
  128. if (code !== 0) {
  129. return;
  130. }
  131. let list = _.concat(state.pagination.list, data.list);
  132. state.pagination.list = list;
  133. state.pagination.total = data.total;
  134. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  135. }
  136. onLoad(() => {
  137. getLogList(props.isFreeze);
  138. });
  139. function onLoadMore(isFreeze) {
  140. if (state.loadStatus === 'noMore') {
  141. return;
  142. }
  143. state.pagination.pageNo++;
  144. getLogList(isFreeze);
  145. }
  146. onReachBottom(() => {
  147. onLoadMore();
  148. });
  149. </script>
  150. <style lang="scss" scoped>
  151. .color-red {
  152. color: red;
  153. }
  154. .color-green {
  155. color: green;
  156. }
  157. .score-box {
  158. margin: 20rpx;
  159. border-radius: 20rpx;
  160. padding-top: 100rpx;
  161. }
  162. .avatar-box {
  163. width: 100rpx;
  164. height: 100rpx;
  165. border-radius: 50%;
  166. overflow: hidden;
  167. .avatar-img {
  168. width: 100%;
  169. height: 100%;
  170. }
  171. }
  172. .value-box {
  173. width: 100rpx;
  174. height: 100rpx;
  175. line-height: 100rpx;
  176. text-align: center;
  177. border-radius: 50%;
  178. border: 2px solid #f6f6f6;
  179. }
  180. .btn {
  181. width: 300rpx;
  182. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  183. border-radius: 20rpx;
  184. font-size: 30rpx;
  185. font-weight: 500;
  186. line-height: 80rpx;
  187. color: $white;
  188. position: relative;
  189. z-index: 1;
  190. }
  191. .header-box {
  192. width: 100%;
  193. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  194. background-size: 750rpx 100%;
  195. padding: 0 0 120rpx 0;
  196. box-sizing: border-box;
  197. .score-box {
  198. height: 100%;
  199. .all-num {
  200. font-size: 50rpx;
  201. font-weight: bold;
  202. color: #fff;
  203. font-family: OPPOSANS;
  204. }
  205. .all-title {
  206. font-size: 26rpx;
  207. font-weight: 500;
  208. color: #fff;
  209. }
  210. .cicon-help-o {
  211. color: #fff;
  212. font-size: 28rpx;
  213. }
  214. }
  215. }
  216. // 筛选
  217. .filter-box {
  218. height: 114rpx;
  219. background-color: $bg-page;
  220. .total-box {
  221. font-size: 24rpx;
  222. font-weight: 500;
  223. color: $dark-9;
  224. }
  225. .date-btn {
  226. background-color: $white;
  227. line-height: 54rpx;
  228. border-radius: 27rpx;
  229. padding: 0 20rpx;
  230. font-size: 24rpx;
  231. font-weight: 500;
  232. color: $dark-6;
  233. .ss-seldate-icon {
  234. font-size: 50rpx;
  235. color: $dark-9;
  236. }
  237. }
  238. }
  239. .list-box {
  240. // width: 600rpx;
  241. // padding: 0 30rpx;
  242. overflow-y: auto;
  243. height: 100vh;
  244. .list-item {
  245. background: #fff;
  246. // border-bottom: 1rpx solid #dfdfdf;
  247. padding: 30rpx;
  248. .name {
  249. font-size: 28rpx;
  250. font-weight: 500;
  251. color: rgba(102, 102, 102, 1);
  252. line-height: 28rpx;
  253. // margin-bottom: 20rpx;
  254. }
  255. .time {
  256. font-size: 24rpx;
  257. font-weight: 500;
  258. color: rgba(196, 196, 196, 1);
  259. line-height: 24px;
  260. }
  261. .add {
  262. font-size: 30rpx;
  263. font-weight: 500;
  264. color: #e6b873;
  265. }
  266. .minus {
  267. font-size: 30rpx;
  268. font-weight: 500;
  269. color: $dark-3;
  270. }
  271. }
  272. }
  273. </style>