ScoreLog.vue 6.0 KB

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