consumptionLog.vue 7.7 KB

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