Commit 4d1aa580 authored by zhengyi's avatar zhengyi

编辑/复制订单是否有收货人逻辑修改

parent 32ee955b
......@@ -2062,6 +2062,11 @@ export default {
consigneePhone: ''
})
this.form.deliveryDate = res.data.deliveryDate
this.form.hasConsignee = res.data.hasConsignee
if (!this.noConsignee){
// 不允许无收货人
this.form.hasConsignee = true
}
if(res.data.consigneeVO){
this.$set(this.form, 'consigneePhone', res.data.consigneeVO.phone)
this.$set(this.form, 'countryCode', res.data.consigneeVO.countryCode)
......
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