team.vue 7.0 KB

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