申请分销员直接通过
This commit is contained in:
parent
e20284b819
commit
e1b291aecb
|
@ -57,8 +57,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="push-button">
|
||||
<!-- <view class="que-btn" @tap="save">提交申请</view> -->
|
||||
<view class="que-btn" @tap="pay()">提交申请</view>
|
||||
<view class="que-btn" @tap="pay()" >提交申请</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
@ -136,7 +135,21 @@
|
|||
})
|
||||
|
||||
},
|
||||
|
||||
callPay(){
|
||||
let userId = this.$queue.getData('userId');
|
||||
let data = {
|
||||
userId
|
||||
}
|
||||
this.$Request.get('/app/commission/fxy/upFxyStatus', data).then(res => {
|
||||
if (res.code == 0) {
|
||||
uni.hideLoading();
|
||||
this.$queue.showToast(res.msg);
|
||||
} else {
|
||||
uni.hideLoading();
|
||||
this.$queue.showToast(res.msg);
|
||||
}
|
||||
});
|
||||
},
|
||||
selectWay: function(item) {
|
||||
this.openWay = item.id;
|
||||
this.money=item.money
|
||||
|
|
Loading…
Reference in New Issue