maxScoreLog.vue 5.7 KB

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