team.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  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;">{{ t('team.total_people',{count:state.referrerCount}) }}</text>
  7. </view>
  8. <view class="list-box" style="width: 100%;padding: 0;height: calc(100vh - 7.5rem) ;">
  9. <!-- 推荐人 -->
  10. <view v-if="state.referrerUser">
  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"
  14. style="width: 100%;border-bottom: 1px solid #ededed;padding-bottom: 30rpx">
  15. <view>
  16. &nbsp;&nbsp;
  17. </view>
  18. <!-- 头像 -->
  19. <view class="avatar-box ss-m-x-20">
  20. <image class="avatar-img" :src="state.referrerUser.avatar" 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.8rem);">
  24. <view class="name" style="width: 100%;">
  25. <text
  26. style="width:50%;display: inline-block;">{{ state.referrerUser.username }}</text>
  27. <!-- <text class="time" style="float: right;color: #666666">直接总推数:{{points2point(state.referrerUser.residueSocial)}}</text> -->
  28. </view>
  29. <view class="time" style="width: 100%;color: #999;">
  30. <text>{{ t('team.referrer') }}</text>
  31. <!-- <text style="float: right;"> {{ t('team.team_count',{count:state.ancestor.descendantsCount}) }}</text> -->
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <!-- A B -->
  38. <view v-if="state.areaUsers['A']">
  39. <view class="list-item ss-flex ss-col-center ss-row-between "
  40. style="padding-top: 30rpx; padding-bottom: 0;">
  41. <view class="ss-flex ss-col-center"
  42. style="width: 100%;border-bottom: 1px solid #ededed;padding-bottom: 30rpx">
  43. <view>
  44. &nbsp;&nbsp;
  45. </view>
  46. <!-- <view class="avatar-box ss-m-x-20"> -->
  47. <!-- <image class="avatar-img" :src="state.areaUsers['A'].avatar" mode="aspectFill"></image> -->
  48. <!-- </view> -->
  49. <view class="ss-flex ss-m-t-10"
  50. style="flex-direction: column;align-items: flex-start;width: 100%;">
  51. <view class="name" style="width: 100%;">
  52. <!-- <text style="width:50%;display: inline-block;">{{ state.areaUsers['A'].username }}</text> -->
  53. <text style="width:50%;display: inline-block;">A区</text>
  54. <text class="time" style="float: right;color: #666666">业绩:{{points2point(state.areaUsers['A'].addAmount)}}</text>
  55. </view>
  56. <view class="time" style="width: 100%;color: #999;">
  57. <!-- <text>直推人</text> -->
  58. <text class="time" style="float: right;color: #666666">存余:{{points2point(state.areaUsers['A'].surplusAmount)}}</text>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. <view v-if="state.areaUsers['B']">
  65. <view class="list-item ss-flex ss-col-center ss-row-between "
  66. style="padding-top: 30rpx; padding-bottom: 0;">
  67. <view class="ss-flex ss-col-center"
  68. style="width: 100%;border-bottom: 1px solid #ededed;padding-bottom: 30rpx">
  69. <view>
  70. &nbsp;&nbsp;
  71. </view>
  72. <!-- <view class="avatar-box ss-m-x-20"> -->
  73. <!-- <image class="avatar-img" :src="state.areaUsers['B'].avatar" mode="aspectFill"></image> -->
  74. <!-- </view> -->
  75. <view class="ss-flex ss-m-t-10"
  76. style="flex-direction: column;align-items: flex-start;width: 100%;">
  77. <view class="name" style="width: 100%;">
  78. <text style="width:50%;display: inline-block;">B区</text>
  79. <!-- <text style="width:50%;display: inline-block;">{{ state.areaUsers['B'].username }}</text> -->
  80. <text class="time" style="float: right;color: #666666">业绩:{{points2point(state.areaUsers['B'].addAmount)}}</text>
  81. </view>
  82. <view class="time" style="width: 100%;color: #999;">
  83. <!-- <text>直推人</text> -->
  84. <text class="time" style="float: right;color: #666666">存余:{{points2point(state.areaUsers['B'].surplusAmount)}}</text>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. <view style="padding: 30rpx;padding-bottom: 0;">
  91. 直推人列表
  92. </view>
  93. <!-- 下级 -->
  94. <view>
  95. <scroll-view style="width: 100%;" scroll-y="true" @touchmove.stop>
  96. <view v-if="state.descendants.total > 0">
  97. <view class="list-item ss-flex ss-col-center ss-row-between "
  98. v-for="(item,index) in state.descendants.list" :key="item.id"
  99. style="padding-top: 30rpx ;padding-bottom: 0;">
  100. <view class="ss-flex ss-col-center"
  101. style="width: 100%;border-bottom: 1px solid #ededed;padding-bottom: 30rpx">
  102. <view style="word-wrap: break-word;">
  103. {{index+1}}
  104. </view>
  105. <!-- 头像 -->
  106. <view class="avatar-box ss-m-x-20">
  107. <image class="avatar-img" :src="
  108. item.avatar || sheep.$url.static('/static/images/default_avatar.png')" mode="aspectFill"></image>
  109. </view>
  110. <view class="ss-flex ss-m-t-10"
  111. style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.8rem);">
  112. <view class="name" style="width: 100%;">
  113. <text style="width:50%;display: inline-block;">
  114. {{ item.username}}</text>
  115. <text class="time"
  116. style="float: right;color: #666666;">业绩:{{points2point(item.addAmount)}}</text>
  117. </view>
  118. <view class="time" style="width: 100%;color: #999">
  119. <!-- {{item.socialStatusLevel}} / <text>{{item.depth == 1? t('team.direct_referral') :''}}</text>
  120. <text style="float: right;"> {{ t('team.team_count',{count:item.descendantsCount}) }}</text> -->
  121. <text>直推人</text>
  122. <text class="time" style="float: right;color: #666666">存余:{{points2point(item.surplusAmount)}}</text>
  123. </view>
  124. </view>
  125. </view>
  126. </view>
  127. </view>
  128. <s-empty v-else :text="t('team.no_team_members')" icon="/static/data-empty.png" />
  129. </scroll-view>
  130. </view>
  131. </view>
  132. </view>
  133. <uni-load-more v-if="state.descendants.total > 0" :status="state.loadStatus" :content-text="{
  134. contentdown: t('common.click_to_load_more'),
  135. }" @tap="loadMore" />
  136. </s-layout>
  137. </template>
  138. <script setup>
  139. import sheep from '@/sheep';
  140. import {
  141. onLoad,
  142. onReachBottom
  143. } from '@dcloudio/uni-app';
  144. import {
  145. computed,
  146. reactive
  147. } from 'vue';
  148. import _ from 'lodash';
  149. import dayjs from 'dayjs';
  150. import TeamApi from '@/sheep/api/distri/team';
  151. import {
  152. resetPagination
  153. } from '@/sheep/util';
  154. import {
  155. points2point
  156. } from '@/sheep/hooks/useGoods';
  157. import { t } from '@/locale'
  158. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  159. const userInfo = computed(() => sheep.$store('user').userInfo);
  160. const sys_navBar = sheep.$platform.navbar;
  161. const state = reactive({
  162. currentTab: 0,
  163. pagination: {
  164. list: 0,
  165. total: 0,
  166. pageSize: 10,
  167. pageNo: 1,
  168. },
  169. loadStatus: '',
  170. descendants: {
  171. total: 0,
  172. list: []
  173. },
  174. teamCount: 0,
  175. referrerUser: {},
  176. areaUsers: {}
  177. });
  178. const dateFilterText = computed(() => {
  179. if (state.date[0] === state.date[1]) {
  180. return state.date[0];
  181. } else {
  182. return state.date.join('~');
  183. }
  184. });
  185. async function getTeam() {
  186. state.loadStatus = 'loading';
  187. let {
  188. code,
  189. data
  190. } = await TeamApi.getTeam({
  191. pageNo: state.pagination.pageNo,
  192. pageSize: state.pagination.pageSize,
  193. });
  194. if (code !== 0) {
  195. return;
  196. }
  197. // 团队人员数量
  198. state.referrerCount = data.referrerCount
  199. // 直推人
  200. state.referrerUser = data.referrerUser
  201. state.areaUsers = data.areaUsers
  202. let descendantsList = _.concat(state.descendants.list, data.descendants.list);
  203. // 后代
  204. state.descendants.list = descendantsList
  205. state.descendants.total = data.descendants.total;
  206. state.pagination.total = data.descendants.total;
  207. state.loadStatus = state.descendants.list.length < state.descendants.total ? 'more' : 'noMore';
  208. }
  209. onLoad(() => {
  210. // state.today = dayjs().format('YYYY-MM-DD');
  211. // state.date = [state.today, state.today];
  212. getTeam();
  213. });
  214. function loadMore() {
  215. if (state.loadStatus === 'noMore') {
  216. return;
  217. }
  218. state.pagination.pageNo++;
  219. getTeam();
  220. }
  221. onReachBottom(() => {
  222. loadMore();
  223. });
  224. </script>
  225. <style lang="scss" scoped>
  226. .score-box {
  227. margin: 20rpx;
  228. border-radius: 20rpx;
  229. padding-top: 100rpx;
  230. }
  231. .avatar-box {
  232. width: 100rpx;
  233. height: 100rpx;
  234. border-radius: 50%;
  235. overflow: hidden;
  236. border: 1px solid #eaeaea;
  237. .avatar-img {
  238. width: 100%;
  239. height: 100%;
  240. }
  241. }
  242. .value-box {
  243. width: 100rpx;
  244. height: 100rpx;
  245. line-height: 100rpx;
  246. text-align: center;
  247. border-radius: 50%;
  248. border: 2px solid #f6f6f6;
  249. }
  250. .btn {
  251. width: 300rpx;
  252. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  253. border-radius: 20rpx;
  254. font-size: 30rpx;
  255. font-weight: 500;
  256. line-height: 80rpx;
  257. color: $white;
  258. position: relative;
  259. z-index: 1;
  260. }
  261. .header-box {
  262. width: 100%;
  263. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  264. background-size: 750rpx 100%;
  265. padding: 0 0 120rpx 0;
  266. box-sizing: border-box;
  267. .score-box {
  268. height: 100%;
  269. .all-num {
  270. font-size: 50rpx;
  271. font-weight: bold;
  272. color: #fff;
  273. font-family: OPPOSANS;
  274. }
  275. .all-title {
  276. font-size: 26rpx;
  277. font-weight: 500;
  278. color: #fff;
  279. }
  280. .cicon-help-o {
  281. color: #fff;
  282. font-size: 28rpx;
  283. }
  284. }
  285. }
  286. // 筛选
  287. .filter-box {
  288. height: 114rpx;
  289. background-color: $bg-page;
  290. .total-box {
  291. font-size: 24rpx;
  292. font-weight: 500;
  293. color: $dark-9;
  294. }
  295. .date-btn {
  296. background-color: $white;
  297. line-height: 54rpx;
  298. border-radius: 27rpx;
  299. padding: 0 20rpx;
  300. font-size: 24rpx;
  301. font-weight: 500;
  302. color: $dark-6;
  303. .ss-seldate-icon {
  304. font-size: 50rpx;
  305. color: $dark-9;
  306. }
  307. }
  308. }
  309. .list-box {
  310. width: 500rpx;
  311. height: 600rpx;
  312. padding: 0 20rpx;
  313. overflow-y: auto;
  314. .list-item {
  315. background: #fff;
  316. // border-bottom: 1rpx solid #dfdfdf;
  317. padding: 30rpx;
  318. .name {
  319. font-size: 30rpx;
  320. font-weight: 500;
  321. color: rgba(102, 102, 102, 1);
  322. line-height: 30rpx;
  323. display: flex;
  324. align-items: center;
  325. justify-content: space-between;
  326. // margin-bottom: 20rpx;
  327. }
  328. .time {
  329. font-size: 24rpx;
  330. font-weight: 500;
  331. color: rgba(196, 196, 196, 1);
  332. line-height: 24px;
  333. }
  334. .add {
  335. font-size: 30rpx;
  336. font-weight: 500;
  337. color: #e6b873;
  338. }
  339. .minus {
  340. font-size: 30rpx;
  341. font-weight: 500;
  342. color: $dark-3;
  343. }
  344. }
  345. }
  346. </style>