From 5d334b60d958c9ea3ba8411df901d9c28e81c5f7 Mon Sep 17 00:00:00 2001
From: wxw <Administrator@DESKTOP-5BIMHQ3>
Date: 星期五, 31 十月 2025 16:05:05 +0800
Subject: [PATCH] 修改问题

---
 HTML/views/ASNSetting/LabelMerge.html |  149 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 149 insertions(+), 0 deletions(-)

diff --git a/HTML/views/ASNSetting/LabelMerge.html b/HTML/views/ASNSetting/LabelMerge.html
new file mode 100644
index 0000000..e88e3e6
--- /dev/null
+++ b/HTML/views/ASNSetting/LabelMerge.html
@@ -0,0 +1,149 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+    <meta charset="utf-8">
+    <title>鏍囩鎵撳嵃</title>
+    <meta name="renderer" content="webkit">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+    <meta name="viewport"
+        content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
+    <link rel="stylesheet" href="../../layuiadmin/layui/css/layui.css" media="all">
+    <link rel="stylesheet" href="../../layuiadmin/style/admin.css" media="all">
+    <style media="print">
+        @page {
+            size: auto;
+            margin: 0 0 0 20px;
+        }
+
+        .layui-input {
+            padding-left: 0px;
+        }
+
+        .layui-form-item {
+            margin-bottom: 2px;
+        }
+    </style>
+    <style>
+        .layui-form-item .layui-input-inline {
+            display: block;
+            float: none;
+            left: -3px;
+            width: auto;
+            margin: 0 0 10px 90px;
+        }
+
+        .hideCls {
+            display: none;
+        }
+
+        .showCls {
+            display: block;
+        }
+
+        .font-size12 {
+            font-size: 14px;
+        }
+
+        .font-size10 {
+            font-size: 10px;
+        }
+    </style>
+</head>
+
+<body>
+    <div style="width:100%;">
+        <div class="layui-form" style="padding: 30px 15px 0px; " id="button">
+            <div class="layui-form-item" style="margin-bottom:0px;">
+                <label class="layui-form-label" style="width: 60px;">绠辩爜1</label>
+                <div class="layui-input-inline">
+                    <input type="text" id="BoxCode" name="BoxCode" placeholder="绠辩爜1" autocomplete="off"
+                        class="layui-input">
+                </div>
+            </div>
+            <div class="layui-form-item" style="margin-bottom:0px;">
+                <label class="layui-form-label" style="width: 60px;">绠辩爜2</label>
+                <div class="layui-input-inline">
+                    <input type="text" id="BoxCode2" name="BoxCode2" placeholder="绠辩爜2" autocomplete="off"
+                        class="layui-input">
+                </div>
+            </div>
+            <div class="layui-form-item" style="margin-bottom:0px; text-align: center;">
+
+                <button id="btnMerge" class="layui-btn layui-btn-edit" lay-event="Add"><i
+                        class="layui-icon">&#xe654;</i>鍚堝苟</button>
+            </div>
+        </div>
+    </div>
+    <script src="../../layuiadmin/layui/layui.js"></script>
+    <script src="../../js/public.js"></script>
+    <script src="../../js/jquery-3.5.1.min.js"></script>
+    <script src="../../js/jquery.cookie.js"></script>
+    <script>
+        var boxcode = "";
+        layui.config({
+            base: '../../layuiadmin/' //闈欐�佽祫婧愭墍鍦ㄨ矾寰�
+        }).extend({
+            index: 'lib/index' //涓诲叆鍙fā鍧�
+        }).use(['index', 'form', 'layer', 'laydate'], function () {
+
+            var $ = layui.$,
+                form = layui.form,
+                layer = layui.layer;
+            var laydate = layui.laydate;
+            var indes = layer.index;
+
+            var xun = 0;
+
+            $('#btnMerge').on('click', function () {
+                if ($("#BoxCode").val() ==''|| $("#BoxCode").val() == undefined) {
+                    layer.msg("璇疯緭鍏ョ鐮�1锛�", {
+                        icon: 2,
+                        time: 2000 //2绉掑叧闂紙濡傛灉涓嶉厤缃紝榛樿鏄�3绉掞級
+                    });
+                    return -1;
+                }
+                if ($("#BoxCode2").val()=='' || $("#BoxCode2").val() == undefined) {
+                    layer.msg("璇疯緭鍏ョ鐮�2锛�", {
+                        icon: 2,
+                        time: 2000 //2绉掑叧闂紙濡傛灉涓嶉厤缃紝榛樿鏄�3绉掞級
+                    });
+                    return -1;
+                }
+                var param = {
+                    BoxNo: $("#BoxCode").val(),
+                    BoxNo2:$("#BoxCode2").val(),
+                };
+                synData(IP + "/BllAsn/MergeLableBox", param, 'post', function (res) {
+                    if (res.code == 0) { //鎴愬姛    
+                        layer.msg(res.msg, {
+                            icon: 1,
+                            time: 2000 //2绉掑叧闂紙濡傛灉涓嶉厤缃紝榛樿鏄�3绉掞級 
+                        }, function () {
+                            parent.location.reload();
+                            parent.layer.close(layer.index);
+                        });
+
+                    } else { //涓嶆垚鍔�
+                        layer.msg(res.msg, {
+                            icon: 2,
+                            time: 2500 //2绉掑叧闂紙濡傛灉涓嶉厤缃紝榛樿鏄�3绉掞級
+                        }, function () { });
+                    }
+                });
+            });
+
+            // 鑾峰彇浼犻�掑弬鏁�
+            function getQueryString(name) {
+                var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
+                var r = window.location.search.substr(1).match(reg);
+                if (r != null) return unescape(r[2]);
+                return null;
+            }
+        })
+
+    </script>
+
+</body>
+
+</html>
\ No newline at end of file

--
Gitblit v1.8.0