|
|
@ -95,8 +95,8 @@ |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item prop="isGuarantee"> |
|
|
|
<el-radio-group v-model="temp.isGuarantee"> |
|
|
|
<el-radio label="1">是</el-radio> |
|
|
|
<el-radio label="0">否</el-radio> |
|
|
|
<el-radio label="是">是</el-radio> |
|
|
|
<el-radio label="否">否</el-radio> |
|
|
|
</el-radio-group> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
@ -458,6 +458,7 @@ export default { |
|
|
|
invoBankNum: '', |
|
|
|
invoPhone: '', |
|
|
|
isGuarantee: '', |
|
|
|
isGuaranteeKey: '', |
|
|
|
legalIdCard: '', |
|
|
|
legalMobile: '', |
|
|
|
legalName: '', |
|
|
@ -802,6 +803,11 @@ export default { |
|
|
|
this.$refs['dataForm'].validate((valid) => { |
|
|
|
if (valid) { |
|
|
|
this.FormLoading = true |
|
|
|
if (this.temp.isGuarantee === '是') { |
|
|
|
this.temp.isGuaranteeKey = '1' |
|
|
|
} else if (this.temp.isGuarantee === '否') { |
|
|
|
this.temp.isGuaranteeKey = '0' |
|
|
|
} |
|
|
|
if (this.temp.sid === '') { |
|
|
|
SaveList(this.temp).then((response) => { |
|
|
|
this.FormLoading = false |
|
|
@ -846,6 +852,11 @@ export default { |
|
|
|
} |
|
|
|
this.$refs['dataForm'].validate((valid) => { |
|
|
|
if (valid) { |
|
|
|
if (this.temp.isGuarantee === '是') { |
|
|
|
this.temp.isGuaranteeKey = '1' |
|
|
|
} else if (this.temp.isGuarantee === '否') { |
|
|
|
this.temp.isGuaranteeKey = '0' |
|
|
|
} |
|
|
|
this.FormLoading = true |
|
|
|
this.temp.yyzzList = this.list1 |
|
|
|
this.temp.dlysxkzList = this.list2 |
|
|
@ -885,6 +896,7 @@ export default { |
|
|
|
invoBankNum: '', |
|
|
|
invoPhone: '', |
|
|
|
isGuarantee: '', |
|
|
|
isGuaranteeKey: '', |
|
|
|
legalIdCard: '', |
|
|
|
legalMobile: '', |
|
|
|
legalName: '', |
|
|
|