From 8e473b0d5dd30ad3622bd79d712c11bce2130b66 Mon Sep 17 00:00:00 2001 From: linfso Date: Fri, 18 Oct 2024 07:27:17 +0800 Subject: [PATCH] md --- src/views/emis/emisWaybillAjustApply/adjustPanel.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue index 2fb87dd7..c5b04f57 100644 --- a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue +++ b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue @@ -1334,7 +1334,8 @@ export default { this.form=this.newValue; console.log("====>newValue this.form==>",this.form); - if(this.form.packType!=null&&this.form.packType!=''){ + console.log("====>newValue this.form.packType==>",this.form.packType); + if(this.form.packType!=null&&this.form.packType!=''&&!Array.isArray(this.form.packType)){ this.form.packType=this.form.packType.split(","); } @@ -1434,7 +1435,7 @@ export default { // this.form=Object.assign({},this.newValue); this.form=this.newValue; - if(this.form.packType!=null&&this.form.packType!=''){ + if(this.form.packType!=null&&this.form.packType!=''&&!Array.isArray(this.form.packType)){ this.form.packType=this.form.packType.split(","); console.log("==>this.form.packTypeArr==>",this.form.packTypeArr)