Compare commits
2 Commits
64054e7497
...
a710b01583
Author | SHA1 | Date |
---|---|---|
|
a710b01583 | |
|
e1b291aecb |
|
@ -57,8 +57,7 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="push-button">
|
<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>
|
||||||
|
|
||||||
</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) {
|
selectWay: function(item) {
|
||||||
this.openWay = item.id;
|
this.openWay = item.id;
|
||||||
this.money=item.money
|
this.money=item.money
|
||||||
|
|
Loading…
Reference in New Issue