score.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <!-- 我的积分 -->
  2. <template>
  3. <s-layout class="wallet-wrap" title="我的积分" navbar="inner">
  4. <view
  5. class="header-box ss-flex ss-flex-col ss-row-center ss-col-center"
  6. :style="[
  7. {
  8. marginTop: '-' + Number(statusBarHeight + 88) + 'rpx',
  9. paddingTop: Number(statusBarHeight + 88) + 'rpx',
  10. },
  11. ]"
  12. >
  13. <view class="header-bg">
  14. <view class="bg" />
  15. </view>
  16. <view class="score-box ss-flex-col ss-row-center ss-col-center">
  17. <view class="ss-m-b-30">
  18. <text class="all-title ss-m-r-8">当前积分</text>
  19. </view>
  20. <text class="all-num">{{ userInfo.point || 0 }}</text>
  21. </view>
  22. </view>
  23. <!-- tab -->
  24. <su-sticky :customNavHeight="sys_navBar">
  25. <!-- 统计 -->
  26. <view class="filter-box ss-p-x-30 ss-flex ss-col-center ss-row-between">
  27. <uni-datetime-picker v-model="state.date" type="daterange" @change="onChangeTime" :end="state.today">
  28. <button class="ss-reset-button date-btn">
  29. <text>{{ dateFilterText }}</text>
  30. <text class="cicon-drop-down ss-seldate-icon"></text>
  31. </button>
  32. </uni-datetime-picker>
  33. <!-- TODO 芋艿:优化 -->
  34. <!-- <view class="total-box">-->
  35. <!-- <view class="ss-m-b-10">总收入¥{{ state.pagination.income }}</view>-->
  36. <!-- <view>总支出¥{{ -state.pagination.expense }}</view>-->
  37. <!-- </view>-->
  38. </view>
  39. <su-tabs
  40. :list="tabMaps"
  41. @change="onChange"
  42. :scrollable="false"
  43. :current="state.currentTab"
  44. ></su-tabs>
  45. </su-sticky>
  46. <!-- list -->
  47. <view class="list-box">
  48. <view v-if="state.pagination.total > 0">
  49. <view
  50. class="list-item ss-flex ss-col-center ss-row-between"
  51. v-for="item in state.pagination.list"
  52. :key="item.id"
  53. >
  54. <view class="ss-flex-col">
  55. <view class="name"
  56. >{{ item.title }}{{ item.description ? ' - ' + item.description : '' }}</view
  57. >
  58. <view class="time">{{
  59. sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM:ss')
  60. }}</view>
  61. </view>
  62. <view class="add" v-if="item.point > 0">+{{ item.point }}</view>
  63. <view class="minus" v-else>{{ item.point }}</view>
  64. </view>
  65. </view>
  66. <s-empty v-else text="暂无数据" icon="/static/data-empty.png" />
  67. </view>
  68. <uni-load-more
  69. v-if="state.pagination.total > 0"
  70. :status="state.loadStatus"
  71. :content-text="{
  72. contentdown: '上拉加载更多',
  73. }"
  74. @tap="onLoadMore"
  75. />
  76. </s-layout>
  77. </template>
  78. <script setup>
  79. import sheep from '@/sheep';
  80. import { onLoad, onReachBottom } from '@dcloudio/uni-app';
  81. import { computed, reactive } from 'vue';
  82. import _ from 'lodash';
  83. import dayjs from 'dayjs';
  84. import PointApi from '@/sheep/api/member/point';
  85. import { resetPagination } from '@/sheep/util';
  86. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  87. const userInfo = computed(() => sheep.$store('user').userInfo);
  88. const sys_navBar = sheep.$platform.navbar;
  89. const state = reactive({
  90. currentTab: 0,
  91. pagination: {
  92. list: 0,
  93. total: 0,
  94. pageSize: 6,
  95. pageNo: 1,
  96. },
  97. loadStatus: '',
  98. date: [],
  99. today: '',
  100. });
  101. const tabMaps = [
  102. {
  103. name: '全部',
  104. value: 'all',
  105. },
  106. {
  107. name: '收入',
  108. value: 'true',
  109. },
  110. {
  111. name: '支出',
  112. value: 'false',
  113. },
  114. ];
  115. const dateFilterText = computed(() => {
  116. if (state.date[0] === state.date[1]) {
  117. return state.date[0];
  118. } else {
  119. return state.date.join('~');
  120. }
  121. });
  122. async function getLogList() {
  123. state.loadStatus = 'loading';
  124. let { code, data } = await PointApi.getPointRecordPage({
  125. pageNo: state.pagination.pageNo,
  126. pageSize: state.pagination.pageSize,
  127. addStatus: state.currentTab > 0 ? tabMaps[state.currentTab].value : undefined,
  128. 'createTime[0]': state.date[0] + ' 00:00:00',
  129. 'createTime[1]': state.date[1] + ' 23:59:59',
  130. });
  131. if (code !== 0) {
  132. return;
  133. }
  134. state.pagination.list = _.concat(state.pagination.list, data.list);
  135. state.pagination.total = data.total;
  136. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  137. }
  138. onLoad(() => {
  139. state.today = dayjs().format('YYYY-MM-DD');
  140. state.date = [state.today, state.today];
  141. getLogList();
  142. });
  143. function onChange(e) {
  144. state.currentTab = e.index;
  145. resetPagination(state.pagination);
  146. getLogList();
  147. }
  148. function onChangeTime(e) {
  149. state.date[0] = e[0];
  150. state.date[1] = e[e.length - 1];
  151. resetPagination(state.pagination);
  152. getLogList();
  153. }
  154. function onLoadMore() {
  155. if (state.loadStatus === 'noMore') {
  156. return;
  157. }
  158. state.pagination.pageNo++;
  159. getLogList();
  160. }
  161. onReachBottom(() => {
  162. onLoadMore();
  163. });
  164. </script>
  165. <style lang="scss" scoped>
  166. .header-box {
  167. width: 100%;
  168. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%)
  169. no-repeat;
  170. background-size: 750rpx 100%;
  171. padding: 0 0 120rpx 0;
  172. box-sizing: border-box;
  173. .score-box {
  174. height: 100%;
  175. .all-num {
  176. font-size: 50rpx;
  177. font-weight: bold;
  178. color: #fff;
  179. font-family: OPPOSANS;
  180. }
  181. .all-title {
  182. font-size: 26rpx;
  183. font-weight: 500;
  184. color: #fff;
  185. }
  186. .cicon-help-o {
  187. color: #fff;
  188. font-size: 28rpx;
  189. }
  190. }
  191. }
  192. // 筛选
  193. .filter-box {
  194. height: 114rpx;
  195. background-color: $bg-page;
  196. .total-box {
  197. font-size: 24rpx;
  198. font-weight: 500;
  199. color: $dark-9;
  200. }
  201. .date-btn {
  202. background-color: $white;
  203. line-height: 54rpx;
  204. border-radius: 27rpx;
  205. padding: 0 20rpx;
  206. font-size: 24rpx;
  207. font-weight: 500;
  208. color: $dark-6;
  209. .ss-seldate-icon {
  210. font-size: 50rpx;
  211. color: $dark-9;
  212. }
  213. }
  214. }
  215. .list-box {
  216. .list-item {
  217. background: #fff;
  218. border-bottom: 1rpx solid #dfdfdf;
  219. padding: 30rpx;
  220. .name {
  221. font-size: 28rpx;
  222. font-weight: 500;
  223. color: rgba(102, 102, 102, 1);
  224. line-height: 28rpx;
  225. margin-bottom: 20rpx;
  226. }
  227. .time {
  228. font-size: 24rpx;
  229. font-weight: 500;
  230. color: rgba(196, 196, 196, 1);
  231. line-height: 24px;
  232. }
  233. .add {
  234. font-size: 30rpx;
  235. font-weight: 500;
  236. color: #e6b873;
  237. }
  238. .minus {
  239. font-size: 30rpx;
  240. font-weight: 500;
  241. color: $dark-3;
  242. }
  243. }
  244. }
  245. </style>