team.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. <!-- 我的积分 -->
  2. <template>
  3. <s-layout class="wallet-wrap" :bgStyle="{'backgroundColor':'#ffffff'}" title="" navbar="normal">
  4. <view class="model-box ss-flex-col">
  5. <view class="all-title ss-p-x-30 ss-p-t-30">
  6. 团队成员 <text style="float: right;">共12345人</text>
  7. </view>
  8. <!-- 推荐老师 -->
  9. <view class="list-box" style="width: 100%;">
  10. <view v-if="state.pagination.total > 0">
  11. <view class="list-item ss-flex ss-col-center ss-row-between "
  12. style="padding: 30rpx 0;">
  13. <view class="ss-flex ss-col-center" style="width: 100%;">
  14. <view>
  15. &nbsp;&nbsp;
  16. </view>
  17. <!-- 头像 -->
  18. <view class="avatar-box ss-m-x-20">
  19. <image class="avatar-img" :src="
  20. sheep.$url.static('/static/img/shop/default_avatar.png')" mode="aspectFill"></image>
  21. </view>
  22. <view class="ss-flex ss-m-t-10"
  23. style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.5rem);">
  24. <view class="name" style="width: 100%;"> {{ name || '空' }} <text class="ss-m-l-16">推荐老师</text></view>
  25. <view class="time " style="width: 100%;">
  26. 身价
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <view>
  33. <scroll-view style="width: 96%;" scroll-y="true" @touchmove.stop>
  34. <view v-if="state.pagination.total > 0">
  35. <view class="list-item ss-flex ss-col-center ss-row-between "
  36. v-for="(item,index) in state.pagination.list" :key="item.id" style="padding: 30rpx 0;">
  37. <view class="ss-flex ss-col-center" style="width: 100%;">
  38. <view>
  39. {{index+1}}
  40. </view>
  41. <!-- 头像 -->
  42. <view class="avatar-box ss-m-x-20">
  43. <image class="avatar-img" :src="
  44. sheep.$url.static('/static/img/shop/default_avatar.png')" mode="aspectFill"></image>
  45. </view>
  46. <view class="ss-flex ss-m-t-10"
  47. style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.5rem);">
  48. <view class="name" style="width: 100%;"> {{ item.name || '空' }} <text style="float: right;">消费额:¥32</text></view>
  49. <view class="time " style="width: 100%;">
  50. 身价
  51. <text style="float: right;">{{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd')}}</text>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <s-empty v-else text="暂无数据" icon="/static/data-empty.png" />
  58. </scroll-view>
  59. </view>
  60. </view>
  61. </view>
  62. </s-layout>
  63. </template>
  64. <script setup>
  65. import sheep from '@/sheep';
  66. import {
  67. onLoad,
  68. onReachBottom
  69. } from '@dcloudio/uni-app';
  70. import {
  71. computed,
  72. reactive
  73. } from 'vue';
  74. import _ from 'lodash';
  75. import dayjs from 'dayjs';
  76. import PointApi from '@/sheep/api/member/point';
  77. import {
  78. resetPagination
  79. } from '@/sheep/util';
  80. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  81. const userInfo = computed(() => sheep.$store('user').userInfo);
  82. const sys_navBar = sheep.$platform.navbar;
  83. const state = reactive({
  84. currentTab: 0,
  85. pagination: {
  86. list: 0,
  87. total: 0,
  88. pageSize: 6,
  89. pageNo: 1,
  90. },
  91. loadStatus: '',
  92. date: [],
  93. today: '',
  94. showModel: false,
  95. showQueModel: false
  96. });
  97. const close = () => {
  98. state.showModel = false
  99. state.showQueModel = false
  100. }
  101. const tabMaps = [{
  102. name: '全部',
  103. value: 'all',
  104. },
  105. {
  106. name: '收入',
  107. value: 'true',
  108. },
  109. {
  110. name: '支出',
  111. value: 'false',
  112. },
  113. ];
  114. const dateFilterText = computed(() => {
  115. if (state.date[0] === state.date[1]) {
  116. return state.date[0];
  117. } else {
  118. return state.date.join('~');
  119. }
  120. });
  121. async function getLogList() {
  122. state.loadStatus = 'loading';
  123. let {
  124. code,
  125. data
  126. } = await PointApi.getPointRecordPage({
  127. pageNo: state.pagination.pageNo,
  128. pageSize: state.pagination.pageSize,
  129. addStatus: state.currentTab > 0 ? tabMaps[state.currentTab].value : undefined,
  130. 'createTime[0]': state.date[0] + ' 00:00:00',
  131. 'createTime[1]': state.date[1] + ' 23:59:59',
  132. });
  133. if (code !== 0) {
  134. return;
  135. }
  136. state.pagination.list = data.list;
  137. state.pagination.total = data.total;
  138. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  139. }
  140. onLoad(() => {
  141. state.today = dayjs().format('YYYY-MM-DD');
  142. state.date = [state.today, state.today];
  143. getLogList();
  144. });
  145. function onChange(e) {
  146. state.currentTab = e.index;
  147. resetPagination(state.pagination);
  148. getLogList();
  149. }
  150. function onChangeTime(e) {
  151. state.date[0] = e[0];
  152. state.date[1] = e[e.length - 1];
  153. resetPagination(state.pagination);
  154. getLogList();
  155. }
  156. function onLoadMore() {
  157. if (state.loadStatus === 'noMore') {
  158. return;
  159. }
  160. state.pagination.pageNo++;
  161. getLogList();
  162. }
  163. onReachBottom(() => {
  164. onLoadMore();
  165. });
  166. </script>
  167. <style lang="scss" scoped>
  168. .score-box {
  169. margin: 20rpx;
  170. border-radius: 20rpx;
  171. padding-top: 100rpx;
  172. }
  173. .avatar-box {
  174. width: 100rpx;
  175. height: 100rpx;
  176. border-radius: 50%;
  177. overflow: hidden;
  178. .avatar-img {
  179. width: 100%;
  180. height: 100%;
  181. }
  182. }
  183. .value-box {
  184. width: 100rpx;
  185. height: 100rpx;
  186. line-height: 100rpx;
  187. text-align: center;
  188. border-radius: 50%;
  189. border: 2px solid #f6f6f6;
  190. }
  191. .btn {
  192. width: 300rpx;
  193. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  194. border-radius: 20rpx;
  195. font-size: 30rpx;
  196. font-weight: 500;
  197. line-height: 80rpx;
  198. color: $white;
  199. position: relative;
  200. z-index: 1;
  201. }
  202. .header-box {
  203. width: 100%;
  204. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  205. background-size: 750rpx 100%;
  206. padding: 0 0 120rpx 0;
  207. box-sizing: border-box;
  208. .score-box {
  209. height: 100%;
  210. .all-num {
  211. font-size: 50rpx;
  212. font-weight: bold;
  213. color: #fff;
  214. font-family: OPPOSANS;
  215. }
  216. .all-title {
  217. font-size: 26rpx;
  218. font-weight: 500;
  219. color: #fff;
  220. }
  221. .cicon-help-o {
  222. color: #fff;
  223. font-size: 28rpx;
  224. }
  225. }
  226. }
  227. // 筛选
  228. .filter-box {
  229. height: 114rpx;
  230. background-color: $bg-page;
  231. .total-box {
  232. font-size: 24rpx;
  233. font-weight: 500;
  234. color: $dark-9;
  235. }
  236. .date-btn {
  237. background-color: $white;
  238. line-height: 54rpx;
  239. border-radius: 27rpx;
  240. padding: 0 20rpx;
  241. font-size: 24rpx;
  242. font-weight: 500;
  243. color: $dark-6;
  244. .ss-seldate-icon {
  245. font-size: 50rpx;
  246. color: $dark-9;
  247. }
  248. }
  249. }
  250. .list-box {
  251. width: 500rpx;
  252. height: 600rpx;
  253. padding: 0 20rpx;
  254. overflow-y: auto;
  255. .list-item {
  256. background: #fff;
  257. // border-bottom: 1rpx solid #dfdfdf;
  258. padding: 30rpx;
  259. .name {
  260. font-size: 28rpx;
  261. font-weight: 500;
  262. color: rgba(102, 102, 102, 1);
  263. line-height: 28rpx;
  264. // margin-bottom: 20rpx;
  265. }
  266. .time {
  267. font-size: 24rpx;
  268. font-weight: 500;
  269. color: rgba(196, 196, 196, 1);
  270. line-height: 24px;
  271. }
  272. .add {
  273. font-size: 30rpx;
  274. font-weight: 500;
  275. color: #e6b873;
  276. }
  277. .minus {
  278. font-size: 30rpx;
  279. font-weight: 500;
  280. color: $dark-3;
  281. }
  282. }
  283. }
  284. </style>