ScoreLog.vue 5.4 KB

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