From 82c36e2b434fa7a1c16b0448aa4cf1483107f79c Mon Sep 17 00:00:00 2001
From: Junjie <DELL@qq.com>
Date: 星期二, 02 十二月 2025 16:28:20 +0800
Subject: [PATCH] #
---
src/main/webapp/views/watch/console.html | 12 ++++--------
1 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/src/main/webapp/views/watch/console.html b/src/main/webapp/views/watch/console.html
index ae8659c..37f7242 100644
--- a/src/main/webapp/views/watch/console.html
+++ b/src/main/webapp/views/watch/console.html
@@ -512,19 +512,15 @@
getLocMastData() {
let that = this;
$.ajax({
- url: baseUrl + "/locMast/list/auth",
+ url: baseUrl + "/console/map/locList",
headers: {
'token': localStorage.getItem('token')
},
method: "get",
- data: {
- curr: 1,
- limit: 10000,
- lev1: this.currentLev
- },
+ data: {},
success: (res) => {
if (res.code === 200) {
- that.locMastData = res.data.records;
+ that.locMastData = res.data;
}
}
})
@@ -545,7 +541,7 @@
}
return false;
});
-
+
if (locInfo && locInfo.row1 && locInfo.bay1) {
return locInfo.row1 + '-' + locInfo.bay1;
}
--
Gitblit v1.9.1