From 7b10179a35a079a098126a1cb3aea2e8d010704d Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 17 十一月 2023 16:37:37 +0800
Subject: [PATCH] 	modified:   src/const/crud/customerOrder/customerOrderForm.js 	modified:   src/views/common/document.vue 	modified:   src/views/common/ztt-table.vue 	modified:   src/views/plan/customerorder/sample-customerorder-form.vue 	modified:   src/views/plan/manfacturingorderstatement/index.vue 	modified:   src/views/plan/manufacturingorder/index.vue 	modified:   src/views/plan/masterproductionschedule/auto-manufacturingorder.vue 	modified:   src/views/plan/masterproductionschedule/index.vue 	modified:   src/views/plan/operationtask/index.vue 	modified:   src/views/plan/outsourcingorder/index.vue 	modified:   src/views/plan/outsourcingorder/outsourcingorder-form.vue 	modified:   src/views/warehouse/stock/index.vue

---
 src/views/common/document.vue |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/views/common/document.vue b/src/views/common/document.vue
index fa46446..733f4a4 100644
--- a/src/views/common/document.vue
+++ b/src/views/common/document.vue
@@ -13,33 +13,33 @@
       <el-row>
         <el-col :span="3"><span>鍗板瓧鏂瑰紡锛�</span></el-col>
         <el-col :span="3"
-          ><span>{{ relationOrderList[0].printType }}</span></el-col
+          ><span>{{ relationOrderList[0] ? relationOrderList[0].printType : "" }}</span></el-col
         >
         <el-col :span="3"><span>鍗板瓧瑕佹眰锛�</span></el-col>
         <el-col :span="3"
-          ><span>{{ relationOrderList[0].printingRequirements }}</span></el-col
+          ><span>{{ relationOrderList[0] ? relationOrderList[0].printingRequirements : "" }}</span></el-col
         >
         <el-col :span="3"><span>鐩橀暱瑕佹眰锛�</span></el-col>
         <el-col :span="3"
-          ><span>{{ relationOrderList[0].lengthRequirement }}</span></el-col
+          ><span>{{ relationOrderList[0] ? relationOrderList[0].lengthRequirement : "" }}</span></el-col
         >
         <el-col :span="3"><span>鍖呰瑕佹眰锛�</span></el-col>
         <el-col :span="3"
-          ><span>{{ relationOrderList[0].packageRequire }}</span></el-col
+          ><span>{{ relationOrderList[0] ? relationOrderList[0].packageRequire : "" }}</span></el-col
         >
       </el-row>
       <el-row>
         <el-col :span="3"><span>璐ㄩ噺瑕佹眰锛�</span></el-col>
         <el-col :span="3"
-          ><span>{{ relationOrderList[0].qualityRequire }}</span></el-col
+          ><span>{{ relationOrderList[0] ? relationOrderList[0].qualityRequire : "" }}</span></el-col
         >
         <el-col :span="3"><span>鐢熶骇闇�姹傝鏄庯細</span></el-col>
         <el-col :span="3"
-          ><span>{{ relationOrderList[0].otherProductRequire }}</span></el-col
+          ><span>{{ relationOrderList[0] ? relationOrderList[0].otherProductRequire : "" }}</span></el-col
         >
         <el-col :span="3"><span>澶囨敞锛�</span></el-col>
         <el-col :span="9"
-          ><span>{{ relationOrderList[0].remark }}</span></el-col
+          ><span>{{ relationOrderList[0] ? relationOrderList[0].remark : "" }}</span></el-col
         >
       </el-row>
     </div>

--
Gitblit v1.9.3