修复:灵活用户开户 - 用户签约流程错误
This commit is contained in:
parent
64f344ea51
commit
3b10eb5881
|
|
@ -1054,8 +1054,8 @@ export default {
|
|||
},
|
||||
// 全选监听
|
||||
allSelectHandle(value) {
|
||||
this.pay_type = '';
|
||||
this.withTypeTipsIcon ="";
|
||||
// this.pay_type = '';
|
||||
// this.withTypeTipsIcon ="";
|
||||
if(value.length > 0) {
|
||||
this.income_type = value[0].income_type;
|
||||
}else {
|
||||
|
|
@ -1768,9 +1768,11 @@ export default {
|
|||
$http.post("plugin.use-staff.api.index.getContractInfo", { }, "加载中...")
|
||||
.then((response) => {
|
||||
if (response.result === 1) {
|
||||
console.log("签约数据",response.data);
|
||||
_this.is_show_signing = true;
|
||||
let data = response.data;
|
||||
// _this.signing_url = response.data.sign_url;
|
||||
window.location.href = response.sign_url;
|
||||
if(data.sign_url) window.location.href = data.sign_url;
|
||||
}else{
|
||||
_this.$dialog.alert({ message: response.msg }).then(()=>{
|
||||
_this.thirdPartyBankCardInfo();
|
||||
|
|
|
|||
|
|
@ -548,9 +548,11 @@ export default {
|
|||
$http.post("plugin.use-staff.api.index.getContractInfo", { }, "加载中...")
|
||||
.then((response) => {
|
||||
if (response.result === 1) {
|
||||
console.log("签约数据",response.data);
|
||||
_this.is_show_signing = true;
|
||||
let data = response.data;
|
||||
// _this.signing_url = response.data.sign_url;
|
||||
if(response.sign_url) window.location.href = response.sign_url;
|
||||
if(data.sign_url) window.location.href = data.sign_url;
|
||||
}else{
|
||||
_this.$dialog.alert({ message: response.msg }).then(()=>{
|
||||
_this.thirdPartyBankCardInfo();
|
||||
|
|
|
|||
Loading…
Reference in New Issue