Commit fda423c1 authored by dcy's avatar dcy

编辑修改客户信息,将联系人修改后,点确定无响应 bug修复

parent e9b04a6d
...@@ -666,7 +666,7 @@ export default { ...@@ -666,7 +666,7 @@ export default {
return return
} }
const form = {...this.form, type: this.form.type?.join(','), transportType: this.form.transportType?.join(','), taxRate: Number(this.form.taxRate)} const form = {...this.form, type: this.form.type?.join(','), transportType: (this.form.transportType || [])?.join(','), taxRate: Number(this.form.taxRate)}
// 检查路线是否启用了但是没选择目的仓 // 检查路线是否启用了但是没选择目的仓
let errors = 0 let errors = 0
...@@ -725,6 +725,7 @@ export default { ...@@ -725,6 +725,7 @@ export default {
level: 1, level: 1,
country: undefined, country: undefined,
type: undefined, type: undefined,
transportType:[],
agentId: undefined, agentId: undefined,
company: undefined, company: undefined,
address: undefined, address: undefined,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment