From 3d00d9dd9b444c152b08b48fde0b4dd6a0dfa4b2 Mon Sep 17 00:00:00 2001
From: lsh <lsh@163.com>
Date: 星期三, 22 十月 2025 10:32:57 +0800
Subject: [PATCH] *
---
 src/main/webapp/views/report/locDetl.html |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/src/main/webapp/views/report/locDetl.html b/src/main/webapp/views/report/locDetl.html
index 0b77d23..ed829a7 100644
--- a/src/main/webapp/views/report/locDetl.html
+++ b/src/main/webapp/views/report/locDetl.html
@@ -43,7 +43,12 @@
         var $ = layui.jquery;
         var form = layui.form;
 
-        $('#locNo').val(parent.locNo);
+        var tmp = getQueryVariable("locNo")
+        if (tmp == false) {
+            $('#locNo').val(parent.locNo);
+        }else {
+            $('#locNo').val(tmp);
+        }
 
         // 鏁版嵁娓叉煋
         tableIns = table.render({
@@ -51,9 +56,9 @@
             headers: {token: localStorage.getItem('token')},
             url: baseUrl+'/locDetl/list/auth',
             page: true,
-            limit: 10,
+            limit: 20,
             skin: 'line',
-            where: {loc_no: parent.locNo},
+            where: {loc_no: $('#locNo').val()},
             even: true,
             cellMinWidth: 50,
             cols: [getCol()],
--
Gitblit v1.9.1