ScoreLog.vue 6.1 KB

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