liudan 9 months ago
parent b805002bcb
commit f366ea3718
  1. 2
      manifest.json
  2. 3
      pages/user/index.vue
  3. 24
      pages/users/promoter-list/index.vue

@ -1,5 +1,5 @@
{
"name" : "CRMEB",
"name" : "惠通臻享",
"appid" : "__UNI__39548CA",
"description" : "",
"versionName" : "1.0.4",

@ -441,6 +441,7 @@
if (that.isLogin) {
this.getUserInfo();
this.orderNum();
} else {
this.userInfo = {}
this.orderMenu.forEach(v=>{
@ -598,6 +599,7 @@
this.getUserInfo();
this.getMyMenus();
this.orderNum();
this.isShowAuth = false;
},
@ -631,6 +633,7 @@
that.$set(that.assets,item,Math.floor(res.data.assets[item]));
})
that.spreadPeopleHandle()
that.getMyMenus();
});

@ -21,7 +21,7 @@
</view>
<!-- <button class='iconfont icon-sousuo2' @click="submitForm"></button> -->
</view>
<view class='list'>
<view class='list' v-if="recordList.length!=0">
<!-- <view class="sortNav acea-row row-middle">
<view class="sortItem" @click='setSort("spread_count ASC")' v-if="sort == 'spread_count DESC'">团队排序
<image :src="domain+'/static/diy/sort1'+keyColor+'.png'"></image>
@ -62,10 +62,10 @@
<view class="name">
{{item.nickname}}
</view>
<view class="recomText">
<!-- <view class="recomText">
<image src="/static/images/reco.png" mode=""></image>
<text>初级代理</text>
</view>
</view> -->
</view>
<view class="phone">
@ -87,6 +87,10 @@
</view>
</block>
</view>
<view class="emptyBox" v-if="recordList.length==0">
<image src="/static/images/empty-box.png" mode="widthFix"></image>
<text>暂无数据</text>
</view>
</view>
<authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize>
</view>
@ -399,6 +403,20 @@
display: flex;
align-items: center;
}
.emptyBox{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: calc(20vh);
image{
width: 50%;
height: auto;
}
text{
margin-top:20rpx;
}
}
// .promoter-list .list .item .right .num{

Loading…
Cancel
Save