我是业务员中渠道商
This commit is contained in:
parent
fbbfdbb25f
commit
24af4a8b00
22
pages.json
22
pages.json
|
@ -163,6 +163,28 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/my/applySalesperson/channelDetails",
|
||||
"style": {
|
||||
"navigationBarTitleText": "渠道明细",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "custom",
|
||||
"app-plus": {
|
||||
"titleNView": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/my/applySalesperson/channelMerchants",
|
||||
"style": {
|
||||
"navigationBarTitleText": "我的渠道商",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "custom",
|
||||
"app-plus": {
|
||||
"titleNView": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/my/applyDistributor/index",
|
||||
"style": {
|
||||
|
|
|
@ -89,6 +89,18 @@
|
|||
uni.stopPullDownRefresh();
|
||||
uni.hideLoading();
|
||||
});
|
||||
}else if(this.navName=='业务员'){
|
||||
this.$Request.getT('/app/commission/jjr/withdrawalDetail',data ).then(res => {
|
||||
if (res.code === 0) {
|
||||
if (this.page === 1) {
|
||||
this.list = res.data.list;
|
||||
} else {
|
||||
this.list = [...this.list, ...res.data.list];
|
||||
}
|
||||
}
|
||||
uni.stopPullDownRefresh();
|
||||
uni.hideLoading();
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -37,11 +37,11 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="mian-bottom">
|
||||
<view class="mian-bottom-list">
|
||||
<view class="mian-bottom-list" @click="goNav('/pages/my/applySalesperson/channelDetails')">
|
||||
<image class="mian-bottom-img" src="../../../static/my-gong-21.png" mode=""></image>
|
||||
<span>渠道明细</span>
|
||||
</view>
|
||||
<view class="mian-bottom-list">
|
||||
<view class="mian-bottom-list" @click="goNav('/pages/my/applySalesperson/channelMerchants')">
|
||||
<image class="mian-bottom-img" src="../../../static/my-gong-18.png" mode=""></image>
|
||||
<span>我的渠道商</span>
|
||||
</view>
|
||||
|
@ -203,7 +203,7 @@
|
|||
},
|
||||
goNav(link){
|
||||
uni.navigateTo({
|
||||
url:link+'?navName='+'经纪人'
|
||||
url:link+'?navName='+'业务员'
|
||||
})
|
||||
},
|
||||
getData(){
|
||||
|
|
Loading…
Reference in New Issue