[bug] 单个开票联系人地址参数
This commit is contained in:
@@ -118,6 +118,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
postalCode: '', // 邮寄联系人邮编
|
postalCode: '', // 邮寄联系人邮编
|
||||||
|
contactAddress: '' // 邮寄联系人地址
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -137,6 +138,7 @@ export default {
|
|||||||
getMailContactPostalCode() {
|
getMailContactPostalCode() {
|
||||||
getContactsById({id: this.mailContactsId}).then(res => {
|
getContactsById({id: this.mailContactsId}).then(res => {
|
||||||
this.postalCode = res.result.postalCode
|
this.postalCode = res.result.postalCode
|
||||||
|
this.contactAddress = res.result.contactAddress
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleOk() {
|
handleOk() {
|
||||||
@@ -150,6 +152,8 @@ export default {
|
|||||||
values.projectName = this.projectName
|
values.projectName = this.projectName
|
||||||
values.contactId = this.mailContactsId
|
values.contactId = this.mailContactsId
|
||||||
values.postalCode = this.postalCode
|
values.postalCode = this.postalCode
|
||||||
|
values.contactAddress = this.contactAddress
|
||||||
|
console.log(values)
|
||||||
const formData = Object.assign(this.model, values)
|
const formData = Object.assign(this.model, values)
|
||||||
console.log('表单提交数据', formData)
|
console.log('表单提交数据', formData)
|
||||||
let okHttpMethod
|
let okHttpMethod
|
||||||
|
|||||||
Reference in New Issue
Block a user