From f09d9da82fa9f4e8dc9081be3d415c8e1a5f2c92 Mon Sep 17 00:00:00 2001 From: Administrator <Administrator@DESKTOP-5BIMHQ3> Date: 星期四, 22 二月 2024 15:43:30 +0800 Subject: [PATCH] 库存总量和库存明细新增维护货主编码和货主名称字段;修改库存统计-库存总量分组方式 --- HTML/views/ASNSetting/LabelPrintSelect.html | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/HTML/views/ASNSetting/LabelPrintSelect.html b/HTML/views/ASNSetting/LabelPrintSelect.html index 8e9281d..b2efa30 100644 --- a/HTML/views/ASNSetting/LabelPrintSelect.html +++ b/HTML/views/ASNSetting/LabelPrintSelect.html @@ -32,7 +32,7 @@ <div class="layui-form-item"> <label class="layui-form-label">閲嶇疆鎵瑰彿</label> <div class="layui-input-block"> - <select name="reset" id="reset" lay-verify="required"> + <select name="reset" id="reset" lay-filter="reset" lay-verify="required"> <option value="1">鏄�</option> <option value="0">鍚�</option> </select> @@ -116,7 +116,16 @@ }); var id = getQueryString('Id'); - + var asnType = getQueryString('Type'); + console.log(asnType); + console.log(asnType == 4); + if(asnType == 4){ + + $("#reset option[value='0']").attr("selected","selected"); //鎬у埆 + $("#reset").attr("disabled","disabled"); + form.render('select'); + } + var param = { id: parseInt(id), }; -- Gitblit v1.8.0