team.vue 7.3 KB

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