From a660db06773007b1be690e0674829c00a57aeb7b Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期三, 24 十二月 2025 16:21:23 +0800
Subject: [PATCH] 订单首页流程卡新增楼层编号显示

---
 north-glass-erp/northglass-erp/src/components/sd/order/PrintSheet3.vue |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/components/sd/order/PrintSheet3.vue b/north-glass-erp/northglass-erp/src/components/sd/order/PrintSheet3.vue
index 984ef73..2ea2710 100644
--- a/north-glass-erp/northglass-erp/src/components/sd/order/PrintSheet3.vue
+++ b/north-glass-erp/northglass-erp/src/components/sd/order/PrintSheet3.vue
@@ -39,9 +39,7 @@
       productIdData.value=deepClone(res.data.data)
       produceList.value = deepClone(res.data.data)
 
-
       delivery.value=deepClone(res.data.delivery)
-      console.log(delivery.value)
       money.value=deepClone(res.data.money)
       produceList.value.forEach(item => {
         sumMoney+=item.DeliveryDetail.grossAmount
@@ -179,6 +177,7 @@
 <template>
   <div id="sheet" @dblclick="handleDoubleClick">
     <table border="1" >
+      <thead>
       <tr class="title-s">
         <th colspan="9">
           <h1>
@@ -190,9 +189,12 @@
       <tr  class="title-s">
         <th colspan="2"></th>
         <th colspan="5">
-          <h3>閿�鍞‘璁ゅ崟</h3>
+          <h4 v-if="!company.showDeliveryCreator" >閲戝崕甯備箰鍔ㄦ櫤鑳界鎶�鏈夐檺鍏徃</h4>
+          <h3 >閿�鍞‘璁ゅ崟</h3>
+
         </th>
         <th colspan="2" style="text-align: left;font-weight: bold;" v-if="company.showDeliveryCreator">鍙戣揣鍗曞彿锛�<span>{{delivery.deliveryId}}</span></th>
+        <th colspan="2" style="text-align: left;font-weight: bold;" v-else></th>
       </tr>
       <tr>
         <th style="text-align: left;border:none;font-weight: bold;" colspan="4">瀹㈡埛鍚嶇О锛�<span>{{delivery.customerName}}</span></th>
@@ -200,7 +202,8 @@
         <th style="text-align: left;border:none;font-weight: bold;" colspan="2">鑱旂郴浜猴細<span>{{delivery.contacts}}</span></th>
       </tr>
       <tr>
-        <th style="text-align: left;border:none;font-weight: bold;" colspan="7">閫佽揣鍦板潃锛�<span>{{delivery.deliveryAddress}}</span></th>
+        <th style="text-align: left;border:none;font-weight: bold;" colspan="4">閫佽揣鍦板潃锛�<span>{{delivery.deliveryAddress}}</span></th>
+        <th style="text-align: left;border:none;font-weight: bold;" colspan="3">閫佽揣鏃堕棿锛�<span>{{delivery.deliveryDate}}</span></th>
         <th style="text-align: left;border:none;font-weight: bold;" colspan="2">鑱旂郴鐢佃瘽锛�<span>{{delivery.contactNumber}}</span></th>
       </tr>
       <tr>
@@ -215,13 +218,14 @@
         <th v-if="!company.showDeliveryCreator" style="width: 10%;" colspan="1">鍔犲伐瑕佹眰</th>
         <th v-if="!company.showDeliveryCreator" style="width: 10%;" colspan="1">澶囨敞</th>
       </tr>
+      </thead>
       <template v-for="(item, index) in produceList" :key="index" >
         <tr>
           <td style="font-size: 15px;font-weight: bold;text-align: left" colspan="4">浜у搧鍚嶇О:
             <span v-if="company.productName!=='product_abbreviation'">{{item.productName}}</span>
             <span v-else >{{item.remarks}}</span>
           </td>
-          <td v-if="company.showDeliveryCreator" style="font-size: 15px;font-weight: bold;text-align: left" colspan="2">瀵规柟鍗曞彿:</td>
+          <td v-if="company.showDeliveryCreator" style="font-size: 15px;font-weight: bold;text-align: left" colspan="2">璁㈣揣鏃ユ湡:<span>{{delivery.contractId}}</span></td>
           <td v-else style="font-size: 15px;font-weight: bold;text-align: left" colspan="2"></td>
           <td style="font-size: 15px;font-weight: bold;text-align: left" colspan="3">璁㈠崟缂栧彿:<span>{{item.DeliveryDetail.orderId}}</span></td>
         </tr>

--
Gitblit v1.8.0