From 3115fcc80036ec4bfe3a2cd1128c5fdc82a01f42 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期二, 28 四月 2026 16:38:27 +0800
Subject: [PATCH] limsTable表格自适应高度&手动下单调整

---
 src/views/business/materialOrder/customsInspectionOrder.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/business/materialOrder/customsInspectionOrder.vue b/src/views/business/materialOrder/customsInspectionOrder.vue
index e8aee87..64d350e 100644
--- a/src/views/business/materialOrder/customsInspectionOrder.vue
+++ b/src/views/business/materialOrder/customsInspectionOrder.vue
@@ -1884,10 +1884,10 @@
           this.$set(row, 'sectionCopy', row.section)
         }
       }
-      if (row.ask.includes('[')) {
+      if (row.ask && row.ask.includes('[')) {
         this.$set(row, 'askCopy', row.ask)
       }
-      if (row.tell.includes('[')) {
+      if (row.tell && row.tell.includes('[')) {
         this.$set(row, 'tellCopy', row.tell)
       }
       let arr = this.productList.filter(m=>m.state==1&&row.sectionCopy&&row.sectionCopy.includes(m.sectionCopy)&&m.ask&&m.sectionCopy.indexOf('[')==-1)
@@ -1950,10 +1950,10 @@
             this.$set(p, 'sectionCopy', p.section)
           }
         }
-        if (p.ask.includes('[')) {
+        if (p.ask && p.ask.includes('[')) {
           this.$set(p, 'askCopy', p.ask)
         }
-        if (p.tell.includes('[')) {
+        if (p.tell && p.tell.includes('[')) {
           this.$set(p, 'tellCopy', p.tell)
         }
         if (p.bsm === '1' && p.sectionCopy !== '' && p.sectionCopy !== null && p.sectionCopy !== undefined && p.state === 1) {

--
Gitblit v1.9.3