From 241d327e57cbfe504aa806c61aa22e6205706098 Mon Sep 17 00:00:00 2001
From: sgj <1442489573@qq.com>
Date: 星期六, 11 四月 2026 16:59:46 +0800
Subject: [PATCH] 引用纠正
---
fzzy-igdss-web/src/main/resources/static/group/gis_modeling.js | 20 ++++++++------------
1 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/fzzy-igdss-web/src/main/resources/static/group/gis_modeling.js b/fzzy-igdss-web/src/main/resources/static/group/gis_modeling.js
index 80ed304..a026da2 100644
--- a/fzzy-igdss-web/src/main/resources/static/group/gis_modeling.js
+++ b/fzzy-igdss-web/src/main/resources/static/group/gis_modeling.js
@@ -3,7 +3,7 @@
var type = "0";
var county = "all";
var breedChart = null;
-var foodNumPerColors = ["0, 228, 250", "22, 226, 173", "255, 181, 23", "238, 60, 72", "135, 103, 255", "41, 122, 255", "238, 60, 144", "255, 99, 132", "75, 192, 192", "153, 102, 255", "255, 159, 64", "199, 199, 199", "83, 102, 255", "255, 193, 7"];
+var foodNumPerColors = ["0, 255, 255", "50, 255, 50", "255, 215, 0", "255, 69, 0", "0, 191, 255", "30, 144, 255", "255, 20, 147", "255, 105, 180", "0, 255, 127", "255, 165, 0", "255, 218, 185", "255, 255, 0", "0, 250, 155", "255, 99, 71"];
//var switch2AreaNode2;
@@ -81,10 +81,6 @@
});
function renderDeptMess(deptId) {
- //浠巇eptList涓壘鍒癲eptid
- console.log("鍒囨崲搴撳尯deptid")
- console.log(deptId)
- console.log(deptList)
for (let i = 0; i < deptList.length; i++) {
if( deptId == deptList[i].deptId){
let htmlMess=`
@@ -127,9 +123,6 @@
function renderDepotMess(depotId) {
- console.log("鍒囨崲浠撳簱depotId")
- console.log(depotId)
- console.log(depotList)
for (let i = 0; i < depotList.length; i++) {
if( depotId == depotList[i].depotId){
@@ -220,24 +213,27 @@
var childsItem = [];
var areas = [];
for (var i = 0; i < areaList.length; i++) {
- html += "<div style=\"width: 305px; overflow: hidden\">" +
+ html += "<div style=\"width: 340px; overflow: hidden\">" +
"<div id='prov' class=\"sup-menu-group menu-group\">" +
"<div class=\"sup-menu-title\">" +
"<i class=\"i-icon fl\"><img src=\"/img/web/group/icon-sj.png\"/></i>" +
"<a href=\"###\" onclick=\"clickDept('" + areaList[i].code + "')\">" +
- "<span class=\"i-icon32 fl\"><img src=\"/img/web/group/c-i2.png\"/></span>" +
+ // "<span class=\"i-icon32 fl\"><img src=\"/img/web/group/c-i2.png\"/></span>" +
(areaList[i].name ? areaList[i].name : "") +
"</a>" +
"</div>";
if (areaList[i].children && areaList[i].children.length > 0) {
childs = areaList[i].children;
for (var j = 0; j < childs.length; j++) {
- html += "<ul class=\"sup-menu-ul menu-h\">" +
+ //榛樿鍏抽棴搴撳尯
+ // html += "<ul class=\"sup-menu-ul menu-h\">" +
+ //榛樿灞曞紑搴撳尯
+ html += "<ul class=\"sup-menu-ul \">" +
"<li>" +
"<div class=\"sup-menu-h\">" +
"<i class=\"i-icon fl\"><img src=\"/img/web/group/icon-sj.png\"/></i>" +
"<a href=\"###\" onclick=\"clickDept('" + childs[j].code + "')\">" +
- "<span class=\"i-icon32 fl\"><img src=\"/img/web/group/c-i2.png\"/></span>" +
+ // "<span class=\"i-icon32 fl\"><img src=\"/img/web/group/c-i2.png\"/></span>" +
(childs[j].name ? childs[j].name : "") +
"</a>" +
"</div>";
--
Gitblit v1.9.3