|
@@ -142,9 +142,9 @@
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="11">
|
|
|
- <el-form-item size="medium" label="联系电话" prop="mobile">
|
|
|
+ <el-form-item size="medium" label="联系电话" prop="invoice_mobile">
|
|
|
<el-input
|
|
|
- v-model="ruleForm.mobile"
|
|
|
+ v-model="ruleForm.invoice_mobile"
|
|
|
placeholder="联系电话"
|
|
|
maxlength="100"
|
|
|
:disabled="isDetail == '007'"
|
|
@@ -245,7 +245,7 @@ export default {
|
|
|
inv_bank: '', // 银行
|
|
|
inv_bankNo: '', // 银行账户
|
|
|
contactor: '', // 联系人
|
|
|
- mobile: '', // 联系人电话
|
|
|
+ invoice_mobile: '', // 联系人电话
|
|
|
addr: '', // 联系地址
|
|
|
inv_scope: '', // 经营范围
|
|
|
license_img: '', // 营业执照
|
|
@@ -360,7 +360,7 @@ export default {
|
|
|
}
|
|
|
],
|
|
|
|
|
|
- mobile: [{
|
|
|
+ invoice_mobile: [{
|
|
|
...basicRule,
|
|
|
validator(rule, value, callback) {
|
|
|
if (!value) {
|
|
@@ -393,7 +393,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: {
|
|
@@ -435,7 +435,7 @@ export default {
|
|
|
inv_bank: '', // 银行
|
|
|
inv_bankNo: '', // 银行账户
|
|
|
contactor: contactor || '', // 联系人
|
|
|
- mobile: '', // 联系人电话
|
|
|
+ invoice_mobile: '', // 联系人电话
|
|
|
addr: addr || '', // 联系地址
|
|
|
inv_scope: scope || '', // 经营范围
|
|
|
license_img: license_img || '' // 营业执照
|
|
@@ -464,7 +464,7 @@ export default {
|
|
|
inv_bank: '', // 银行
|
|
|
inv_bankNo: '', // 银行账户
|
|
|
contactor: '', // 联系人
|
|
|
- mobile: '', // 联系人电话
|
|
|
+ invoice_mobile: '', // 联系人电话
|
|
|
addr: '', // 联系地址
|
|
|
inv_scope: '', // 经营范围
|
|
|
license_img: '' // 营业执照
|
|
@@ -479,14 +479,14 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
this.loading = true
|
|
|
- const { code, inv_bank, inv_bankNo, inv_addr, mobile, invoice_title } = this.ruleForm
|
|
|
+ const { code, inv_bank, inv_bankNo, inv_addr, invoice_mobile, invoice_title } = this.ruleForm
|
|
|
|
|
|
const model = {
|
|
|
code,
|
|
|
inv_bank,
|
|
|
inv_bankNo,
|
|
|
inv_addr,
|
|
|
- mobile,
|
|
|
+ invoice_mobile,
|
|
|
invoice_title
|
|
|
}
|
|
|
|