123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514 |
- <template>
- <view class="content">
- <view class="status_bar"><!-- 这里是状态栏 --></view>
- <view class="" style="height: 20rpx;">
-
- </view>
- <view class="user-top flex">
- id: {{userInfo.uid}}<text style="margin-left: 20rpx;" class="clamp">昵称:{{userInfo.nickname}}</text>
- </view>
- <view class="yeji-wraper flex">
- <view class="yeji-item">
- <view class="yeji-val">
- {{wlgsbList.price || '0'}}
- </view>
- <view class="yeji-name">
- 销售业绩
- </view>
- </view>
- <view class="yeji-item">
- <view class="yeji-val">
- {{wlgsbList.today_price || '0'}}
- </view>
- <view class="yeji-name">
- 今日业绩
- </view>
- </view>
- <view class="yeji-item">
- <view class="yeji-val">
- {{wlgsbList.yesterday_price || '0'}}
- </view>
- <view class="yeji-name">
- 昨日业绩
- </view>
- </view>
- </view>
- <view class="nav-wraper flex">
- <view class="nav-item" v-for="(nitem,nindex) in navList" :class="{'action':nindex == tabCurrentIndex}" @click="navClick(nindex)">
- {{nitem.text}}
- </view>
- </view>
- <template v-if="tabCurrentIndex == 0">
- <view class="wlg-sb flex" style="margin-top: 40rpx;" @click="navto('/pages/user/teamList?key=direct_push')">
- <view class="">
- 服务直属消费者
- </view>
- <view class="">
- {{wlgsbList.direct_push_count || '0'}}
- </view>
- </view>
- <view class="wlg-sb flex" @click="navto('/pages/user/teamList?key=between')">
- <view class="">
- 服务体系消费者
- </view>
- <view class="">
- {{wlgsbList.between_count || '0'}}
- </view>
- </view>
- </template>
- <template v-if="tabCurrentIndex == 1">
- <view class="wlg-sb flex" style="margin-top: 40rpx;" @click="navto('/pages/user/teamList?key=user_list')">
- <view class="">
- 服务茶农
- </view>
- <view class="">
- {{wlgsbList.user_count || '0'}}
- </view>
- </view>
- <!-- <view class="wlg-sb flex">
- <view class="">
- 服务体系茶农
- </view>
- <view class="">
- 0
- </view>
- </view> -->
- </template>
- </view>
- </template>
- <script>
- import { myspread, tuiguang } from '@/api/user.js';
- import { mapState, mapMutations } from 'vuex';
- export default {
- data() {
- return {
-
- maxheight: '',
- tabCurrentIndex: 0,
- navList: [
- {
- state: 0,
- text: '消费者',
- loadingType: 'more',
- orderList: [],
- page: 1,
- limit: 10
- },
- {
- state: 1,
- text: '茶农',
- loadingType: 'more',
- orderList: [],
- page: 1,
- limit: 10
- }
- ],
- all: '',
- list: '',
- xsyj: '',
- jrye: '',
- zrye: ''
- };
- },
- computed: {
- ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin']),
- ...mapState(['wlgsbList']),
- getPhone() {
- let reg = /(\d{3})\d{4}(\d{4})/;
- this.navList.user_list.forEach(e => {
- return e.phone.replace(reg, '$1****$2');
- console.log(e.phone.replace(reg, '$1****$2'));
- });
- }
- },
- onLoad(options) {},
- onShow() {
- this.loadData();
- },
- methods: {
- ...mapMutations(['setSbList']),
- navClick(index) {
- this.tabCurrentIndex = index
- },
-
- navto(e) {
- uni.navigateTo({
- url: e
- });
- },
-
- async loadData(source) {
- let obj = this
- tuiguang().then(res => {
- console.log(res, 'data');
- obj.setSbList(res.data)
- });
- },
-
- toBack() {
- uni.switchTab({
- url: '/pages/user/user'
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background: #f8f8f8;
- height: 100%;
- }
- .user-top {
- width: 680rpx;
- height: 80rpx;
- line-height: 80rpx;
- box-shadow: 0 0 10rpx rgba(0,0,0,0.2);
- margin: 20rpx auto;
- border-radius: 8rpx;
- padding: 0 30rpx;
- font-size: 32rpx;
- justify-content: flex-start;
- }
- .yeji-wraper {
- width: 590rpx;
- height: 134rpx;
- box-shadow: 0 0 10rpx rgba(0,0,0,0.2);
- margin:20rpx auto;
- border-radius: 10rpx;
- text-align: center;
- font-size: 28rpx;
- .yeji-item {
- width: 33%;
- .yeji-val {
- padding-bottom: 20rpx;
- font-weight: bold;
-
- }
- }
- }
- .nav-wraper {
- width: 630rpx;
- height: 80rpx;
- box-shadow: 0 0 10rpx rgba(0,0,0,0.2);
- margin: auto;
- border-radius: 15rpx;
- .nav-item {
- width: 50%;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- }
- .action {
- background-color: #2b2d54;
- border-radius: 20rpx;
- color: #fff;
- font-weight: bold;
- }
- }
- .wlg-sb {
- width: 590rpx;
- height: 140rpx;
- box-shadow: 0 0 10rpx rgba(0,0,0,0.2);
- margin: 20rpx auto;
- border-radius: 10rpx;
- padding: 20rpx;
- }
- </style>
|