team.vue 7.3 KB

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