|
@@ -124,7 +124,7 @@
|
|
|
<div style="display: flex;justify-content: flex-end;margin-top: 50px">
|
|
<div style="display: flex;justify-content: flex-end;margin-top: 50px">
|
|
|
<el-button v-if="active!=1" @click="active--">上一步</el-button>
|
|
<el-button v-if="active!=1" @click="active--">上一步</el-button>
|
|
|
<el-button v-if="active!=totalStep" type="primary" @click="next">下一步</el-button>
|
|
<el-button v-if="active!=totalStep" type="primary" @click="next">下一步</el-button>
|
|
|
- <el-button v-else type="primary" @click="next">确认</el-button>
|
|
|
|
|
|
|
+ <el-button :disabled="confirm" v-else type="primary" @click="next">确认</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
@@ -157,6 +157,7 @@
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
active: 1,
|
|
active: 1,
|
|
|
|
|
+ confirm: false,
|
|
|
totalStep: 4,
|
|
totalStep: 4,
|
|
|
mallDetail: {},
|
|
mallDetail: {},
|
|
|
//审核表单
|
|
//审核表单
|
|
@@ -482,8 +483,7 @@
|
|
|
Object.keys(this.merchantSubjectForm).forEach((key) => {this.merchantSubjectForm[key] = data[key];});
|
|
Object.keys(this.merchantSubjectForm).forEach((key) => {this.merchantSubjectForm[key] = data[key];});
|
|
|
Object.keys(this.businessAddressForm).forEach((key) => {this.businessAddressForm[key] = data[key];});
|
|
Object.keys(this.businessAddressForm).forEach((key) => {this.businessAddressForm[key] = data[key];});
|
|
|
Object.keys(this.settlementAccountForm).forEach((key) => {this.settlementAccountForm[key] = data[key];});
|
|
Object.keys(this.settlementAccountForm).forEach((key) => {this.settlementAccountForm[key] = data[key];});
|
|
|
- this.processInstanceId = data.processInstanceId;
|
|
|
|
|
- this.auditForm.id = data.id;
|
|
|
|
|
|
|
+ this.auditForm = data;
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
@@ -613,6 +613,7 @@
|
|
|
this.$refs[formName].resetFields();
|
|
this.$refs[formName].resetFields();
|
|
|
},
|
|
},
|
|
|
async submit() {
|
|
async submit() {
|
|
|
|
|
+ this.confirm = true;
|
|
|
Object.assign(this.auditForm, this.merchantCorporationForm,
|
|
Object.assign(this.auditForm, this.merchantCorporationForm,
|
|
|
this.merchantContactForm, this.merchantSubjectForm,
|
|
this.merchantContactForm, this.merchantSubjectForm,
|
|
|
this.businessAddressForm)
|
|
this.businessAddressForm)
|
|
@@ -639,6 +640,7 @@
|
|
|
type: "success",
|
|
type: "success",
|
|
|
message: "修改成功!"
|
|
message: "修改成功!"
|
|
|
});
|
|
});
|
|
|
|
|
+ this.$emit("finish",{});
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
}else{
|
|
}else{
|
|
@@ -648,8 +650,8 @@
|
|
|
message: "修改成功!"
|
|
message: "修改成功!"
|
|
|
});
|
|
});
|
|
|
})
|
|
})
|
|
|
|
|
+ this.$emit("finish",{});
|
|
|
}
|
|
}
|
|
|
- this.$emit(finish,{});
|
|
|
|
|
},
|
|
},
|
|
|
/**
|
|
/**
|
|
|
* 上传法人身份证正面照
|
|
* 上传法人身份证正面照
|