From 142aed38403568e99d7f115f57442fa0abec1cc8 Mon Sep 17 00:00:00 2001
From: zyx <zyx123456>
Date: 星期一, 04 十二月 2023 16:53:44 +0800
Subject: [PATCH] 平库库位加打印模板功能

---
 src/main/webapp/views/node/node.html |   96 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 96 insertions(+), 0 deletions(-)

diff --git a/src/main/webapp/views/node/node.html b/src/main/webapp/views/node/node.html
index b049dd7..427cd4f 100644
--- a/src/main/webapp/views/node/node.html
+++ b/src/main/webapp/views/node/node.html
@@ -16,6 +16,17 @@
         .ew-tree-table-box {
             height: 100%;
         }
+        /* ------------------------- 鎵撳嵃琛ㄦ牸 -----------------------  */
+        .template-preview {
+            height: 200px;
+            display: inline-block;
+        }
+        .contain td {
+            border: 1px solid #000;
+            /*font-family: 榛戜綋;*/
+            /*font-weight: bold;*/
+            /*color: #000000;*/
+        }
     </style>
 </head>
 <body>
@@ -197,7 +208,92 @@
     </div>
 </div>
 
+<!-- 鎵撳嵃鎿嶄綔寮圭獥 -->
+<div id="printDataDiv" style="display: none;padding: 20px">
+    <div class="layui-form" style="text-align: center">
+        <hr>
+        <!--鍗曢�夋-->
+        <div class="layui-form-item" style="display: inline-block; margin-bottom: 10px">
+            <input type="radio" name="selectTemplate" value="1" title="妯℃澘涓�"  lay-filter="selectTemplateRadio" checked="checked">
+            <input type="radio" name="selectTemplate" value="2" title="妯℃澘浜�" lay-filter="selectTemplateRadio">
+        </div>
+        <fieldset class="layui-elem-field site-demo-button" style="margin-top: 30px;text-align: left;">
+            <legend>鎵撳嵃棰勮</legend>
+            <div id="template-container" style="margin: 20px;text-align: center">
 
+                <!-- 棰勮鍥� 1 -->
+                <div id="template-preview-1" class="template-preview" style="display: inline-block">
+                    <table class="contain" width="280" style="overflow: hidden;font-size: xx-small;table-layout: fixed;">
+                        <tr style="height: 74px; border: none">
+                            <td class="barcode" colspan="12" align="center" scope="col" style=" border: none">
+                                <img class="template-code template-barcode" src="" width="90%;">
+                                <div style="letter-spacing: 2px;margin-top: 1px; text-align: center;">
+                                    <span>xxxxxx</span>
+                                </div>
+                            </td>
+                        </tr>
+                    </table>
+                </div>
+
+                <!-- 棰勮鍥� 2 -->
+                <div id="template-preview-2" class="template-preview" style="display: none">
+                    <table class="contain" width="280" style="overflow: hidden;table-layout: fixed; border: none; font-size: xx-large">
+                        <tr style="height: 74px">
+                            <td class="barcode" colspan="9" align="center" scope="col" style="border: none">
+                                <img class="template-code template-barcode" src="" width="90%;"> 鈫�
+                                <div style="letter-spacing: 2px;margin-top: 1px; text-align: center; font-size: xx-small">
+                                    <span>xxxxxx</span>
+                                </div>
+                            </td>
+                        </tr>
+                    </table>
+                </div>
+            </div>
+        </fieldset>
+
+        <button class="layui-btn" id="doPrint" lay-submit lay-filter="doPrint" style="margin-top: 20px">纭畾</button>
+    </div>
+</div>
+
+<div id="box" style="display: block"></div>
+
+<!-- 鍒濆鍖栨墦鍗版ā鏉跨殑鏉″舰鐮� -->
+<script type="text/javascript">
+    $('.template-barcode').attr("src", baseUrl+"/mac/code/auth?type=1&param=123");
+    $('.template-qrcode').attr("src", baseUrl+"/mac/code/auth?type=2&param=123");
+</script>
+
+<!-- 妯℃澘寮曟搸 -->
+<!-- 妯℃澘1 -->
+<script type="text/template" id="templatePreview1" class="template-barcode">
+    {{#each data}}
+    <table class="contain" width="400px" style="overflow: hidden;font-size: xx-small;table-layout: fixed;">
+        <tr style="height: 150px; border: none">
+            <td class="barcode" colspan="12" align="center" scope="col" style=" border: none">
+                <img class="template-code template-barcode" src="{{this.barcodeUrl}}" width="90%;">
+                <div style="letter-spacing: 2px;margin-top: 1px; text-align: center;">
+                    <span>{{this.item}}</span>
+                </div>
+            </td>
+        </tr>
+    </table>
+    {{/each}}
+</script>
+<!-- 妯℃澘2 -->
+<script type="text/template" id="templatePreview2" class="template-barcode">
+    {{#each data}}
+    <table class="contain" width="400px" style="overflow: hidden;table-layout: fixed; border: none; font-size: xx-large">
+        <tr style="height: 150px">
+            <td class="barcode" colspan="9" align="center" scope="col" style="border: none">
+                <img class="template-code template-barcode" src="{{this.barcodeUrl}}" width="90%;"> 鈫�
+                <div style="letter-spacing: 2px;margin-top: 1px; text-align: center; font-size: xx-small">
+                    <span>{{this.item}}</span>
+                </div>
+            </td>
+        </tr>
+    </table>
+    {{/each}}
+</script>
 </body>
 </html>
 

--
Gitblit v1.9.1