|
@@ -139,9 +139,9 @@
|
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
|
- <el-form-item label="联系电话" prop="mobile">
|
|
|
+ <el-form-item label="联系电话" prop="invoice_mobile">
|
|
|
<el-input
|
|
|
- v-model="ruleForm.mobile"
|
|
|
+ v-model="ruleForm.invoice_mobile"
|
|
|
placeholder="联系电话"
|
|
|
maxlength="100"
|
|
|
:disabled="isDetail == '007'"
|
|
@@ -254,7 +254,7 @@ export default {
|
|
|
inv_bank: '', // 银行
|
|
|
inv_bankNo: '', // 银行账户
|
|
|
contactor: '', // 联系人
|
|
|
- mobile: '', // 联系人电话
|
|
|
+ invoice_mobile: '', // 联系人电话
|
|
|
addr: '', // 联系地址
|
|
|
inv_scope: '', // 经营范围
|
|
|
license_img: '', // 营业执照
|
|
@@ -409,7 +409,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
currentMobileMode() {
|
|
|
- this.$set(this.rulesThis.mobile, '0', this.options[this.currentMobileMode].rule)
|
|
|
+ this.$set(this.rulesThis.invoice_mobile, '0', this.options[this.currentMobileMode].rule)
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -453,14 +453,14 @@ export default {
|
|
|
inv_bank, // 银行
|
|
|
inv_bankNo, // 银行账户
|
|
|
contactor, // 联系人
|
|
|
- mobile, // 联系人电话
|
|
|
+ invoice_mobile, // 联系人电话
|
|
|
addr, // 联系地址
|
|
|
inv_scope, // 经营范围
|
|
|
license_img, // 营业执照
|
|
|
invoice_title
|
|
|
} = res.data
|
|
|
|
|
|
- const index = this.options.findIndex(({ rule }) => rule.validator('', mobile, () => {}))
|
|
|
+ const index = this.options.findIndex(({ rule }) => rule.validator('', invoice_mobile, () => {}))
|
|
|
this.currentMobileMode = String(index)
|
|
|
|
|
|
this.ruleForm = {
|
|
@@ -474,7 +474,7 @@ export default {
|
|
|
inv_bank: inv_bank || '', // 银行
|
|
|
inv_bankNo: inv_bankNo || '', // 银行账户
|
|
|
contactor: contactor || '', // 联系人
|
|
|
- mobile: mobile || '', // 联系人电话
|
|
|
+ invoice_mobile: invoice_mobile || '', // 联系人电话
|
|
|
addr: addr || '', // 联系地址
|
|
|
inv_scope: inv_scope || '', // 经营范围
|
|
|
license_img: license_img || '', // 营业执照
|
|
@@ -503,7 +503,7 @@ export default {
|
|
|
inv_bank: '', // 银行
|
|
|
inv_bankNo: '', // 银行账户
|
|
|
contactor: '', // 联系人
|
|
|
- mobile: '', // 联系人电话
|
|
|
+ invoice_mobile: '', // 联系人电话
|
|
|
addr: '', // 联系地址
|
|
|
inv_scope: '', // 经营范围
|
|
|
license_img: '' // 营业执照
|
|
@@ -518,7 +518,7 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
this.loading = true
|
|
|
- const { code, inv_bank, inv_bankNo, inv_addr, mobile, id, invoice_title } = this.ruleForm
|
|
|
+ const { code, inv_bank, inv_bankNo, inv_addr, invoice_mobile, id, invoice_title } = this.ruleForm
|
|
|
|
|
|
const model = {
|
|
|
id,
|
|
@@ -526,7 +526,7 @@ export default {
|
|
|
inv_bank,
|
|
|
inv_bankNo,
|
|
|
inv_addr,
|
|
|
- mobile,
|
|
|
+ invoice_mobile,
|
|
|
invoice_title
|
|
|
}
|
|
|
const res = await asyncRequest.update(model)
|