Commit 5b9d11e3 authored by Smile's avatar Smile

Merge remote-tracking branch 'origin/jd_dev' into jd_dev

parents 14c4c724 428c8f93
......@@ -1113,6 +1113,15 @@ export default {
} else {
this.form.relation = 2
}
// 根据客户联系人id选择客户信息
getCustomerContactsSelect({
ids: [this.customer.customerContactsId].join(",")
}).then(({ data }) => {
// 设置收货人或者发货人,相反需要清空另一个框的值
this.onContactAssignValueBackToDisplay(data.list.find((item) => item.customerContactsId == this.customer.customerContactsId), this.form.relation == 1 ? "consignor" : "consignee")
this.handleChangeRelation(this.form.relation)
})
}
})
......
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