From 8f53694cc7ed5b9965d172a511ab39b914edbfb6 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期五, 19 四月 2024 14:18:02 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/a1536384743/erp_-override

---
 north-glass-erp/northglass-erp/src/views/sd/delivery/DeliveryPrinting.vue |  529 ++++++++++++++++++++++++++++++++++++++++------------------
 1 files changed, 361 insertions(+), 168 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/views/sd/delivery/DeliveryPrinting.vue b/north-glass-erp/northglass-erp/src/views/sd/delivery/DeliveryPrinting.vue
index 4896f10..24a3ce0 100644
--- a/north-glass-erp/northglass-erp/src/views/sd/delivery/DeliveryPrinting.vue
+++ b/north-glass-erp/northglass-erp/src/views/sd/delivery/DeliveryPrinting.vue
@@ -1,9 +1,11 @@
 <script setup>
+
+
 import request from "@/utils/request"
 import {ElDatePicker, ElMessage} from "element-plus"
 import {nextTick, onMounted, onUnmounted, reactive, ref, watch} from "vue"
 import {Search} from "@element-plus/icons-vue"
-import {useRouter} from 'vue-router'
+import {useRoute, useRouter} from "vue-router"
 import {changeFilterEvent, filterChanged} from "@/hook"
 
 import { useI18n } from 'vue-i18n'
@@ -11,8 +13,12 @@
 //璇█鑾峰彇
 const { t } = useI18n()
 let router=useRouter()
+const route = useRoute()
 let produceList = ref([])
 let delivery = ref([])
+let money = ref("")
+let takeCare = "娉ㄦ剰:璇峰Ε鍠勪繚绠″ソ鎴戝徃鐨勭幓鐠冩灦锛屽鏈変涪澶辨垨鎹熷潖锛屾寜1500鍏冨彧璧斿伩銆傝阿璋㈤厤鍚�!"
+let remark = "澶囨敞:鏈壒鐜荤拑涓轰紭绛夊悎鏍煎搧锛岃鍦ㄥ嵏璐ф椂,褰撻潰娑堢偣楠屾敹銆佸鏈夎川閲忛棶棰樺湪涓�鍛ㄥ唴涓庢湰鍏徃鑱旂郴,鍚﹀垯姒備笉璐熻矗锛�"
 
 let props = defineProps({
   deliveryId:null
@@ -21,18 +27,65 @@
 const form = ref({
 })
 
+
+
+
+const Printing =  ()=>{
+
+  // 闇�瑕佹墦鍗扮殑灞�閮ㄥ尯鍩熻祴浜�"print-wrap"鐨刬d
+  let el = document.getElementById("pis");
+  let doc = document;
+  let body = doc.body || doc.getElementsByTagName("body")[0];
+  let printId = "print-" + Date.now();
+
+  // 鍒涘缓鏃犲壇浣滅敤鐨勬墦鍗板鍣�(鍥犱笉纭畾椤甸潰鐨勬墦鍗板厓绱犳湁鏃犲叾瀹冩牱寮�)
+  let content = doc.createElement("div");
+  content.id = printId;
+
+  // 鏍峰紡鎺у埗涓庢墦鍗版棤鍏崇殑鍏冪礌闅愯棌
+  let style = doc.createElement("style");
+  style.innerHTML =
+      "body>#" +
+      printId +
+      "{display:none}@media print{body>:not(#" +
+      printId +
+      "){display:none !important}body>#" +
+      printId +
+      "{display:block;padding-top:1px}}";
+
+  content.innerHTML = el.outerHTML;
+  // console.log("el.outerHTML", el.outerHTML);
+  body.appendChild(style);
+
+  // 涓巗tyle鍏冪礌璁剧疆鐨勬牱寮忕浉閰嶅悎
+  // 鎶婃墦鍗板唴瀹圭殑鍏冪礌娣诲姞鍒癰ody(浣滀负body鐨勫瓙鍏冪礌锛屽彲鐢╞ody鐨勫瓙閫夋嫨鍣� '>' 鎺у埗鎵撳嵃鏍峰紡)
+  body.appendChild(content);
+  setTimeout(() => {
+    window.print();
+    body.removeChild(content);
+    body.removeChild(style);
+  }, 20);
+}
+
+
 onMounted(()=>{
   console.log(props.deliveryId)
-  if(props.deliveryId===null  || props.deliveryId===undefined || props.deliveryId===''){
+  /*if(props.deliveryId===null  || props.deliveryId===undefined || props.deliveryId===''){
     return
   }
-  form.value.deliveryId = props.deliveryId
+  form.value.deliveryId = props.deliveryId*/
+  if(route.query.deliveryID===null  || route.query.deliveryID===undefined || route.query.deliveryID===''){
+    return
+  }
+  form.value.deliveryId=route.query.deliveryID
+
+
   request.post(`/Delivery/getSelectDeliveryPrinting`,form.value).then((res) => {
     if(res.code==200){
-      produceList = deepClone(res.data.data)
-      delivery=deepClone(res.data.delivery)
-      console.log(produceList)
-      console.log(delivery)
+      produceList.value = deepClone(res.data.data)
+      delivery.value=deepClone(res.data.delivery)
+      money.value=deepClone(res.data.money)
+
     }else{
       ElMessage.warning(res.msg)
       router.push("/login")
@@ -41,184 +94,324 @@
 
 })
 
+setTimeout(function(){
+  Printing()
+}, 1000);
+
+
 
 
 </script>
 
 <template>
-  <div style="width: 100%;height: 100%">
-    <div style="font-size: 30px;text-align: center">甯稿窞甯傚悏鍒╃幓鐠冩湁闄愬叕鍙�</div>
-    <el-row :gutter="20">
-      <el-col :span="6"><div></div></el-col>
-      <el-col :span="12"><div style="font-size: 25px;text-align: center">閿�鍞彂璐у崟</div></el-col>
-      <el-col :span="6">
-        <div style="font-size: 20px;text-align: center;display: flex">
-          <div>鍙戣揣鍗曞彿锛�</div>
-          <div>{{delivery.deliveryId}}</div>
-        </div>
-      </el-col>
-    </el-row>
-    <div style="border: 1px solid #d3dce6;border-collapse: collapse;width: 100%">
-      <table id="day-in" style="border: 1px solid #d3dce6;border-collapse: collapse;width: 100%">
-        <tr>
-          <th>搴忓彿</th>
-          <th>妤煎眰缂栧彿</th>
-          <th>瀹�(寮у害)*楂�</th>
-          <th>鏁伴噺</th>
-          <th>闈㈢Н</th>
-          <th>鍗曚环</th>
-          <th>閲戦</th>
-          <th>鍔犲伐瑕佹眰</th>
-        </tr>
 
-        <template v-for="(item, index) in produceList" :key="index" >
-              <tr>
-                <td colspan="3">浜у搧鍚嶇О:{{item.DeliveryDetail.orderDetail.productName}}</td>
-                <td colspan="3">瀵规柟鍗曞彿:</td>
-                <td colspan="2">璁㈠崟缂栧彿:{{item.DeliveryDetail.orderDetail.orderId}}</td>
-              </tr>
+  <div>
+    <el-button @click="Printing" style="margin-top: -5px"  id="searchButton" type="primary" >鎵撳嵃</el-button>
 
-              <tr v-for="(items, index1) in item.DeliveryDetailList" :key="index1">
-                <td>{{items.order_number}}</td>
-                <td>{{items.buildingNumber}}</td>
-                <td>{{items.width}}x{{items.height}}</td>
-                <td>{{items.quantity}}</td>
-                <td>{{items.area}}</td>
-                <td>{{items.price}}</td>
-                <td>{{items.money}}</td>
-                <td>{{items.processingNote}}</td>
-              </tr>
-              <tr>
-                <td colspan="3">灏忚:</td>
-                <td>{{item.DeliveryDetail.quantity}}</td>
-                <td>{{item.DeliveryDetail.area}}</td>
-                <td></td>
-                <td>{{item.DeliveryDetail.money}}</td>
-                <td></td>
-              </tr>
+    <div id="pis" style="width: 100%;height: 100%">
+      <div style="font-size: 30px;text-align: center;font-weight: bold;">甯稿窞甯傚悏鍒╃幓鐠冩湁闄愬叕鍙�</div>
+      <el-row :gutter="20">
+        <el-col :span="7"><div></div></el-col>
+        <el-col :span="10"><div style="font-size: 25px;text-align: center;font-weight: bold;">閿�鍞彂璐у崟</div></el-col>
+        <el-col :span="7">
+          <div style="display: flex;margin-top: 10px;">
+            <div style="font-weight: bold;font-size: 15px">鍙戣揣鍗曞彿锛�</div>
+            <div style="font-weight: bold;font-size: 15px">{{delivery.deliveryId}}</div>
+          </div>
+        </el-col>
+      </el-row>
+      <div style="border: 1px solid #d3dce6;border-collapse: collapse;width: 100%;height: 100%;">
+        <table id="table1" style="border: 1px solid #d3dce6;border-collapse: collapse;width: 100%;height: 100%;">
+          <tr>
+            <th style="text-align: left;border:none;" colspan="3">瀹㈡埛鍚嶇О锛�<span>{{delivery.customerName}}</span></th>
+            <th style="text-align: left;border:none;" colspan="3">椤圭洰鍚嶇О锛�<span>{{delivery.project}}</span></th>
+            <th style="text-align: left;border:none;" colspan="2">鑱旂郴浜猴細<span>{{delivery.contacts}}</span></th>
 
-        </template>
-        <tr>
-          <td colspan="3">鍚堣:</td>
-          <td>{{delivery.quantity}}</td>
-          <td>{{delivery.area}}</td>
-          <td></td>
-          <td>{{delivery.money}}</td>
-          <td></td>
-        </tr>
-      </table>
+          </tr>
+          <tr>
+            <th style="text-align: left;border:none;" colspan="6">閫佽揣鍦板潃锛�<span>{{delivery.deliveryAddress}}</span></th>
+            <th style="text-align: left;border:none;" colspan="2">鑱旂郴鐢佃瘽锛�<span>{{delivery.contactNumber}}</span></th>
+
+          </tr>
+          <tr>
+            <th style="width: 6%;">搴忓彿</th>
+            <th style="width: 20%;">妤煎眰缂栧彿</th>
+            <th style="width: 20%;">瀹�(寮у害)*楂�</th>
+            <th style="width: 10%;">鏁伴噺</th>
+            <th style="width: 10%;">闈㈢Н</th>
+            <th style="width: 10%;">鍗曚环</th>
+            <th style="width: 12%;">閲戦</th>
+            <th style="width: 12%;">鍔犲伐瑕佹眰</th>
+          </tr>
+
+          <template v-for="(item, index) in produceList" :key="index" >
+            <tr>
+              <td style="font-size: 15px;font-weight: bold;" colspan="3">浜у搧鍚嶇О:<span>{{item.DeliveryDetail.orderDetail.productName}}</span></td>
+              <td style="font-size: 15px;font-weight: bold;" colspan="3">瀵规柟鍗曞彿:</td>
+              <td style="font-size: 15px;font-weight: bold;" colspan="2">璁㈠崟缂栧彿:<span>{{item.DeliveryDetail.orderDetail.orderId}}</span></td>
+            </tr>
+
+            <tr class="day-in" v-for="(items, index1) in item.DeliveryDetailList" :key="index1">
+              <td>{{items.order_number}}</td>
+              <td>{{items.buildingNumber}}</td>
+              <td style="font-size: 15px;font-weight: bold;">{{items.width}}x{{items.height}}</td>
+              <td>{{items.quantity}}</td>
+              <td>{{items.area}}</td>
+              <td>{{items.price}}</td>
+              <td>{{items.money}}</td>
+              <td>{{items.processingNote}}</td>
+            </tr>
+            <tr class="day-in">
+              <td style="font-size: 15px;font-weight: bold;" colspan="3">灏忚:</td>
+              <td>{{item.DeliveryDetail.quantity}}</td>
+              <td>{{item.DeliveryDetail.area}}</td>
+              <td></td>
+              <td>{{item.DeliveryDetail.money}}</td>
+              <td></td>
+            </tr>
+
+          </template>
+          <tr class="day-in">
+            <td style="font-size: 15px;font-weight: bold;" colspan="3">鍚堣:</td>
+            <td>{{delivery.quantity}}</td>
+            <td>{{delivery.area}}</td>
+            <td></td>
+            <td>{{delivery.money}}</td>
+            <td></td>
+          </tr>
+          <tr class="day-in">
+            <td style="text-align: left;border-width: 0 1px 0 0; border-style: solid; border-color: #d3dce6" colspan="3">
+              <div style="display: flex;font-size: 10px;">
+                <div>鍔犲伐璐圭敤</div>
+                <div  style="margin-left: 20%">鍗曚环</div>
+                <div  style="margin-left: 20%">鏁伴噺</div>
+                <div  style="margin-left: 20%">閲戦</div>
+              </div>
+
+            </td>
+            <td style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="5">鎬婚噾棰�:&nbsp;&nbsp;&nbsp;&nbsp;{{delivery.money}}</td>
+          </tr>
+          <tr class="day-in">
+            <td style="text-align: left;border-width: 0 1px 0 0; border-style: solid; border-color: #d3dce6;" colspan="3"></td>
+            <td style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="5">澶у啓閲戦:&nbsp;&nbsp;&nbsp;&nbsp;{{money}}</td>
+          </tr>
+        </table>
+      </div>
+      <el-row :gutter="20">
+        <el-col :span="3"><div class="bottom">鍒跺崟鍛橈細<span style="font-size: 10px">{{delivery.creator}}</span></div></el-col>
+        <el-col :span="5"><div class="bottom">鍒跺崟鏃ユ湡锛�<span style="font-size: 10px">{{delivery.createTime}}</span></div></el-col>
+        <el-col :span="4"><div class="bottom">鍙戣揣鍛橈細</div></el-col>
+        <el-col :span="4"><div class="bottom">鍙告満锛�</div></el-col>
+        <el-col :span="4"><div class="bottom">瀹㈡埛绛惧瓧锛�</div></el-col>
+        <el-col :span="4"><div class="bottom">绛炬敹鏃ユ湡锛�</div></el-col>
+
+      </el-row>
+      <el-row :gutter="20" style="margin-top: 20px;">
+        <el-col :span="3"><div class="bottom">鏋跺瓙&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;鍙�</div></el-col>
+        <el-col :span="21"><div class="bottom">{{takeCare}}</div></el-col>
+      </el-row>
+      <el-row :gutter="20" style="margin-top: 20px;">
+        <el-col :span="24"><div class="bottom">{{remark}}</div></el-col>
+      </el-row>
+
+
+
     </div>
-<!--    <div style="border: 1px solid #d3dce6;border-collapse: collapse;">-->
-<!--      <el-row :gutter="20" >-->
-
-<!--        <el-col :span="9">-->
-<!--          <div style="font-size: 20px;display: flex">-->
-<!--            <div>瀹㈡埛鍚嶇О锛�</div>-->
-<!--            <div>甯稿窞甯傞噾瀹濈煶闂ㄧ獥鏈夐檺鍏徃</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="9">-->
-<!--          <div style="font-size: 20px;display: flex">-->
-<!--            <div>椤圭洰鍚嶇О锛�</div>-->
-<!--            <div>鍏洯閬�</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="6">-->
-<!--          <div style="font-size: 20px;display: flex">-->
-<!--            <div>鑱旂郴浜猴細</div>-->
-<!--            <div></div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--      </el-row>-->
-
-<!--      <el-row :gutter="20" >-->
-<!--        <el-col :span="18">-->
-<!--          <div style="font-size: 20px;display: flex">-->
-<!--            <div>閫佽揣鍦板潃锛�</div>-->
-<!--            <div></div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="6">-->
-<!--          <div style="font-size: 20px;display: flex">-->
-<!--            <div>鑱旂郴鐢佃瘽锛�</div>-->
-<!--            <div></div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--      </el-row>-->
-<!--    </div>-->
-
-<!--    <div style="border: 1px solid #d3dce6;border-collapse: collapse;">-->
-<!--      <el-row :gutter="20" >-->
-
-<!--        <el-col :span="2">-->
-<!--          <div class="alias">-->
-<!--            <div>搴忓彿</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="5">-->
-<!--          <div class="alias">-->
-<!--            <div>妤煎眰缂栧彿</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="5">-->
-<!--          <div class="alias">-->
-<!--            <div>瀹�(寮ч暱)*楂�</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="2">-->
-<!--          <div class="alias">-->
-<!--            <div>鏁伴噺</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="2">-->
-<!--          <div class="alias">-->
-<!--            <div>闈㈢Н</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="2">-->
-<!--          <div class="alias">-->
-<!--            <div>鍗曚环</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="2">-->
-<!--          <div class="alias" >-->
-<!--            <div>閲戦</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--        <el-col :span="4">-->
-<!--          <div class="alias" >-->
-<!--            <div>鍔犲伐瑕佹眰</div>-->
-<!--          </div>-->
-<!--        </el-col>-->
-<!--      </el-row>-->
-
-
-<!--    </div>-->
-
-
   </div>
+</template>
+
+<style>
+@media print{
+  @page {
+    mso-header:none;
+    margin: 10mm 16mm;
+    margin-bottom: 8mm;
+    margin-top:8mm;
+
+  }
+}
+#table1 tr{
+  height: 30px;
+}
+#table1 th{
+  height: 30px;
+  border: 1px solid #d3dce6;
+  border-collapse: collapse;
+  font-size: 15px;
+  font-weight: bold;
+}
+.day-in td{
+text-align: center;
+}
+#table1 td{
+  border: 1px solid #d3dce6;
+  border-collapse: collapse;
+}
+#deliveryPrinting .el-dialog__header{
+  visibility:hidden
+}
+
+.el-overlay-dialog{
+  overflow-y: scroll;
+}
+::-webkit-scrollbar {
+  display: none;
+}
+.bottom{
+  font-size: 10px;
+  font-weight: bold;
+
+}
+
+</style>
 
 
+<!--
+<template>
+
+  <div>
+    <div id="pis" style="width: 100%;height: 100%">
+      <div style="font-size: 35px;text-align: center;font-weight: bold;">甯稿窞甯傚悏鍒╃幓鐠冩湁闄愬叕鍙�</div>
+      <el-row :gutter="20">
+        <el-col :span="6"><div></div></el-col>
+        <el-col :span="12"><div style="font-size: 30px;text-align: center;font-weight: bold;">閿�鍞彂璐у崟</div></el-col>
+        <el-col :span="6">
+          <div style="font-size: 20px;display: flex;margin-top: 10px">
+            <div style="font-weight: bold;">鍙戣揣鍗曞彿锛�</div>
+            <div style="font-weight: bold;">{{delivery.deliveryId}}</div>
+          </div>
+        </el-col>
+      </el-row>
+      <div style="border: 1px solid #d3dce6;border-collapse: collapse;width: 100%;height: 100%;">
+        <table id="table1" style="border: 1px solid #d3dce6;border-collapse: collapse;width: 100%;height: 100%;">
+          <tr>
+            <th style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="3">瀹㈡埛鍚嶇О锛歿{delivery.customerName}}</th>
+            <th style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="3">椤圭洰鍚嶇О锛歿{delivery.project}}</th>
+            <th style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="2">鑱旂郴浜猴細{{delivery.contacts}}</th>
+
+          </tr>
+          <tr>
+            <th style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="6">閫佽揣鍦板潃锛歿{delivery.deliveryAddress}}</th>
+            <th style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="2">鑱旂郴鐢佃瘽锛歿{delivery.contactNumber}}</th>
+
+          </tr>
+          <tr>
+            <th style="width: 6%;font-size: 15px;font-weight: bold;">搴忓彿</th>
+            <th style="width: 20%;font-size: 15px;font-weight: bold;">妤煎眰缂栧彿</th>
+            <th style="width: 20%;font-size: 15px;font-weight: bold;">瀹�(寮у害)*楂�</th>
+            <th style="width: 10%;font-size: 15px;font-weight: bold;">鏁伴噺</th>
+            <th style="width: 10%;font-size: 15px;font-weight: bold;">闈㈢Н</th>
+            <th style="width: 10%;font-size: 15px;font-weight: bold;">鍗曚环</th>
+            <th style="width: 12%;font-size: 15px;font-weight: bold;">閲戦</th>
+            <th style="width: 12%;font-size: 15px;font-weight: bold;">鍔犲伐瑕佹眰</th>
+          </tr>
+
+          <template v-for="(item, index) in produceList" :key="index" >
+            <tr>
+              <td style="font-size: 15px;font-weight: bold;" colspan="3">浜у搧鍚嶇О:{{item.DeliveryDetail.orderDetail.productName}}</td>
+              <td style="font-size: 15px;font-weight: bold;" colspan="3">瀵规柟鍗曞彿:</td>
+              <td style="font-size: 15px;font-weight: bold;" colspan="2">璁㈠崟缂栧彿:{{item.DeliveryDetail.orderDetail.orderId}}</td>
+            </tr>
+
+            <tr class="day-in" v-for="(items, index1) in item.DeliveryDetailList" :key="index1">
+              <td>{{items.order_number}}</td>
+              <td>{{items.buildingNumber}}</td>
+              <td style="font-size: 15px;font-weight: bold;">{{items.width}}x{{items.height}}</td>
+              <td>{{items.quantity}}</td>
+              <td>{{items.area}}</td>
+              <td>{{items.price}}</td>
+              <td>{{items.money}}</td>
+              <td>{{items.processingNote}}</td>
+            </tr>
+            <tr class="day-in">
+              <td style="font-size: 15px;font-weight: bold;" colspan="3">灏忚:</td>
+              <td>{{item.DeliveryDetail.quantity}}</td>
+              <td>{{item.DeliveryDetail.area}}</td>
+              <td></td>
+              <td>{{item.DeliveryDetail.money}}</td>
+              <td></td>
+            </tr>
+
+          </template>
+          <tr class="day-in">
+            <td style="font-size: 15px;font-weight: bold;" colspan="3">鍚堣:</td>
+            <td>{{delivery.quantity}}</td>
+            <td>{{delivery.area}}</td>
+            <td></td>
+            <td>{{delivery.money}}</td>
+            <td></td>
+          </tr>
+          <tr class="day-in">
+            <td style="text-align: left;border-width: 0 1px 0 0; border-style: solid; border-color: #d3dce6" colspan="3">
+              <div style="display: flex">
+                <div>鍔犲伐璐圭敤</div>
+                <div  style="margin-left: 20%">鍗曚环</div>
+                <div  style="margin-left: 20%">鏁伴噺</div>
+                <div  style="margin-left: 20%">閲戦</div>
+              </div>
+
+            </td>
+            <td style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="5">鎬婚噾棰�:&nbsp;&nbsp;&nbsp;&nbsp;{{delivery.money}}</td>
+          </tr>
+          <tr class="day-in">
+            <td style="text-align: left;border-width: 0 1px 0 0; border-style: solid; border-color: #d3dce6;" colspan="3"></td>
+            <td style="text-align: left;border:none;font-size: 15px;font-weight: bold;" colspan="5">澶у啓閲戦:&nbsp;&nbsp;&nbsp;&nbsp;{{money}}</td>
+          </tr>
+        </table>
+      </div>
+      <el-row :gutter="20">
+        <el-col :span="3"><div class="bottom">鍒跺崟鍛橈細<span style="font-size: 15px">{{delivery.creator}}</span></div></el-col>
+        <el-col :span="5"><div class="bottom">鍒跺崟鏃ユ湡锛�<span style="font-size: 15px">{{delivery.createTime}}</span></div></el-col>
+        <el-col :span="4"><div class="bottom">鍙戣揣鍛橈細</div></el-col>
+        <el-col :span="4"><div class="bottom">鍙告満锛�</div></el-col>
+        <el-col :span="4"><div class="bottom">瀹㈡埛绛惧瓧锛�</div></el-col>
+        <el-col :span="4"><div class="bottom">绛炬敹鏃ユ湡锛�</div></el-col>
+
+      </el-row>
+      <el-row :gutter="20" style="margin-top: 20px;">
+        <el-col :span="3"><div class="bottom">鏋跺瓙&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;鍙�</div></el-col>
+        <el-col :span="21"><div class="bottom">{{takeCare}}</div></el-col>
+      </el-row>
+      <el-row :gutter="20" style="margin-top: 20px;">
+        <el-col :span="24"><div class="bottom">{{remark}}</div></el-col>
+      </el-row>
+
+
+
+    </div>
+  </div>
 </template>
 
 <style >
-.el-row {
-  margin-bottom: 10px;
+#table1 tr{
+  height: 30px;
 }
-.el-row:last-child {
-  margin-bottom: 0;
+#table1 th{
+  height: 30px;
+  border: 1px solid #d3dce6;
+  border-collapse: collapse;
 }
-.el-col {
-  border-radius: 4px;
-}
-
-.grid-content {
-  border-radius: 4px;
-  min-height: 36px;
-}
-.alias{
+.day-in td{
   text-align: center;
-  font-size: 20px;
+}
+#table1 td{
+  border: 1px solid #d3dce6;
+  border-collapse: collapse;
+}
+#deliveryPrinting .el-dialog__header{
+  visibility:hidden
 }
 
-</style>
\ No newline at end of file
+.el-overlay-dialog{
+  overflow-y: scroll;
+}
+::-webkit-scrollbar {
+  display: none;
+}
+.bottom{
+  font-size: 20px;
+  font-weight: bold;
+
+}
+
+</style>-->

--
Gitblit v1.8.0