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