From 864b0203990d308294e0d8a9331158374822dbba Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期四, 12 六月 2025 10:14:32 +0800
Subject: [PATCH] 修改订单任务切换功能bug

---
 河北望美项目/MES_11/src/main/java/com/northglass/service/cutmanage/CutManageService.java |   12 
 /dev/null                                                                          |  449 ----------------------------------------
 河北望美项目/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks2.jsp                 |  116 ++++++++-
 河北望美项目/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gettask.jsp                  |    3 
 河北望美项目/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks.jsp                  |    5 
 河北望美项目/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gotasks.jsp        |   10 
 河北望美项目/MES_11/target/maven-archiver/pom.properties                                 |    2 
 河北望美项目/MES_11/target/classes/application.properties                                |    2 
 河北望美项目/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gettask.jsp        |    3 
 河北望美项目/MES_11/src/main/resources/application.properties                            |    2 
 10 files changed, 121 insertions(+), 483 deletions(-)

diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/java/com/northglass/service/cutmanage/CutManageService.java" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/java/com/northglass/service/cutmanage/CutManageService.java"
index 9ceef27..d5ea912 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/java/com/northglass/service/cutmanage/CutManageService.java"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/java/com/northglass/service/cutmanage/CutManageService.java"
@@ -556,8 +556,9 @@
 	//缁撴潫浠诲姟
 	public String delecttask(Long id,Long line) {
 		RawFile rawFile=rawFileDao.findAcceptedByGroup2(id);
+		System.out.println(1111);
 		int lipiancount =galssTaskDao.finlipian2(rawFile.getFileName());
-		
+		System.out.println(2222);
 		int slicecount;
 		if (line==1) {
 			 slicecount=horizontalDao.findfall3(rawFile.getFileName());
@@ -857,7 +858,14 @@
 			html.append("<td>").append(patternTask.getRawThickness()).append("</td>");
 			html.append("<td>").append(patternTask.getColor()).append("</td>");
 			html.append("<td>").append(patternTask.getContent()).append("</td>");
-			html.append("<td><button style='background-color: #5CADFE' class='btn btn-large btn-success' onclick='updatetask(").append(patternTask.getId()).append(")'>淇敼鏁伴噺</button>");
+			html.append("<td><button style='background-color: #5CADFE' class='btn btn-large btn-success' onclick='updatetask(")
+			.append(patternTask.getId()).append(",")
+			.append(patternTask.getRawWidth()).append(",")
+			.append(patternTask.getRawHeight()).append(",")
+			.append(patternTask.getRawThickness()).append(",")
+			.append("\""+patternTask.getColor()+"\"").append(",")
+			.append(patternTask.getContent())
+			.append(")'>鎻愪氦浜ч噺</button>");
 			html.append("</tr>");
 		}
 			
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/resources/application.properties" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/resources/application.properties"
index 1693bf5..5b4b7ca 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/resources/application.properties"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/resources/application.properties"
@@ -13,7 +13,7 @@
 #jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE
 #jdbc.username=gmms2
 #jdbc.password=gmms2
-#jdbc.url=jdbc:mariadb:// localhost:3307 10.12.0.100/gmms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
+#jdbc.url=jdbc:mariadb:// localhost 10.12.0.100/gmms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
 #mysql database setting  
 jdbc.driver=org.mariadb.jdbc.Driver
 jdbc.url=jdbc:mariadb://localhost:3307/gmms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gettask.jsp" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gettask.jsp"
index bf8fc71..9cc74a9 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gettask.jsp"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gettask.jsp"
@@ -137,7 +137,8 @@
 				<button id="btnStatcionMode" type='button' class='btn btn-primary' onclick='onChangeMode(${groups})' >鍗曞伐浣�</button>
 				<small style='color:red'>锛堝崟鍑绘寜閽垏鎹㈠伐浣嶆ā寮忥級</small>
 				&nbsp;
-			${app}
+			<%-- ${app} --%>
+			<button type='button' onclick='task()' class='btn btn-primary' id='app'>鎵嬪姩浠诲姟</button>
 			<button type="button"
 				onclick="{location.href='${ctx }/cutmanage/gettask/${line}'}"
 				class="btn btn-primary" id="app">棰嗗彇 ${line} 鍙风嚎浠诲姟</button>
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks.jsp" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks.jsp"
index 222d7a2..490c9f5 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks.jsp"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks.jsp"
@@ -87,14 +87,11 @@
 		var groups = document.getElementsByName('groups')[0].value;
 		var state = document.getElementsByName('state')[0].value;
 		var fileName = document.getElementById("fileName").innerHTML;
-		if(state=="0"&&fileName.includes('P')){
+		if(state=="0"){
 			window.location.href = "${ctx}/cutmanage/gettasks/" + groups;
 		}
 		if(state=="1"){
 			alert("褰撳墠宸插瓨鍦ㄤ袱涓换鍔�")
-		}
-		if(!fileName.includes('P')){
-			alert("琛ョ墖/鎵嬪姩宸ョ▼璇风粨鏉熶换鍔″啀棰嗗彇")
 		}
 	}
 	
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks2.jsp" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks2.jsp"
index ac6c040..1b91268 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks2.jsp"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/src/main/webapp/WEB-INF/views/cutmanage/gotasks2.jsp"
@@ -13,44 +13,54 @@
 
 	//鍋滄椤甸潰鑷姩鍒锋柊
 
-	function delecttask(id) {
+	function delecttask(groups,id) {
 		//disableAutoRefresh();
 		$.ajax({
 			async : false,
 
 			type : "GET",
 
-			url : "${ctx}/cutmanage/delecttask/" + id,
+			url : "${ctx}/cutmanage/delecttask/" + id +"/" +groups,
 
 			dataType : "text",
 
 			success : function(data) {
-				window.location.href = "${ctx}/cutmanage/gettask/" + id;
+				window.location.href = "${ctx}/cutmanage/gettask/" + groups;
 			}
 		});
 		alert(id);
 	}
 
-	function delecttask1(id) {
+	function delecttask1(groups,id) {
 		//disableAutoRefresh();disableAutoRefresh();
 		$.ajax({
 			async : false,
 
 			type : "GET",
 
-			url : "${ctx}/cutmanage/delecttask1/" + id,
+			url : "${ctx}/cutmanage/delecttask/" + id +"/" +groups,
 
 			dataType : "text",
 
 			success : function(data) {
-				window.location.href = "${ctx}/cutmanage/gettask/" + id;
+				window.location.href = "${ctx}/cutmanage/gettask/" + groups;
 			}
 		});
 	}
 
-	function updatetask(id) {
+	function updatetask(id,width,height,thinkness,color,count) {
 		$("#add-info1").modal('show');
+		document.getElementById("width_t").value=width;
+		document.getElementById("length_t").value=height;
+		document.getElementById("thinkness_t").value=thinkness;
+		document.getElementById("color_t").value=color;
+		
 		rankId=id;
+		width_T=width;
+		height_T=height;
+		thinkness_T=thinkness;
+		color_T=color;
+		count_T=count;
 	}
 
 	function updatetask1(id) {
@@ -117,9 +127,22 @@
 	//淇敼鏁伴噺
 	function addrack1(){
 		
-     	var pieces=document.getElementById("pieces7").value;
-     	if(pieces==null||pieces==""){
+     	var width=document.getElementById("width_t").value;
+     	var length=document.getElementById("length_t").value;
+     	var thinkness=document.getElementById("thinkness_t").value;
+     	var color=document.getElementById("color_t").value;
+     	var count=document.getElementById("count_t").value;
+     	
+     	if(count==null||count==""){
      		alert("璇疯緭鍏ユ暟閲� ");
+     	}else if(width==null||width==""){
+     		alert("璇疯緭鍏ュ ");
+     	}else if(length==null||length==""){
+     		alert("璇疯緭鍏ラ暱 ");
+     	}else if(thinkness==null||thinkness==""){
+     		alert("璇疯緭鍏ュ帤 ");
+     	}else if(color==null||color==""){
+     		alert("璇疯緭鍏ヨ啘绯� ");
      	}else{
             $.ajax({
           		cache:false,
@@ -128,7 +151,11 @@
         		 	url:"${ctx}/cutmanage/updatepieces",
         		 	data:{
         		 		"rankid":rankId,
-        		 		"pieces":pieces
+        		 		"width":width,
+        		 		"height":length,
+        		 		"thinkness":thinkness,
+        		 		"color":color,
+        		 		"count":count
         		 	},success:function(data){ 
           		 		window.location.href="${ctx}/cutmanage/gettask/4";
           			}
@@ -144,6 +171,13 @@
 	var group = ${groups};
 	var rTime = 5000;
 	var rankId=0;
+	
+	
+	var width_T=0;
+	var height_T=0;
+	var thinkness_T=0;
+	var color_T=0;
+	var count_T=0;
 </script>
 <style>
 .box table tr th, .box table tr td {
@@ -246,7 +280,6 @@
 							<th>鎬绘暟閲�</th>
 							<th>瀹屾垚闈㈢Н(mm)</th>
 							<th>鎿嶄綔</th>
-
 						</tr>
 					</thead>
 					<tbody>${pattertaskHtml}
@@ -264,7 +297,7 @@
 							<th>楂樺害</th>
 							<th>鍘氬害</th>
 							<th>棰滆壊</th>
-							<th>鐘舵��</th>
+							<th>鏁伴噺</th>
 							<th>鎿嶄綔</th>
 
 						</tr>
@@ -278,30 +311,77 @@
 			<div class="modal fade" id="add-info1" tabindex="-1" role="dialog"
 				aria-labelledby="myModalLabel" aria-hidden="true">
 				<div class="modal-dialog">
-					<div class="modal-content" style="height: 500px;">
+					<div class="modal-content" style="height: 350px;">
 						<div class="modal-header">
 							<button type="button" class="close" data-dismiss="modal"
 								aria-hidden="true" data-backdrop="static">&times;</button>
 							<h3 class="modal-title" id="myModalLabel"
-								style="font-weight: bolder;">淇敼鏁伴噺</h3>
+								style="font-weight: bolder;">鎻愪氦璁㈠崟浜ч噺</h3>
 						</div>
 						
 							<input type="hidden" id="addRawPackage" name="Ids">
 							<div class="modal-body">
 								
-								<div id="linheight" class="form-group">
+								
+								<div id="width" class="form-group">
+									
+									<h4>
+										<label class="col-sm-3 control-label no-padding-right"
+											style="font-weight: bolder;">闀� </label>
+									</h4>
+									<div class="col-sm-9">
+										<input type="number" required="required" max="9000" min="0" class=" sortNumber form-control"
+											value="" name="width_t" id="width_t"
+											onclick="this.value=''" style="width: 250px; font-size: 20px" />
+									</div>
+								</div>
+								<div id="length" class="form-group">
+									
+									<h4>
+										<label class="col-sm-3 control-label no-padding-right"
+											style="font-weight: bolder;">瀹� </label>
+									</h4>
+									<div class="col-sm-9">
+										<input type="number" required="required" max="9000" min="0" class=" sortNumber form-control"
+											value="" name="length_t" id="length_t"
+											onclick="this.value=''" style="width: 250px; font-size: 20px" />
+									</div>
+								</div>
+								<div id="thinkness" class="form-group">
+									
+									<h4>
+										<label class="col-sm-3 control-label no-padding-right"
+											style="font-weight: bolder;">鍘� </label>
+									</h4>
+									<div class="col-sm-9">
+										<input type="number" required="required" max="9000" min="0" class=" sortNumber form-control"
+											value="" name="thinkness_t" id="thinkness_t"
+											onclick="this.value=''" style="width: 250px; font-size: 20px" />
+									</div>
+								</div>
+								<div id="color" class="form-group">
+									
+									<h4>
+										<label class="col-sm-3 control-label no-padding-right"
+											style="font-weight: bolder;">鑶滅郴 </label>
+									</h4>
+									<div class="col-sm-9">
+										<input type="text" required="required" class=" sortNumber form-control"
+											value="" name="color_t" id="color_t"
+											onclick="this.value=''" style="width: 250px; font-size: 20px" />
+									</div>
+								</div>
+								<div id="count" class="form-group">
 									<h4>
 										<label class="col-sm-3 control-label no-padding-right"
 											style="font-weight: bolder;">鏁伴噺 </label>
 									</h4>
-
 									<div class="col-sm-9">
 										<input type="number" required="required" max="9000" min="0" class=" sortNumber form-control"
-											value="" name="pieces2" id="pieces7"
+											value="" name="count_t" id="count_t"
 											onclick="this.value=''" style="width: 250px; font-size: 20px" />
 									</div>
 								</div>
-
 							</div>
 							<div class="modal-footer" >
 								<button type="button" class="btn btn-default btn-lg"
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/classes/application.properties" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/classes/application.properties"
index 1693bf5..5b4b7ca 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/classes/application.properties"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/classes/application.properties"
@@ -13,7 +13,7 @@
 #jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE
 #jdbc.username=gmms2
 #jdbc.password=gmms2
-#jdbc.url=jdbc:mariadb:// localhost:3307 10.12.0.100/gmms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
+#jdbc.url=jdbc:mariadb:// localhost 10.12.0.100/gmms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
 #mysql database setting  
 jdbc.driver=org.mariadb.jdbc.Driver
 jdbc.url=jdbc:mariadb://localhost:3307/gmms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gettask.jsp" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gettask.jsp"
index bf8fc71..9cc74a9 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gettask.jsp"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gettask.jsp"
@@ -137,7 +137,8 @@
 				<button id="btnStatcionMode" type='button' class='btn btn-primary' onclick='onChangeMode(${groups})' >鍗曞伐浣�</button>
 				<small style='color:red'>锛堝崟鍑绘寜閽垏鎹㈠伐浣嶆ā寮忥級</small>
 				&nbsp;
-			${app}
+			<%-- ${app} --%>
+			<button type='button' onclick='task()' class='btn btn-primary' id='app'>鎵嬪姩浠诲姟</button>
 			<button type="button"
 				onclick="{location.href='${ctx }/cutmanage/gettask/${line}'}"
 				class="btn btn-primary" id="app">棰嗗彇 ${line} 鍙风嚎浠诲姟</button>
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gotasks.jsp" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gotasks.jsp"
index 7b75cc5..490c9f5 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gotasks.jsp"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/gmms2-1.0-SNAPSHOT/WEB-INF/views/cutmanage/gotasks.jsp"
@@ -80,18 +80,18 @@
 	}
 	
 	function collectingTasks() {
-		stopRefresh();
+		if(typeof stopRefresh === "function"){
+			stopRefresh();
+		}
+		
 		var groups = document.getElementsByName('groups')[0].value;
 		var state = document.getElementsByName('state')[0].value;
 		var fileName = document.getElementById("fileName").innerHTML;
-		if(state=="0"&&fileName.includes('P')){
+		if(state=="0"){
 			window.location.href = "${ctx}/cutmanage/gettasks/" + groups;
 		}
 		if(state=="1"){
 			alert("褰撳墠宸插瓨鍦ㄤ袱涓换鍔�")
-		}
-		if(!fileName.includes('P')){
-			alert("琛ョ墖/鎵嬪姩宸ョ▼璇风粨鏉熶换鍔″啀棰嗗彇")
 		}
 	}
 	
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF"
deleted file mode 100644
index 5befc17..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF"
+++ /dev/null
@@ -1,5 +0,0 @@
-Manifest-Version: 1.0
-Built-By: aaa
-Build-Jdk: 1.8.0_121
-Created-By: Maven Integration for Eclipse
-
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/maven/com.northglass/gmms2/pom.properties" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/maven/com.northglass/gmms2/pom.properties"
deleted file mode 100644
index aa2e909..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/maven/com.northglass/gmms2/pom.properties"
+++ /dev/null
@@ -1,7 +0,0 @@
-#Generated by Maven Integration for Eclipse
-#Wed Jun 11 08:19:29 CST 2025
-version=1.0-SNAPSHOT
-groupId=com.northglass
-m2e.projectName=MES_11
-m2e.projectLocation=D\:\\Documents\\MES_Projects\\\u6CB3\u5317\u671B\u7F8E\u9879\u76EE\\MES_11
-artifactId=gmms2
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/maven/com.northglass/gmms2/pom.xml" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/maven/com.northglass/gmms2/pom.xml"
deleted file mode 100644
index 2b1c223..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/m2e-wtp/web-resources/META-INF/maven/com.northglass/gmms2/pom.xml"
+++ /dev/null
@@ -1,694 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<groupId>com.northglass</groupId>
-	<artifactId>gmms2</artifactId>
-	<version>1.0-SNAPSHOT</version>
-	<packaging>war</packaging>
-	<name>Springside :: Example :: QuickStart</name>
-
-	<properties>
-		<!-- 涓昏渚濊禆搴撶殑鐗堟湰瀹氫箟 -->
-		<springside.version>4.3.0-SNAPSHOT</springside.version>
-		<spring.version>4.0.5.RELEASE</spring.version>
-		<hibernate.version>4.3.5.Final</hibernate.version>
-		<spring-data-jpa.version>1.6.0.RELEASE</spring-data-jpa.version>
-		<tomcat-jdbc.version>7.0.53</tomcat-jdbc.version>
-		<sitemesh.version>2.4.2</sitemesh.version>
-		<shiro.version>1.2.3</shiro.version>
-		<hibernate-validator.version>5.0.3.Final</hibernate-validator.version>
-		<jackson.version>2.4.0</jackson.version>
-		<aspectj.version>1.7.4</aspectj.version>
-		<slf4j.version>1.7.7</slf4j.version>
-		<logback.version>1.1.2</logback.version>
-		<commons-lang3.version>3.3.2</commons-lang3.version>
-		<guava.version>17.0</guava.version>
-		<junit.version>4.11</junit.version>
-		<assertj.version>1.6.1</assertj.version>
-		<mockito.version>1.9.5</mockito.version>
-		<selenium.version>2.42.2</selenium.version>
-		<jetty.version>7.6.15.v20140411</jetty.version>
-		<h2.version>1.3.176</h2.version>
-	
-		<!-- Plugin鐨勫睘鎬у畾涔� -->
-		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-		<java.version>1.7</java.version>
-	
-		<!-- 椤圭洰灞炴�� -->
-		<!-- 
-		<jdbc.driver.groupId>com.h2database</jdbc.driver.groupId>
-		<jdbc.driver.artifactId>h2</jdbc.driver.artifactId>
-		<jdbc.driver.version>${h2.version}</jdbc.driver.version>
-		 -->
-		
-		<jdbc.driver.groupId>org.mariadb.jdbc</jdbc.driver.groupId>
-		<jdbc.driver.artifactId>mariadb-java-client</jdbc.driver.artifactId>
-		<jdbc.driver.version>1.1.7</jdbc.driver.version>
-		
-	</properties>
-
-	<prerequisites>
-  		<maven>3.0.0</maven>
-	</prerequisites>
-
-	<!-- 璁惧畾鎻掍欢浠撳簱, 濡傛湁Nexus绉佹湇, 鍙栨秷娉ㄩ噴骞舵寚鍚戞纭殑鏈嶅姟鍣ㄥ湴鍧�. 
-	<pluginRepositories> 
-		<pluginRepository> 
-			<id>nexus</id>
-			<name>Team Nexus Repository</name>
-			<url>http://localhost:8081/nexus/content/groups/public</url> 
-			<snapshots>
-				<enabled>false</enabled>
-			</snapshots>
-		</pluginRepository>
-	</pluginRepositories>
-	-->
-
-	<!-- 渚濊禆椤瑰畾涔� -->
-	<dependencies>
-	    <dependency>
-			<groupId>northglass</groupId>
-			<artifactId>NG_MesCentral</artifactId>
-			<version>0.0.1</version>
-			<scope>system</scope>
-			<systemPath>${basedir}/libs/NG_MesCentral.jar</systemPath>
-		</dependency>
-		<!-- SPRINGSIDE -->
-		<dependency>
-			<groupId>io.springside</groupId>
-			<artifactId>springside-core</artifactId>
-			<version>${springside.version}</version>
-		</dependency>
-		
-		<dependency>
-    	 	<groupId>org.json</groupId>
-     		<artifactId>json</artifactId>
-     		<version>20080701</version>
-    	</dependency>
-
-		<!-- PERSISTENCE begin -->
-		<!-- hibernate -->
-		<dependency>
-			<groupId>org.hibernate</groupId>
-			<artifactId>hibernate-entitymanager</artifactId>
-			<version>${hibernate.version}</version>
-		</dependency>
-
-		<!-- spring data access -->
-		<dependency>
-			<groupId>org.springframework.data</groupId>
-			<artifactId>spring-data-jpa</artifactId>
-			<version>${spring-data-jpa.version}</version>
-		</dependency>
-
-		<!-- spring aop -->
-		<dependency>
-			<groupId>org.aspectj</groupId>
-			<artifactId>aspectjrt</artifactId>
-			<version>${aspectj.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.aspectj</groupId>
-			<artifactId>aspectjweaver</artifactId>
-			<version>${aspectj.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-
-		<!-- connection pool -->
-		<dependency>
-			<groupId>org.apache.tomcat</groupId>
-			<artifactId>tomcat-jdbc</artifactId>
-			<version>${tomcat-jdbc.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-
-		<!-- jdbc driver -->
-		<dependency>
-			<groupId>${jdbc.driver.groupId}</groupId>
-			<artifactId>${jdbc.driver.artifactId}</artifactId>
-			<version>${jdbc.driver.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-		<!-- PERSISTENCE end -->
-
-		<!-- WEB begin -->
-		<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-webmvc</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>opensymphony</groupId>
-			<artifactId>sitemesh</artifactId>
-			<version>${sitemesh.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-
-   <dependency>
-    	<groupId>mysql</groupId>
-    	<artifactId>mysql-connector-java</artifactId>
-    	<version>5.1.47</version>
-    </dependency>
-
-<dependency>
-          <groupId>com.alibaba</groupId>
-          <artifactId>druid</artifactId>
-          <version>1.1.12</version>
-    </dependency>
-
-
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>jstl</artifactId>
-			<version>1.2</version>
-		</dependency>
-
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>javax.servlet-api</artifactId>
-			<version>3.0.1</version>
-			<scope>provided</scope>
-		</dependency>
-		<!-- WEB end -->
-
-		<!-- Excel library start -->
-        <dependency>
-            <groupId>org.apache.poi</groupId>
-            <artifactId>poi</artifactId>
-            <version>3.9</version>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.poi</groupId>
-            <artifactId>poi-ooxml</artifactId>
-            <version>3.9</version>
-        </dependency>
-        <!-- Excel library end -->
-		
-		<dependency>
-        	<groupId>org.apache.struts</groupId>
-        	<artifactId>struts2-core</artifactId>
-        	<version>2.3.15.2</version>
-        </dependency>
-		
-		<!-- SECURITY begin -->
-		<dependency>
-			<groupId>org.apache.shiro</groupId>
-			<artifactId>shiro-spring</artifactId>
-			<version>${shiro.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.shiro</groupId>
-			<artifactId>shiro-ehcache</artifactId>
-			<version>${shiro.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-codec</groupId>
-			<artifactId>commons-codec</artifactId>
-			<version>1.9</version>
-		</dependency>
-		<!-- SECURITY end -->
-
-		<!-- JSR303 BeanValidator -->
-		<dependency>
-			<groupId>org.hibernate</groupId>
-			<artifactId>hibernate-validator</artifactId>
-			<version>${hibernate-validator.version}</version>
-		</dependency>
-
-		<!-- JSON begin -->
-		<dependency>
-			<groupId>com.fasterxml.jackson.core</groupId>
-			<artifactId>jackson-databind</artifactId>
-			<version>${jackson.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>com.fasterxml.jackson.module</groupId>
-			<artifactId>jackson-module-jaxb-annotations</artifactId>
-			<version>${jackson.version}</version>
-		</dependency>
-		<!-- JSON end -->
-
-		<!-- LOGGING begin -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-api</artifactId>
-			<version>${slf4j.version}</version>
-		</dependency>
-
-		<dependency>
-			<groupId>ch.qos.logback</groupId>
-			<artifactId>logback-classic</artifactId>
-			<version>${logback.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-
-		<!-- 浠g爜鐩存帴璋冪敤log4j浼氳妗ユ帴鍒皊lf4j -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>log4j-over-slf4j</artifactId>
-			<version>${slf4j.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-		<!-- 浠g爜鐩存帴璋冪敤common-logging浼氳妗ユ帴鍒皊lf4j -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>jcl-over-slf4j</artifactId>
-			<version>${slf4j.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-		<!-- 浠g爜鐩存帴璋冪敤java.util.logging浼氳妗ユ帴鍒皊lf4j -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>jul-to-slf4j</artifactId>
-			<version>${slf4j.version}</version>
-			<scope>runtime</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>com.googlecode.log4jdbc</groupId>
-			<artifactId>log4jdbc</artifactId>
-			<version>1.2</version>
-			<scope>runtime</scope>
-		</dependency>
-		<!-- LOGGING end -->
-
-		<!-- GENERAL UTILS begin -->
-		<dependency>
-			<groupId>org.apache.commons</groupId>
-			<artifactId>commons-lang3</artifactId>
-			<version>${commons-lang3.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>com.google.guava</groupId>
-			<artifactId>guava</artifactId>
-			<version>${guava.version}</version>
-		</dependency>
-		<!-- GENERAL UTILS end -->
-
-        <!-- net.sf.json begin -->
-        <dependency>    
-            <groupId>net.sf.json-lib</groupId>    
-            <artifactId>json-lib</artifactId>    
-            <version>2.4</version>    
-            <classifier>jdk15</classifier>
-            <exclusions>
-                <exclusion>
-                    <groupId>commons-logging</groupId>
-                    <artifactId>commons-logging</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <!-- net.sf.json end -->
-        
-        <!-- commons-io begin -->
-        <dependency>
-            <groupId>commons-io</groupId>
-            <artifactId>commons-io</artifactId>
-            <version>2.2</version>
-        </dependency>
-        <!-- commons-io end -->
-
-        <!-- websocket start -->
-        <dependency>
-            <groupId>javax</groupId>
-            <artifactId>javaee-api</artifactId>
-            <version>7.0</version>
-        </dependency>
-        <!-- websocket end -->
-
-		<!-- TEST begin -->
-		<dependency>
-			<groupId>io.springside</groupId>
-			<artifactId>springside-core</artifactId>
-			<version>${springside.version}</version>
-			<classifier>tests</classifier>
-		</dependency>
-
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>${junit.version}</version>
-			<scope>test</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>org.assertj</groupId>
-			<artifactId>assertj-core</artifactId>
-			<version>${assertj.version}</version>
-			<scope>test</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>org.mockito</groupId>
-			<artifactId>mockito-core</artifactId>
-			<version>${mockito.version}</version>
-			<scope>test</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-test</artifactId>
-			<scope>test</scope>
-		</dependency>
-
-		<!-- selenium 2.0 -->
-		<dependency>
-			<groupId>org.seleniumhq.selenium</groupId>
-			<artifactId>selenium-java</artifactId>
-			<version>${selenium.version}</version>
-			<scope>test</scope>
-			<exclusions>
-				<exclusion>
-					<groupId>org.seleniumhq.selenium</groupId>
-					<artifactId>selenium-htmlunit-driver</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>org.seleniumhq.selenium</groupId>
-					<artifactId>selenium-android-driver</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>org.seleniumhq.selenium</groupId>
-					<artifactId>selenium-iphone-driver</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>org.seleniumhq.selenium</groupId>
-					<artifactId>selenium-safari-driver</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>commons-logging</groupId>
-					<artifactId>commons-logging</artifactId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-		<dependency>
-			<groupId>org.seleniumhq.selenium</groupId>
-			<artifactId>selenium-remote-driver</artifactId>
-			<version>${selenium.version}</version>
-			<scope>test</scope>
-			<exclusions>
-				<exclusion>
-					<groupId>cglib</groupId>
-					<artifactId>cglib-nodep</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>commons-logging</groupId>
-					<artifactId>commons-logging</artifactId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-
-		<!-- h2  濡傛灉鐢熶骇鏁版嵁搴撲笉鏄疕2锛岃В寮�涓嬮潰鐨勬敞閲�
-		<dependency>
-			<groupId>com.h2database</groupId>
-			<artifactId>h2</artifactId>
-			<version>${h2.version}</version>
-		</dependency>
-		-->
-		
-		<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
-		<dependency>
-		    <groupId>org.mybatis</groupId>
-		    <artifactId>mybatis</artifactId>
-		    <version>3.2.8</version>
-		</dependency>
-
-		<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
-		<dependency>
-		    <groupId>org.mybatis</groupId>
-		    <artifactId>mybatis-spring</artifactId>
-		    <version>1.2.2</version>
-		</dependency>
-		
-		<!-- https://mvnrepository.com/artifact/tk.mybatis/mapper -->
-		<dependency>
-		    <groupId>tk.mybatis</groupId>
-		    <artifactId>mapper</artifactId>
-		    <version>3.1.2</version>
-		</dependency>
-
-		<!-- jetty -->
-		<dependency>
-			<groupId>org.eclipse.jetty.aggregate</groupId>
-			<artifactId>jetty-webapp</artifactId>
-			<version>${jetty.version}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.eclipse.jetty</groupId>
-			<artifactId>jetty-jsp</artifactId>
-			<version>${jetty.version}</version>
-			<scope>test</scope>
-		</dependency>
-		<!-- TEST end -->
-		<dependency>
-			<groupId>jbarcode.jbarcode</groupId>
-			<artifactId>jbarcode</artifactId>
-			<version>0.2.8</version>
-		</dependency>
-	</dependencies>
-
-	<dependencyManagement>
-		<dependencies>
-			<dependency>
-				<groupId>org.springframework</groupId>
-				<artifactId>spring-framework-bom</artifactId>
-				<version>${spring.version}</version>
-				<type>pom</type>
-				<scope>import</scope>
-			</dependency>
-			<dependency>
-				<groupId>net.sf.ehcache</groupId>
-				<artifactId>ehcache-core</artifactId>
-				<version>2.6.9</version>
-			</dependency>
-		</dependencies>
-	</dependencyManagement>
-	
-	<build>
-		
-		<plugins>
-			<!-- compiler鎻掍欢, 璁惧畾JDK鐗堟湰 -->
-		    <plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>3.1</version>
-				<configuration>
-					<source>${java.version}</source>
-					<target>${java.version}</target>
-					<showWarnings>true</showWarnings>
-				</configuration>
-			</plugin> 
-			<!-- war鎵撳寘鎻掍欢, 璁惧畾war鍖呭悕绉颁笉甯︾増鏈彿 -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-war-plugin</artifactId>
-				<version>2.4</version>
-				<configuration>
-					<warName>${project.artifactId}</warName>
-				</configuration>
-			</plugin>
-
-			<!-- test鎻掍欢, 浠呮祴璇曞悕绉颁负*Test鐨勭被,浣跨敤鏀寔鍒嗙粍娴嬭瘯鐨剆urefire-junit47 driver -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<version>2.16</version>
-				<configuration>
-					<includes>
-						<include>**/*Test.java</include>
-					</includes>
-					<argLine>-Xmx256M</argLine>
-				</configuration>
-				<dependencies>
-					<dependency>
-						<groupId>org.apache.maven.surefire</groupId>
-						<artifactId>surefire-junit47</artifactId>
-						<version>2.16</version>
-					</dependency>
-				</dependencies>
-			</plugin>
-
-			<!-- 澧炲姞functional test鐨凷ource鐩綍 -->
-			<!-- <plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>build-helper-maven-plugin</artifactId>
-				<version>1.8</version>
-				<executions>
-					<execution>
-						<id>add-functional-source</id>
-						<phase>generate-sources</phase>
-						<goals>
-							<goal>add-test-source</goal>
-						</goals>
-						<configuration>
-							<sources>
-								<source>src/test/functional</source>
-							</sources>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin> -->
-			
-
-			<!-- cobertura鎻掍欢, 璁剧疆涓嶉渶瑕佽绠楄鐩栫巼鐨勭被 -->
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>cobertura-maven-plugin</artifactId>
-				<version>2.6</version>
-				<configuration>
-					<instrumentation>
-						<excludes>
-							<exclude>**/entity/**/*.class</exclude>
-							<exclude>**/*Controller.class</exclude>
-						</excludes>
-					</instrumentation>
-				</configuration>
-			</plugin>
-
-			<!-- enforcer鎻掍欢, 閬垮厤琚緷璧栫殑渚濊禆寮曞叆杩囨湡鐨刯ar锟�? -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-enforcer-plugin</artifactId>
-				<version>1.3.1</version>
-				<executions>
-					<execution>
-						<id>enforce-banned-dependencies</id>
-						<goals>
-							<goal>enforce</goal>
-						</goals>
-						<configuration>
-							<rules>
-								<requireMavenVersion>
-									<version>3.0.3</version>
-								</requireMavenVersion>
-								<requireJavaVersion>
-									<version>1.6</version>
-								</requireJavaVersion>
-								<bannedDependencies>
-									<searchTransitive>true</searchTransitive>
-									<excludes>
-										<exclude>commons-logging</exclude>
-										<exclude>aspectj:aspectj*</exclude>
-										<exclude>org.springframework</exclude>
-									</excludes>
-									<includes>
-										<include>org.springframework:*:4.0.*</include>
-									</includes>
-								</bannedDependencies>
-							</rules>
-							<fail>true</fail>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-
-			<!-- jetty鎻掍欢, 璁惧畾context path涓巗pring profile -->
-			<plugin>
-				<groupId>org.mortbay.jetty</groupId>
-				<artifactId>jetty-maven-plugin</artifactId>
-				<version>${jetty.version}</version>
-				<configuration>
-					<systemProperties>
-						<systemProperty>
-							<name>spring.profiles.active</name>
-							<value>development</value>
-						</systemProperty>
-					</systemProperties>
-					<useTestClasspath>true</useTestClasspath>
-					<includeSystemScope>true</includeSystemScope>
-					<webAppConfig>
-						<contextPath>/${project.artifactId}</contextPath>
-					</webAppConfig>
-				</configuration>
-			</plugin>
-			<!-- resources鎻掍欢 -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-resources-plugin</artifactId>
-				<version>2.6</version>
-			</plugin>
-
-			<!-- install鎻掍欢 -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-install-plugin</artifactId>
-				<version>2.5.1</version>
-			</plugin>
-
-			<!-- ant鎻掍欢 -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-antrun-plugin</artifactId>
-				<version>1.7</version>
-			</plugin>
-		</plugins>
-	</build>
-
-	<profiles>
-		<!-- 鎵цfunctional test -->
-		<profile>
-			<id>functional-test</id>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-surefire-plugin</artifactId>
-						<configuration>
-							<argLine>-Xmx256M -XX:MaxPermSize=128m</argLine>
-							<includes>
-								<include>**/*FT.java</include>
-							</includes>
-							<!-- 鏀寔taglib tld鏂囦欢鏌ユ壘鐨勫繀瑕佽缃� -->
-							<useSystemClassLoader>false</useSystemClassLoader>
-							<!-- 灏唌vn鍛戒护琛屼紶鍏ョ殑selenium driver鍙傛暟浼犲叆surefire鐨凧VM -->
-							<systemPropertyVariables>
-								<selenium.driver>${selenium.driver}</selenium.driver>
-							</systemPropertyVariables>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-
-		<!-- 鎵ц@Category(Smoke.class)鐨凾estCase -->
-		<profile>
-			<id>run-smoke</id>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-surefire-plugin</artifactId>
-						<configuration>
-							<groups>org.springside.modules.test.category.Smoke</groups>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-
-		<!-- 鍒锋柊寮�鍙戠幆澧冩暟鎹簱 -->
-		<profile>
-			<id>refresh-db</id>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-antrun-plugin</artifactId>
-						<configuration>
-							<target>
-								<property file="src/main/resources/application.development.properties" />
-								<property file="src/main/resources/application.properties" />
-								<sql driver="${jdbc.driver}" url="${jdbc.url}" userid="${jdbc.username}" password="${jdbc.password}" onerror="continue" encoding="${project.build.sourceEncoding}">
-									<classpath refid="maven.test.classpath" />
-									<transaction src="src/main/resources/sql/h2/schema.sql" />
-									<transaction src="src/test/resources/data/h2/import-data.sql" />
-								</sql>
-							</target>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
-</project>
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-archiver/pom.properties" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-archiver/pom.properties"
index 807205e..a87f200 100644
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-archiver/pom.properties"
+++ "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-archiver/pom.properties"
@@ -1,5 +1,5 @@
 #Generated by Maven
-#Tue Jun 10 16:39:13 CST 2025
+#Wed Jun 11 19:52:31 CST 2025
 version=1.0-SNAPSHOT
 groupId=com.northglass
 artifactId=gmms2
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst"
deleted file mode 100644
index 4503e24..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst"
+++ /dev/null
@@ -1,6 +0,0 @@
-com\northglass\data\TaskData.class
-com\northglass\repository\JpaMappingTest.class
-com\northglass\repository\TaskDaoTest.class
-com\northglass\QuickStartServer.class
-com\northglass\service\account\AccountServiceTest.class
-com\northglass\data\UserData.class
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst"
deleted file mode 100644
index 667c8b3..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst"
+++ /dev/null
@@ -1,6 +0,0 @@
-D:\Documents\MES_Projects\河北望美项目\MES_11\src\test\java\com\northglass\data\TaskData.java
-D:\Documents\MES_Projects\河北望美项目\MES_11\src\test\java\com\northglass\repository\TaskDaoTest.java
-D:\Documents\MES_Projects\河北望美项目\MES_11\src\test\java\com\northglass\QuickStartServer.java
-D:\Documents\MES_Projects\河北望美项目\MES_11\src\test\java\com\northglass\data\UserData.java
-D:\Documents\MES_Projects\河北望美项目\MES_11\src\test\java\com\northglass\service\account\AccountServiceTest.java
-D:\Documents\MES_Projects\河北望美项目\MES_11\src\test\java\com\northglass\repository\JpaMappingTest.java
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/layouts/default_jsp.java" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/layouts/default_jsp.java"
deleted file mode 100644
index ac280d3..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/layouts/default_jsp.java"
+++ /dev/null
@@ -1,3603 +0,0 @@
-package org.apache.jsp.WEB_002dINF.layouts;
-
-import javax.servlet.*;
-import javax.servlet.http.*;
-import javax.servlet.jsp.*;
-
-public final class default_jsp extends org.apache.jasper.runtime.HttpJspBase
-    implements org.apache.jasper.runtime.JspSourceDependent {
-
-  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
-
-  private static java.util.Vector _jspx_dependants;
-
-  static {
-    _jspx_dependants = new java.util.Vector(3);
-    _jspx_dependants.add("/WEB-INF/layouts/header.jsp");
-    _jspx_dependants.add("/WEB-INF/layouts/left.jsp");
-    _jspx_dependants.add("/WEB-INF/layouts/footer.jsp");
-  }
-
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_c_set_var_value_nobody;
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_sitemesh_title_nobody;
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_sitemesh_head_nobody;
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_shiro_hasRole_name;
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_sitemesh_body_nobody;
-
-  private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;
-
-  public Object getDependants() {
-    return _jspx_dependants;
-  }
-
-  public void _jspInit() {
-    _jspx_tagPool_c_set_var_value_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-    _jspx_tagPool_sitemesh_title_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-    _jspx_tagPool_sitemesh_head_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-    _jspx_tagPool_shiro_hasRole_name = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-    _jspx_tagPool_sitemesh_body_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-  }
-
-  public void _jspDestroy() {
-    _jspx_tagPool_c_set_var_value_nobody.release();
-    _jspx_tagPool_sitemesh_title_nobody.release();
-    _jspx_tagPool_sitemesh_head_nobody.release();
-    _jspx_tagPool_shiro_hasRole_name.release();
-    _jspx_tagPool_sitemesh_body_nobody.release();
-  }
-
-  public void _jspService(HttpServletRequest request, HttpServletResponse response)
-        throws java.io.IOException, ServletException {
-
-    PageContext pageContext = null;
-    HttpSession session = null;
-    ServletContext application = null;
-    ServletConfig config = null;
-    JspWriter out = null;
-    Object page = this;
-    JspWriter _jspx_out = null;
-    PageContext _jspx_page_context = null;
-
-    try {
-      response.setContentType("text/html;charset=UTF-8");
-      pageContext = _jspxFactory.getPageContext(this, request, response,
-      			null, true, 8192, true);
-      _jspx_page_context = pageContext;
-      application = pageContext.getServletContext();
-      config = pageContext.getServletConfig();
-      session = pageContext.getSession();
-      out = pageContext.getOut();
-      _jspx_out = out;
-      _jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");
-
-      out.write("\r\n");
-      out.write("  \r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      if (_jspx_meth_c_set_0(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!DOCTYPE html>\r\n");
-      out.write("<html lang=\"zh-CN\">\r\n");
-      out.write("<head>\r\n");
-      out.write("<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\r\n");
-      out.write("<meta http-equiv=\"Cache-Control\" content=\"no-store\" />\r\n");
-      out.write("<meta http-equiv=\"Pragma\" content=\"no-cache\" />\r\n");
-      out.write("<meta http-equiv=\"Expires\" content=\"0\" />\r\n");
-      out.write("<meta charset=\"utf-8\">\r\n");
-      out.write("<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n");
-      out.write("<meta content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\" name=\"viewport\">\r\n");
-      out.write("\r\n");
-      out.write("<link type=\"image/x-icon\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/images/favicon.ico\" rel=\"shortcut icon\">\r\n");
-      out.write("\r\n");
-      out.write("<title>");
-      if (_jspx_meth_sitemesh_title_0(_jspx_page_context))
-        return;
-      out.write(" - 鐜荤拑鐢熶骇绠$悊绯荤粺</title>\r\n");
-      out.write("\r\n");
-      out.write("<link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/bootstrap/dist/css/bootstrap.min.css\">\r\n");
-      out.write("<!-- Font Awesome -->\r\n");
-      out.write("<link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/font-awesome/css/font-awesome.min.css\">\r\n");
-      out.write("<!-- Ionicons -->\r\n");
-      out.write("<link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/Ionicons/css/ionicons.min.css\">\r\n");
-      out.write("<!-- Theme style -->\r\n");
-      out.write("<link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/dist/css/AdminLTE.min.css\">\r\n");
-      out.write("<!-- AdminLTE Skins. We have chosen the skin-blue for this starter\r\n");
-      out.write("        page. However, you can choose any other skin. Make sure you\r\n");
-      out.write("        apply the skin class to the body tag so the changes take effect. -->\r\n");
-      out.write("<link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/dist/css/skins/skin-blue.min.css\">\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->\r\n");
-      out.write("<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->\r\n");
-      out.write("<!--[if lt IE 9]>\r\n");
-      out.write("<script src=\"https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js\"></script>\r\n");
-      out.write("<script src=\"https://oss.maxcdn.com/respond/1.4.2/respond.min.js\"></script>\r\n");
-      out.write("<![endif]-->\r\n");
-      out.write("\r\n");
-      if (_jspx_meth_sitemesh_head_0(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("</head>\r\n");
-      out.write("<!--\r\n");
-      out.write("BODY TAG OPTIONS:\r\n");
-      out.write("=================\r\n");
-      out.write("Apply one or more of the following classes to get the\r\n");
-      out.write("desired effect\r\n");
-      out.write("|---------------------------------------------------------|\r\n");
-      out.write("| SKINS         | skin-blue                               |\r\n");
-      out.write("|               | skin-black                              |\r\n");
-      out.write("|               | skin-purple                             |\r\n");
-      out.write("|               | skin-yellow                             |\r\n");
-      out.write("|               | skin-red                                |\r\n");
-      out.write("|               | skin-green                              |\r\n");
-      out.write("|---------------------------------------------------------|\r\n");
-      out.write("|LAYOUT OPTIONS | fixed                                   |\r\n");
-      out.write("|               | layout-boxed                            |\r\n");
-      out.write("|               | layout-top-nav                          |\r\n");
-      out.write("|               | sidebar-collapse                        |\r\n");
-      out.write("|               | sidebar-mini                            |\r\n");
-      out.write("|---------------------------------------------------------|\r\n");
-      out.write("-->\r\n");
-      out.write("<body class=\"hold-transition skin-blue sidebar-mini\">\r\n");
-      out.write("<div class=\"wrapper\">\r\n");
-      out.write("    ");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      if (_jspx_meth_c_set_1(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- Main Header -->\r\n");
-      out.write("<header class=\"main-header\" id=\"headeres\">\r\n");
-      out.write("    <!-- Logo -->\r\n");
-      out.write("    <a href=\"/gmms2/mesview/_msgpeek\" class=\"logo\" style=\"background-color: #D5EAFF;\">\r\n");
-      out.write("        <!-- mini logo for sidebar mini 50x50 pixels -->\r\n");
-      out.write("        <img alt=\"#\" src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/images/log2.png\"  style=\"width: 61px;height: 40px; margin-left: -105px; \">\r\n");
-      out.write("    </a>\r\n");
-      out.write("    <!-- Header Navbar --><!-- style=\"background-color:#f00;\" -->\r\n");
-      out.write("    <nav class=\"navbar navbar-static-top\" role=\"navigation\" id =\"allstatus\" style=\"background-color: #D5EAFF;\">\r\n");
-      out.write("        <!-- Sidebar toggle button-->\r\n");
-      out.write("        <!-- <a href=\"#\" class=\"sidebar-toggle\" data-toggle=\"push-menu\" role=\"button\">\r\n");
-      out.write("            <span class=\"sr-only\">Toggle navigation</span>\r\n");
-      out.write("        </a>  -->\r\n");
-      out.write("       <div id ='infos' style=\"text-align:center;color:#fff;\"></div>\r\n");
-      out.write("        <!-- Navbar Right Menu -->\r\n");
-      out.write("        <div class=\"navbar-custom-menu\">\r\n");
-      out.write("\r\n");
-      out.write("            \r\n");
-      out.write("                \r\n");
-      out.write("            <div   data-toggle=\"dropdown\">\r\n");
-      out.write("            \r\n");
-      out.write("            \t<span id=localtime class=\"hidden-xs juese\" style=\"float:right;margin-top:15px;font-size:16px;margin-right: 15px;\"></span>\r\n");
-      out.write("            \t<script type=\"text/javascript\">\r\n");
-      out.write("\t\t\t\t\tfunction showLocale(objD)\r\n");
-      out.write("\t\t\t\t\t{\r\n");
-      out.write("\t\t\t\t\t\tvar str,colorhead,colorfoot;\r\n");
-      out.write("\t\t\t\t\t\tvar yy = objD.getYear();\r\n");
-      out.write("\t\t\t\t\t\tif(yy<1900) yy = yy+1900;\r\n");
-      out.write("\t\t\t\t\t\tvar MM = objD.getMonth()+1;\r\n");
-      out.write("\t\t\t\t\t\tif(MM<10) MM = '0' + MM;\r\n");
-      out.write("\t\t\t\t\t\tvar dd = objD.getDate();\r\n");
-      out.write("\t\t\t\t\t\tif(dd<10) dd = '0' + dd;\r\n");
-      out.write("\t\t\t\t\t\tvar hh = objD.getHours();\r\n");
-      out.write("\t\t\t\t\t\tif(hh<10) hh = '0' + hh;\r\n");
-      out.write("\t\t\t\t\t\tvar mm = objD.getMinutes();\r\n");
-      out.write("\t\t\t\t\t\tif(mm<10) mm = '0' + mm;\r\n");
-      out.write("\t\t\t\t\t\tvar ss = objD.getSeconds();\r\n");
-      out.write("\t\t\t\t\t\tif(ss<10) ss = '0' + ss;\r\n");
-      out.write("\t\t\t\t\t\tvar ww = objD.getDay();\r\n");
-      out.write("\t\t\t\t\t\tif  ( ww==0 )  colorhead=\"<font color=\\\"#FF0000\\\">\";\r\n");
-      out.write("\t\t\t\t\t\tif  ( ww > 0 && ww < 6 )  colorhead=\"<font color=\\\"black\\\">\";\r\n");
-      out.write("\t\t\t\t\t\tif  ( ww==6 )  colorhead=\"<font color=\\\"#008000\\\">\";\r\n");
-      out.write("\t\t\t\t\t\tif  (ww==0)  ww=\"鏄熸湡鏃";\r\n");
-      out.write("\t\t\t\t\t\tif  (ww==1)  ww=\"鏄熸湡涓�\";\r\n");
-      out.write("\t\t\t\t\t\tif  (ww==2)  ww=\"鏄熸湡浜孿";\r\n");
-      out.write("\t\t\t\t\t\tif  (ww==3)  ww=\"鏄熸湡涓塡";\r\n");
-      out.write("\t\t\t\t\t\tif  (ww==4)  ww=\"鏄熸湡鍥沑";\r\n");
-      out.write("\t\t\t\t\t\tif  (ww==5)  ww=\"鏄熸湡浜擻";\r\n");
-      out.write("\t\t\t\t\t\tif  (ww==6)  ww=\"鏄熸湡鍏璡";\r\n");
-      out.write("\t\t\t\t\t\tcolorfoot=\"</font>\"\r\n");
-      out.write("\t\t\t\t\t\tstr = colorhead + yy + \"-\" + MM + \"-\" + dd + \" \" + hh + \":\" + mm + \":\" + ss + \"  \" + ww + colorfoot;\r\n");
-      out.write("\t\t\t\t\t\treturn(str);\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\tfunction tick()\r\n");
-      out.write("\t\t\t\t\t{\r\n");
-      out.write("\t\t\t\t\t\tvar today;\r\n");
-      out.write("\t\t\t\t\t\ttoday = new Date();\r\n");
-      out.write("\t\t\t\t\t\tdocument.getElementById(\"localtime\").innerHTML = showLocale(today);\r\n");
-      out.write("\t\t\t\t\t\twindow.setTimeout(\"tick()\", 1000);\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\ttick();\r\n");
-      out.write("\t\t\t\t\t</script>\r\n");
-      out.write("\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t\t<span id ='infos' style=\"width:100px; margin-right:30px;line-height:50px;color:#ff0;\"></span>\r\n");
-      out.write("            </div>\r\n");
-      out.write("           \r\n");
-      out.write("        </div>\r\n");
-      out.write("    </nav>\r\n");
-      out.write("</header>");
-      out.write("\r\n");
-      out.write("    ");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      if (_jspx_meth_c_set_2(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("<!-- Left side column. contains the logo and sidebar -->\r\n");
-      out.write("<link href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/styles/quanxiang.css\" type=\"text/css\" rel=\"stylesheet\" />\r\n");
-      out.write("<script type=\"text/javascript\" src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/jquery/jquery-3.1.0.min.js\"></script>\r\n");
-      out.write("<script>\r\n");
-      out.write("    //灞曠ず妯″潡鍒楄〃鍔ㄧ敾鏁堟灉\r\n");
-      out.write("    $(function() {\r\n");
-      out.write("        //1.鑾峰彇鑿滃崟鍏冪礌\r\n");
-      out.write("        var dv = $(\".menu div\");\r\n");
-      out.write("        dv.click(function() {\r\n");
-      out.write("        \t\r\n");
-      out.write("            var die = $(this);\r\n");
-      out.write("            //2.鑾峰彇span鐨刬d鍚嶇О\r\n");
-      out.write("            var jiantou = $(this).children(\"span\").attr(\"id\");\r\n");
-      out.write("            if (die.next(\"ul\").is(\":hidden\")) {\r\n");
-      out.write("                $(\"ul\").hide(500);\r\n");
-      out.write("                die.next(\"ul\").show(500);\r\n");
-      out.write("                $('#' + jiantou + '').animate({}, function() {\r\n");
-      out.write("                    $(this).css({\r\n");
-      out.write("                        //鏃嬭浆瑙掑害\r\n");
-      out.write("                        /* 'transform': 'rotate(90deg)' */\r\n");
-      out.write("                    });\r\n");
-      out.write("                })\r\n");
-      out.write("            } else {\r\n");
-      out.write("                //3.鐐瑰嚮闅愯棌鑿滃崟\r\n");
-      out.write("                die.next(\"ul\").hide(500);\r\n");
-      out.write("                $('#' + jiantou + '').animate({}, function() {\r\n");
-      out.write("                    $(this).css({\r\n");
-      out.write("                        'transform': 'rotate(0deg)'\r\n");
-      out.write("                    });\r\n");
-      out.write("                })\r\n");
-      out.write("            }\r\n");
-      out.write("        })\r\n");
-      out.write("    })\r\n");
-      out.write("     \r\n");
-      out.write("</script>\r\n");
-      out.write("<aside id=\"asidees\" class=\"main-sidebar\" style=\"background-color:#D5EAFF\">\r\n");
-      out.write("\r\n");
-      out.write("\t<!-- sidebar: style can be found in sidebar.less -->\r\n");
-      out.write("\t<section class=\"sidebar\">\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_0(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_1(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_2(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_3(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_4(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_5(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_6(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_7(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_8(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_9(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_10(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_11(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_12(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_13(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_14(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_15(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_16(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_17(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_18(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_19(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_20(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_21(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_22(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_23(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_24(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_25(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_26(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_27(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_28(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_29(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_30(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_31(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_32(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_33(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_34(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_35(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\t\t<!-- /.sidebar-menu -->\r\n");
-      out.write("\t\t");
-      if (_jspx_meth_shiro_hasRole_36(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\t</section>\r\n");
-      out.write("\t<!-- /.sidebar -->\r\n");
-      out.write("</aside>");
-      out.write("\r\n");
-      out.write("    ");
-      if (_jspx_meth_sitemesh_body_0(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("    ");
-      out.write("\r\n");
-      out.write("<!-- Main Footer -->\r\n");
-      out.write("<footer id=\"footeres\"  class=\"main-footer\" style=\"text-align:center;background: #D5EAFF;\">\r\n");
-      out.write("    <!-- Default to the left -->\r\n");
-      out.write("    <strong >Copyright &copy; <span id=\"showYear\">2015-2020</span> <a href=\"https://www.northglass.com/d/shanghai-northglass.html\">涓婃捣鍖楃幓鑷姩鍖栨妧鏈湁闄愬叕鍙�</a>.</strong> All rights reserved.\r\n");
-      out.write("</footer>\r\n");
-      out.write("<script>\r\n");
-      out.write("var date = new Date();\r\n");
-      out.write("var currentYear = date.getFullYear();\r\n");
-      out.write("function showYear(){\r\n");
-      out.write("\t$(\"#showYear\").html(\"2015-\"+currentYear);\r\n");
-      out.write("\t\r\n");
-      out.write("}\r\n");
-      out.write("showYear();\r\n");
-      out.write("</script>\r\n");
-      out.write(" \r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("<!-- REQUIRED JS SCRIPTS -->\r\n");
-      out.write("<!-- Bootstrap 3.3.7 -->\r\n");
-      out.write("<script src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/bootstrap/dist/js/bootstrap.min.js\"></script>\r\n");
-      out.write("<!-- AdminLTE App -->\r\n");
-      out.write("<script src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/dist/js/adminlte.min.js\"></script>\r\n");
-      out.write("</body>\r\n");
-      out.write("</html>");
-    } catch (Throwable t) {
-      if (!(t instanceof SkipPageException)){
-        out = _jspx_out;
-        if (out != null && out.getBufferSize() != 0)
-          out.clearBuffer();
-        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
-        else throw new ServletException(t);
-      }
-    } finally {
-      _jspxFactory.releasePageContext(_jspx_page_context);
-    }
-  }
-
-  private boolean _jspx_meth_c_set_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  c:set
-    org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _jspx_tagPool_c_set_var_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
-    _jspx_th_c_set_0.setPageContext(_jspx_page_context);
-    _jspx_th_c_set_0.setParent(null);
-    _jspx_th_c_set_0.setVar("ctx");
-    _jspx_th_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pageContext.request.contextPath}", java.lang.Object.class, (PageContext)_jspx_page_context, null));
-    int _jspx_eval_c_set_0 = _jspx_th_c_set_0.doStartTag();
-    if (_jspx_th_c_set_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-      return true;
-    }
-    _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-    return false;
-  }
-
-  private boolean _jspx_meth_sitemesh_title_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  sitemesh:title
-    com.opensymphony.module.sitemesh.taglib.decorator.TitleTag _jspx_th_sitemesh_title_0 = (com.opensymphony.module.sitemesh.taglib.decorator.TitleTag) _jspx_tagPool_sitemesh_title_nobody.get(com.opensymphony.module.sitemesh.taglib.decorator.TitleTag.class);
-    _jspx_th_sitemesh_title_0.setPageContext(_jspx_page_context);
-    _jspx_th_sitemesh_title_0.setParent(null);
-    int _jspx_eval_sitemesh_title_0 = _jspx_th_sitemesh_title_0.doStartTag();
-    if (_jspx_th_sitemesh_title_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_sitemesh_title_nobody.reuse(_jspx_th_sitemesh_title_0);
-      return true;
-    }
-    _jspx_tagPool_sitemesh_title_nobody.reuse(_jspx_th_sitemesh_title_0);
-    return false;
-  }
-
-  private boolean _jspx_meth_sitemesh_head_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  sitemesh:head
-    com.opensymphony.module.sitemesh.taglib.decorator.HeadTag _jspx_th_sitemesh_head_0 = (com.opensymphony.module.sitemesh.taglib.decorator.HeadTag) _jspx_tagPool_sitemesh_head_nobody.get(com.opensymphony.module.sitemesh.taglib.decorator.HeadTag.class);
-    _jspx_th_sitemesh_head_0.setPageContext(_jspx_page_context);
-    _jspx_th_sitemesh_head_0.setParent(null);
-    int _jspx_eval_sitemesh_head_0 = _jspx_th_sitemesh_head_0.doStartTag();
-    if (_jspx_th_sitemesh_head_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_sitemesh_head_nobody.reuse(_jspx_th_sitemesh_head_0);
-      return true;
-    }
-    _jspx_tagPool_sitemesh_head_nobody.reuse(_jspx_th_sitemesh_head_0);
-    return false;
-  }
-
-  private boolean _jspx_meth_c_set_1(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  c:set
-    org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_set_1 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _jspx_tagPool_c_set_var_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
-    _jspx_th_c_set_1.setPageContext(_jspx_page_context);
-    _jspx_th_c_set_1.setParent(null);
-    _jspx_th_c_set_1.setVar("ctx");
-    _jspx_th_c_set_1.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pageContext.request.contextPath}", java.lang.Object.class, (PageContext)_jspx_page_context, null));
-    int _jspx_eval_c_set_1 = _jspx_th_c_set_1.doStartTag();
-    if (_jspx_th_c_set_1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_1);
-      return true;
-    }
-    _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_1);
-    return false;
-  }
-
-  private boolean _jspx_meth_c_set_2(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  c:set
-    org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_set_2 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _jspx_tagPool_c_set_var_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
-    _jspx_th_c_set_2.setPageContext(_jspx_page_context);
-    _jspx_th_c_set_2.setParent(null);
-    _jspx_th_c_set_2.setVar("ctx");
-    _jspx_th_c_set_2.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pageContext.request.contextPath}", java.lang.Object.class, (PageContext)_jspx_page_context, null));
-    int _jspx_eval_c_set_2 = _jspx_th_c_set_2.doStartTag();
-    if (_jspx_th_c_set_2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_2);
-      return true;
-    }
-    _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_2);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_0 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_0.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_0.setParent(null);
-    _jspx_th_shiro_hasRole_0.setName("admin");
-    int _jspx_eval_shiro_hasRole_0 = _jspx_th_shiro_hasRole_0.doStartTag();
-    if (_jspx_eval_shiro_hasRole_0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/4\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇鍥�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/3\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/2\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇浜�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/1\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=3\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>娴嬮噺绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/manage/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/manage/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/manage/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank2/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagetask/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�鐞嗙墖绗间换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜岀悊鐗囩璇︽儏</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagetask/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜岀悊鐗囩浠诲姟</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagetask/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鐞嗙墖绗间换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>纾ㄨ竟绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\t\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\r\n");
-        out.write("                   \t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>澶嶅悎绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/compound/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/compound/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/compound/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓嬬墖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/loadmachinerack/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#涓嬬墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/weihu?line=1&segment=L\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#钀芥灦鏄剧ず</a></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/1/绛夊緟涓璡">&nbsp;&nbsp;&nbsp;&nbsp;涓�#绛夊緟闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/1/姝e湪宸ヤ綔\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#宸ヤ綔闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/1/宸插畬鎴怽">&nbsp;&nbsp;&nbsp;&nbsp;涓�#瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/loadmachinerack/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#涓嬬墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/weihu?line=2&segment=L\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#钀芥灦鏄剧ず</a></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/2/绛夊緟涓璡">&nbsp;&nbsp;&nbsp;&nbsp;浜�#绛夊緟闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/2/姝e湪宸ヤ綔\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#宸ヤ綔闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/2/宸插畬鎴怽">&nbsp;&nbsp;&nbsp;&nbsp;浜�#瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/loadmachinerack/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#涓嬬墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/weihu?line=3&segment=L\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#钀芥灦鏄剧ず</a></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/3/绛夊緟涓璡">&nbsp;&nbsp;&nbsp;&nbsp;涓�#绛夊緟闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/3/姝e湪宸ヤ綔\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#宸ヤ綔闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/3/宸插畬鎴怽">&nbsp;&nbsp;&nbsp;&nbsp;涓�#瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=鍐峰姞宸">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ヤ骇閲忔姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁㈠崟灏忕墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstasklit/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#璁㈠崟灏忕墖淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstaskdamaged/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#灏忕墖鐮存崯淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstasklit/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#璁㈠崟灏忕墖淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstaskdamaged/2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#灏忕墖鐮存崯淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstasklit/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#璁㈠崟灏忕墖淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstaskdamaged/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#灏忕墖鐮存崯淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>閽㈠寲鍓嶇鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_GH_ShangPianWei?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_CPLook\">&nbsp;&nbsp;&nbsp;&nbsp;搴撳唴淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/toughening/compound/2\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_OnlineGlass?group=2&gongyi=閽㈠寲鍓峔">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_rank_piece\">&nbsp;&nbsp;&nbsp;&nbsp;鐜荤拑璋冨簭</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layoutEx?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;鎺掔増鍥�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=閽㈠寲\">&nbsp;&nbsp;&nbsp;&nbsp;閽㈠寲鎶ヨ〃</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>閽㈠寲鍚庣鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_GH_HouXiaPianWei?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;涓嬬墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/toughening/compounds/2\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_OnlineGlass?group=2&gongyi=閽㈠寲鍚嶾">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CP_Data\">&nbsp;&nbsp;&nbsp;&nbsp;鐮存崯鎶ュ伐</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layoutEx?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;鎺掔増鍥�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>淇敼瀵嗙爜<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/password\">&nbsp;&nbsp;&nbsp;&nbsp;淇敼瀵嗙爜</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鎶ヨ〃绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/shelfreportform\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖浠撳偍鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/shelfrankreportform\">&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍璋冩嫧鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/galssdetailsreportform\">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ユ姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?rfName=鍒囧壊鏄庣粏\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鏄庣粏鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/cutmanagerepoortform1\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鎬绘姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/cutmanagerepoortform2\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鍗曠墖鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/yuanpianpandian\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖鐩樼偣鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/galssmeasurereportform\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囪鐜囨槑缁嗘姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/galssmeasurereportform1\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囪鐜囨�绘姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/liuchengkaReportForm\">&nbsp;&nbsp;&nbsp;&nbsp;娴佺▼鍗℃姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=鍐峰姞宸">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ヤ骇閲忔姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=閽㈠寲\">&nbsp;&nbsp;&nbsp;&nbsp;閽㈠寲浜ч噺鎶ヨ〃</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm_merge\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖鍒囪鐜囨姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_Edg_Statistics?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;纾ㄨ竟寮�鍚堟姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_DT_dapingxianshi\"  target=\"_blank\">&nbsp;&nbsp;&nbsp;&nbsp;澶у睆鏄剧ず</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍗婃垚鍝佷粨鍌�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_liaojia\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_renwu\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_DZ_Wei\">&nbsp;&nbsp;&nbsp;&nbsp;鍚婅浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager2/gettask\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇澶硅兌浠诲姟</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_rank_piecess\">&nbsp;&nbsp;&nbsp;&nbsp;鐜荤拑璋冨簭</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓┖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇浜�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKSP_renwu?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;浠诲姟闃熷垪1</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKSP_renwu?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浠诲姟闃熷垪2</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKSP_renwu?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;浠诲姟闃熷垪3</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_ShangPianWei?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�鍙蜂笂鐗囦綅淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_ShangPianWei?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浜屽彿涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_ShangPianWei?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓夊彿涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=4\">&nbsp;&nbsp;&nbsp;&nbsp;鍥�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓┖鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKLPL_Info\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_LP_renwu\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗间换鍔�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKLPL_ShangPianWei\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/hollowslicecage/manage/4\">&nbsp;&nbsp;&nbsp;&nbsp;#娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("                   \t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/4\">&nbsp;&nbsp;&nbsp;&nbsp;#娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKLP_ShouDong\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖鐞嗙墖浼樺寲</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>娴佺▼鍗℃墦鍗�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print1?line=1\">&nbsp;&nbsp;&nbsp;&nbsp;1鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print1?line=2\">&nbsp;&nbsp;&nbsp;&nbsp;2鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print1?line=3\">&nbsp;&nbsp;&nbsp;&nbsp;3鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t</ul>\t\t\t\t\r\n");
-        out.write("\t\t\t<div class='menu_title'>涓┖澶硅兌绾�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"http://10.12.0.104:8080/GERP/pp/shengchanbaobiao/HTML/bengongxurenwuchaxun.jsp?gx=澶瑰眰\">&nbsp;&nbsp;&nbsp;&nbsp;澶硅兌鏈姤宸�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"http://10.12.0.104:8080/GERP/pp/shengchanbaobiao/HTML/fenjiachanliangchaxun.jsp?gx=澶瑰眰\">&nbsp;&nbsp;&nbsp;&nbsp;澶硅兌宸叉姤宸�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print?line=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖1鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print?line=2\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖2鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print?line=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖3鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print?line=4\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖4鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t\r\n");
-        out.write("                    <li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\r\n");
-        out.write("\t\t\t\r\n");
-        out.write("\t\t\t<div class='menu_title'>鎶樺集鏌ョ湅<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=4\">&nbsp;&nbsp;&nbsp;&nbsp;鍥�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t\t\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_0.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_0);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_0);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_1(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_1 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_1.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_1.setParent(null);
-    _jspx_th_shiro_hasRole_1.setName("qiege3");
-    int _jspx_eval_shiro_hasRole_1 = _jspx_th_shiro_hasRole_1.doStartTag();
-    if (_jspx_eval_shiro_hasRole_1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鎶ヨ〃绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/shelfreportform\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖浠撳偍鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/shelfrankreportform\">&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍璋冩嫧鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/galssdetailsreportform\">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ユ姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?rfName=鍒囧壊鏄庣粏\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鏄庣粏鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/cutmanagerepoortform1\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鎬绘姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm_merge\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖鍒囪鐜囨姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_Edg_Statistics?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;纾ㄨ竟寮�鍚堟姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_1.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_1);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_1);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_2(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_2 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_2.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_2.setParent(null);
-    _jspx_th_shiro_hasRole_2.setName("shangpian1-1");
-    int _jspx_eval_shiro_hasRole_2 = _jspx_th_shiro_hasRole_2.doStartTag();
-    if (_jspx_eval_shiro_hasRole_2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=1\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/1\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages2\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/1\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_2.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_2);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_2);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_3(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_3 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_3.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_3.setParent(null);
-    _jspx_th_shiro_hasRole_3.setName("shangpian1-2");
-    int _jspx_eval_shiro_hasRole_3 = _jspx_th_shiro_hasRole_3.doStartTag();
-    if (_jspx_eval_shiro_hasRole_3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=1\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/1\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages2\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/1\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_3.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_3);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_3);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_4(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_4 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_4.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_4.setParent(null);
-    _jspx_th_shiro_hasRole_4.setName("shangpian2-1");
-    int _jspx_eval_shiro_hasRole_4 = _jspx_th_shiro_hasRole_4.doStartTag();
-    if (_jspx_eval_shiro_hasRole_4 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/2\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇浜�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages2\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/2\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_4.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_4);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_4);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_5(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_5 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_5.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_5.setParent(null);
-    _jspx_th_shiro_hasRole_5.setName("shangpian2-2");
-    int _jspx_eval_shiro_hasRole_5 = _jspx_th_shiro_hasRole_5.doStartTag();
-    if (_jspx_eval_shiro_hasRole_5 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/2\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇浜�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages2\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/2\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_5.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_5);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_5);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_6(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_6 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_6.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_6.setParent(null);
-    _jspx_th_shiro_hasRole_6.setName("shangpian3-1");
-    int _jspx_eval_shiro_hasRole_6 = _jspx_th_shiro_hasRole_6.doStartTag();
-    if (_jspx_eval_shiro_hasRole_6 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=3\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/3\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages2\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/3\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_6.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_6);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_6);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_7(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_7 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_7.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_7.setParent(null);
-    _jspx_th_shiro_hasRole_7.setName("shangpian3-2");
-    int _jspx_eval_shiro_hasRole_7 = _jspx_th_shiro_hasRole_7.doStartTag();
-    if (_jspx_eval_shiro_hasRole_7 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=3\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/3\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages2\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/3\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_7.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_7);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_7);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_8(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_8 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_8.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_8.setParent(null);
-    _jspx_th_shiro_hasRole_8.setName("shangpian4-1");
-    int _jspx_eval_shiro_hasRole_8 = _jspx_th_shiro_hasRole_8.doStartTag();
-    if (_jspx_eval_shiro_hasRole_8 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=3\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/4\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇鍥�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>琛ョ墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/ajtab?select=all\">&nbsp;&nbsp;&nbsp;&nbsp;琛ョ墖</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_8.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_8);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_8);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_9(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_9 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_9.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_9.setParent(null);
-    _jspx_th_shiro_hasRole_9.setName("cangchu");
-    int _jspx_eval_shiro_hasRole_9 = _jspx_th_shiro_hasRole_9.doStartTag();
-    if (_jspx_eval_shiro_hasRole_9 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍘熺墖浠撳偍<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/rankmanager\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/shelftask\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager/enterandexitrack\" >&nbsp;&nbsp;&nbsp;&nbsp;杩涘嚭搴撶鐞�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/createcolor\">&nbsp;&nbsp;&nbsp;&nbsp;鑶滅郴绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_9.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_9);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_9);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_10(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_10 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_10.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_10.setParent(null);
-    _jspx_th_shiro_hasRole_10.setName("xiapian1");
-    int _jspx_eval_shiro_hasRole_10 = _jspx_th_shiro_hasRole_10.doStartTag();
-    if (_jspx_eval_shiro_hasRole_10 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank2/1\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>纾ㄨ竟绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/1\">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    \t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/1\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    \t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>澶嶅悎绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/compound/1\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/1\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓嬬墖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/loadmachinerack/1\">&nbsp;&nbsp;&nbsp;&nbsp;涓嬬墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/weihu?line=1&segment=L\">&nbsp;&nbsp;&nbsp;&nbsp;钀芥灦鏄剧ず</a></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/1/绛夊緟涓璡">&nbsp;&nbsp;&nbsp;&nbsp;绛夊緟闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/1/姝e湪宸ヤ綔\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/1/宸插畬鎴怽">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=鍐峰姞宸">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ヤ骇閲忔姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁㈠崟灏忕墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstasklit/1\">&nbsp;&nbsp;&nbsp;&nbsp;璁㈠崟灏忕墖淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstaskdamaged/1\">&nbsp;&nbsp;&nbsp;&nbsp;灏忕墖鐮存崯淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t\t\t<div class='menu_title'>娴佺▼鍗℃墦鍗�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print1?line=1\">&nbsp;&nbsp;&nbsp;&nbsp;1鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_10.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_10);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_10);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_11(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_11 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_11.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_11.setParent(null);
-    _jspx_th_shiro_hasRole_11.setName("xiapian2");
-    int _jspx_eval_shiro_hasRole_11 = _jspx_th_shiro_hasRole_11.doStartTag();
-    if (_jspx_eval_shiro_hasRole_11 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank/2\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>纾ㄨ竟绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/2\">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    \t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/2\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    \t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>澶嶅悎绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/compound/2\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/2\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓嬬墖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/loadmachinerack/2\">&nbsp;&nbsp;&nbsp;&nbsp;涓嬬墖浣嶄俊鎭�</a></li>\r\n");
-        out.write("\t\t\t\t    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/weihu?line=2&segment=L\">&nbsp;&nbsp;&nbsp;&nbsp;钀芥灦鏄剧ず</a></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li> \r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/2/绛夊緟涓璡">&nbsp;&nbsp;&nbsp;&nbsp;绛夊緟闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/2/姝e湪宸ヤ綔\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/2/宸插畬鎴怽">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=鍐峰姞宸">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ヤ骇閲忔姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁㈠崟灏忕墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstasklit/2\">&nbsp;&nbsp;&nbsp;&nbsp;璁㈠崟灏忕墖淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstaskdamaged/2\">&nbsp;&nbsp;&nbsp;&nbsp;灏忕墖鐮存崯淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t\t\t<div class='menu_title'>娴佺▼鍗℃墦鍗�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print1?line=2\">&nbsp;&nbsp;&nbsp;&nbsp;2鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_11.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_11);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_11);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_12(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_12 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_12.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_12.setParent(null);
-    _jspx_th_shiro_hasRole_12.setName("xiapian3");
-    int _jspx_eval_shiro_hasRole_12 = _jspx_th_shiro_hasRole_12.doStartTag();
-    if (_jspx_eval_shiro_hasRole_12 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank/3\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>纾ㄨ竟绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/3\">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    \t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/3\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    \t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>澶嶅悎绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/compound/3\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/compoundMachine/queue/3\">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓嬬墖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/loadmachinerack/3\">&nbsp;&nbsp;&nbsp;&nbsp;涓嬬墖浣嶄俊鎭�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/weihu?line=3&segment=L\">&nbsp;&nbsp;&nbsp;&nbsp;钀芥灦鏄剧ず</a></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/3/绛夊緟涓璡">&nbsp;&nbsp;&nbsp;&nbsp;绛夊緟闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/3/姝e湪宸ヤ綔\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/countmachine/detail/3/宸插畬鎴怽">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=鍐峰姞宸">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ヤ骇閲忔姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁㈠崟灏忕墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstasklit/3\">&nbsp;&nbsp;&nbsp;&nbsp;璁㈠崟灏忕墖淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/galssTask/galsstaskdamaged/3\">&nbsp;&nbsp;&nbsp;&nbsp;灏忕墖鐮存崯淇℃伅</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t\t\t<div class='menu_title'>娴佺▼鍗℃墦鍗�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_print1?line=3\">&nbsp;&nbsp;&nbsp;&nbsp;3鍙风嚎</a></li>\r\n");
-        out.write("\t\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_12.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_12);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_12);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_13(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_13 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_13.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_13.setParent(null);
-    _jspx_th_shiro_hasRole_13.setName("celiang1");
-    int _jspx_eval_shiro_hasRole_13 = _jspx_th_shiro_hasRole_13.doStartTag();
-    if (_jspx_eval_shiro_hasRole_13 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/1\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=1\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>娴嬮噺绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/manage/1\">&nbsp;&nbsp;&nbsp;&nbsp;娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/1\">&nbsp;&nbsp;&nbsp;&nbsp;娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_13.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_13);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_13);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_14(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_14 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_14.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_14.setParent(null);
-    _jspx_th_shiro_hasRole_14.setName("celiang2");
-    int _jspx_eval_shiro_hasRole_14 = _jspx_th_shiro_hasRole_14.doStartTag();
-    if (_jspx_eval_shiro_hasRole_14 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/2\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇浜�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>娴嬮噺绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/manage/2\">&nbsp;&nbsp;&nbsp;&nbsp;娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/2\">&nbsp;&nbsp;&nbsp;&nbsp;娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_14.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_14);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_14);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_15(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_15 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_15.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_15.setParent(null);
-    _jspx_th_shiro_hasRole_15.setName("celiang3");
-    int _jspx_eval_shiro_hasRole_15 = _jspx_th_shiro_hasRole_15.doStartTag();
-    if (_jspx_eval_shiro_hasRole_15 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍒囧壊绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/gettask/3\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/cutmanage/loadmachinerack\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/standalonemanage/intopages\">&nbsp;&nbsp;&nbsp;&nbsp;鍗曟満椤甸潰</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_yuliao?l=3\">&nbsp;&nbsp;&nbsp;&nbsp;浣欐枡搴�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>娴嬮噺绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/manage/3\">&nbsp;&nbsp;&nbsp;&nbsp;娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\r\n");
-        out.write("                    <li class='item_divider'></li>\t\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/3\">&nbsp;&nbsp;&nbsp;&nbsp;娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_15.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_15.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_15);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_15);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_16(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_16 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_16.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_16.setParent(null);
-    _jspx_th_shiro_hasRole_16.setName("lipian1");
-    int _jspx_eval_shiro_hasRole_16 = _jspx_th_shiro_hasRole_16.doStartTag();
-    if (_jspx_eval_shiro_hasRole_16 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank2/1\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagetask/1\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗间换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>纾ㄨ竟绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/1\">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    \t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/1\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    \t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_16.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_16.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_16);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_16);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_17(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_17 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_17.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_17.setParent(null);
-    _jspx_th_shiro_hasRole_17.setName("lipian2");
-    int _jspx_eval_shiro_hasRole_17 = _jspx_th_shiro_hasRole_17.doStartTag();
-    if (_jspx_eval_shiro_hasRole_17 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank/2\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagetask/2\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗间换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>纾ㄨ竟绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/2\">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    \t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/2\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    \t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_17.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_17.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_17);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_17);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_18(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_18 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_18.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_18.setParent(null);
-    _jspx_th_shiro_hasRole_18.setName("lipian3");
-    int _jspx_eval_shiro_hasRole_18 = _jspx_th_shiro_hasRole_18.doStartTag();
-    if (_jspx_eval_shiro_hasRole_18 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagerank/3\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/slicecage/slicecagetask/3\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗间换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>纾ㄨ竟绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliweiFinish/3\">&nbsp;&nbsp;&nbsp;&nbsp;瀹屾垚闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("                    \t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/gaoliwei/gaoliwei/3\">&nbsp;&nbsp;&nbsp;&nbsp;宸ヤ綔闃熷垪</a></li>\r\n");
-        out.write("                    \t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>璁惧绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/device/getstatu\">&nbsp;&nbsp;&nbsp;&nbsp;璁惧淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_18.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_18.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_18);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_18);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_19(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_19 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_19.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_19.setParent(null);
-    _jspx_th_shiro_hasRole_19.setName("luojiaxianshi3");
-    int _jspx_eval_shiro_hasRole_19 = _jspx_th_shiro_hasRole_19.doStartTag();
-    if (_jspx_eval_shiro_hasRole_19 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓嬬墖<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mes/weihu?line=3&segment=L\">&nbsp;&nbsp;&nbsp;&nbsp;钀芥灦鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\t\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_19.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_19.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_19);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_19);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_20(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_20 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_20.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_20.setParent(null);
-    _jspx_th_shiro_hasRole_20.setName("guanliyuan1");
-    int _jspx_eval_shiro_hasRole_20 = _jspx_th_shiro_hasRole_20.doStartTag();
-    if (_jspx_eval_shiro_hasRole_20 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鎶ヨ〃绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/shelfreportform\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖浠撳偍鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/shelfrankreportform\">&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍璋冩嫧鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/galssdetailsreportform\">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ユ姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?rfName=鍒囧壊鏄庣粏\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鏄庣粏鎶ヨ〃</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/cutmanagerepoortform1\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鎬绘姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/cutmanagerepoortform2\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鍗曠墖鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=鍐峰姞宸">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ヤ骇閲忔姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=閽㈠寲\">&nbsp;&nbsp;&nbsp;&nbsp;閽㈠寲浜ч噺鎶ヨ〃</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t");
-        out.write("\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/liuchengkaReportForm\">&nbsp;&nbsp;&nbsp;&nbsp;娴佺▼鍗℃姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=鍐峰姞宸">&nbsp;&nbsp;&nbsp;&nbsp;鍐峰姞宸ヤ骇閲忔姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=閽㈠寲\">&nbsp;&nbsp;&nbsp;&nbsp;閽㈠寲浜ч噺鎶ヨ〃</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm_merge\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖鍒囪鐜囨姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_Edg_Statistics?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;纾ㄨ竟寮�鍚堟姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_DT_dapingxianshi\"  target=\"_blank\">&nbsp;&nbsp;&nbsp;&nbsp;澶у睆鏄剧ず</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>淇敼瀵嗙爜<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/password\">&nbsp;&nbsp;&nbsp;&nbsp;淇敼瀵嗙爜</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_20.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_20.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_20);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_20);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_21(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_21 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_21.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_21.setParent(null);
-    _jspx_th_shiro_hasRole_21.setName("qiegebaobiao1");
-    int _jspx_eval_shiro_hasRole_21 = _jspx_th_shiro_hasRole_21.doStartTag();
-    if (_jspx_eval_shiro_hasRole_21 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鎶ヨ〃绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?rfName=鍒囧壊鏄庣粏\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鏄庣粏鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/cutmanagerepoortform1\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鎬绘姤琛�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/reportform/cutmanagerepoortform2\">&nbsp;&nbsp;&nbsp;&nbsp;鍒囧壊鍗曠墖鎶ヨ〃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm_merge\">&nbsp;&nbsp;&nbsp;&nbsp;鍘熺墖鍒囪鐜囨姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_Edg_Statistics?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;纾ㄨ竟寮�鍚堟姤琛�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_21.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_21.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_21);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_21);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_22(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_22 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_22.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_22.setParent(null);
-    _jspx_th_shiro_hasRole_22.setName("ganghuaqian1");
-    int _jspx_eval_shiro_hasRole_22 = _jspx_th_shiro_hasRole_22.doStartTag();
-    if (_jspx_eval_shiro_hasRole_22 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>閽㈠寲鍓嶇鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_GH_ShangPianWei?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_CPLook\">&nbsp;&nbsp;&nbsp;&nbsp;搴撳唴淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/toughening/compound/1\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_OnlineGlass?group=1&gongyi=閽㈠寲鍓峔">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_rank_piece\">&nbsp;&nbsp;&nbsp;&nbsp;鐜荤拑璋冨簭</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layoutEx?l=1\">&nbsp;&nbsp;&nbsp;&nbsp;鎺掔増鍥�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=閽㈠寲\">&nbsp;&nbsp;&nbsp;&nbsp;閽㈠寲鎶ヨ〃</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_22.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_22.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_22);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_22);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_23(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_23 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_23.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_23.setParent(null);
-    _jspx_th_shiro_hasRole_23.setName("ganghuaqian2");
-    int _jspx_eval_shiro_hasRole_23 = _jspx_th_shiro_hasRole_23.doStartTag();
-    if (_jspx_eval_shiro_hasRole_23 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >  \t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>閽㈠寲鍓嶇鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_GH_ShangPianWei?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_CPLook\">&nbsp;&nbsp;&nbsp;&nbsp;搴撳唴淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/toughening/compound/2\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_OnlineGlass?group=2&gongyi=閽㈠寲鍓峔">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_rank_piece\">&nbsp;&nbsp;&nbsp;&nbsp;鐜荤拑璋冨簭</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layoutEx?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;鎺掔増鍥�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ReportForm?gongyi=閽㈠寲\">&nbsp;&nbsp;&nbsp;&nbsp;閽㈠寲鎶ヨ〃</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_23.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_23.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_23);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_23);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_24(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_24 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_24.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_24.setParent(null);
-    _jspx_th_shiro_hasRole_24.setName("ganghuahou1");
-    int _jspx_eval_shiro_hasRole_24 = _jspx_th_shiro_hasRole_24.doStartTag();
-    if (_jspx_eval_shiro_hasRole_24 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>閽㈠寲鍚庣鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_GH_HouXiaPianWei?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓嬬墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/toughening/compounds/1\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_OnlineGlass?group=1&gongyi=閽㈠寲鍚嶾">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CP_Data\">&nbsp;&nbsp;&nbsp;&nbsp;鐮存崯鎶ュ伐</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layout?l=1\">&nbsp;&nbsp;&nbsp;&nbsp;鐮存崯姹囨姤</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layoutEx?l=1\">&nbsp;&nbsp;&nbsp;&nbsp;鎺掔増鍥�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_24.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_24.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_24);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_24);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_25(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_25 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_25.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_25.setParent(null);
-    _jspx_th_shiro_hasRole_25.setName("ganghuahou2");
-    int _jspx_eval_shiro_hasRole_25 = _jspx_th_shiro_hasRole_25.doStartTag();
-    if (_jspx_eval_shiro_hasRole_25 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>閽㈠寲鍚庣鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_GH_HouXiaPianWei?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;涓嬬墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/toughening/compounds/2\">&nbsp;&nbsp;&nbsp;&nbsp;澶嶅悎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_OnlineGlass?group=2&gongyi=閽㈠寲鍚嶾">&nbsp;&nbsp;&nbsp;&nbsp;鍦ㄧ嚎闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CP_Data\">&nbsp;&nbsp;&nbsp;&nbsp;鐮存崯鎶ュ伐</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layout?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;鐮存崯姹囨姤</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_layoutEx?l=2\">&nbsp;&nbsp;&nbsp;&nbsp;鎺掔増鍥�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_25.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_25.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_25);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_25);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_26(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_26 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_26.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_26.setParent(null);
-    _jspx_th_shiro_hasRole_26.setName("cangchu2");
-    int _jspx_eval_shiro_hasRole_26 = _jspx_th_shiro_hasRole_26.doStartTag();
-    if (_jspx_eval_shiro_hasRole_26 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍗婃垚鍝佷粨鍌ㄧ鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_liaojia\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_renwu\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/shelfmanager2/gettask\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇澶硅兌浠诲姟</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_rank_piecess\">&nbsp;&nbsp;&nbsp;&nbsp;鐜荤拑璋冨簭</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_26.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_26.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_26);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_26);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_27(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_27 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_27.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_27.setParent(null);
-    _jspx_th_shiro_hasRole_27.setName("diaozhuangwei2");
-    int _jspx_eval_shiro_hasRole_27 = _jspx_th_shiro_hasRole_27.doStartTag();
-    if (_jspx_eval_shiro_hasRole_27 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鍗婃垚鍝佷粨鍌ㄧ鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_liaojia\">&nbsp;&nbsp;&nbsp;&nbsp;鏂欐灦绠$悊</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_CC_renwu\" >&nbsp;&nbsp;&nbsp;&nbsp;浠撳偍浠诲姟淇℃伅</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_DZ_Wei\">&nbsp;&nbsp;&nbsp;&nbsp;鍚婅浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_rank_piecess\">&nbsp;&nbsp;&nbsp;&nbsp;鐜荤拑璋冨簭</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇浜�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_27.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_27.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_27);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_27);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_28(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_28 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_28.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_28.setParent(null);
-    _jspx_th_shiro_hasRole_28.setName("zhongkonglipian");
-    int _jspx_eval_shiro_hasRole_28 = _jspx_th_shiro_hasRole_28.doStartTag();
-    if (_jspx_eval_shiro_hasRole_28 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓┖鐞嗙墖绗肩鐞�<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKLPL_Info\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗艰鎯�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_LP_renwu\">&nbsp;&nbsp;&nbsp;&nbsp;鐞嗙墖绗间换鍔�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKLPL_ShangPianWei\">&nbsp;&nbsp;&nbsp;&nbsp;涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/hollowslicecage/manage/4\">&nbsp;&nbsp;&nbsp;&nbsp;#娴嬮噺璇︽儏</a></li>\r\n");
-        out.write("                   \t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/identifymachine/setup/4\">&nbsp;&nbsp;&nbsp;&nbsp;#娴嬮噺璁剧疆</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("                    <li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKLP_ShouDong\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖鐞嗙墖浼樺寲</a></li>\r\n");
-        out.write("                    <li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_28.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_28.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_28);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_28);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_29(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_29 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_29.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_29.setParent(null);
-    _jspx_th_shiro_hasRole_29.setName("zhongkong1");
-    int _jspx_eval_shiro_hasRole_29 = _jspx_th_shiro_hasRole_29.doStartTag();
-    if (_jspx_eval_shiro_hasRole_29 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓┖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKSP_renwu?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;浠诲姟闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_ShangPianWei?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_29.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_29.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_29);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_29);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_30(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_30 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_30.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_30.setParent(null);
-    _jspx_th_shiro_hasRole_30.setName("zhongkong2");
-    int _jspx_eval_shiro_hasRole_30 = _jspx_th_shiro_hasRole_30.doStartTag();
-    if (_jspx_eval_shiro_hasRole_30 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓┖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇浜�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKSP_renwu?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浠诲姟闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_ShangPianWei?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;浜�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_30.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_30.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_30);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_30);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_31(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_31 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_31.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_31.setParent(null);
-    _jspx_th_shiro_hasRole_31.setName("zhongkong3");
-    int _jspx_eval_shiro_hasRole_31 = _jspx_th_shiro_hasRole_31.doStartTag();
-    if (_jspx_eval_shiro_hasRole_31 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓┖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇涓�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKSP_renwu?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;浠诲姟闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_ShangPianWei?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_31.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_31.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_31);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_31);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_32(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_32 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_32.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_32.setParent(null);
-    _jspx_th_shiro_hasRole_32.setName("zhongkong4");
-    int _jspx_eval_shiro_hasRole_32 = _jspx_th_shiro_hasRole_32.doStartTag();
-    if (_jspx_eval_shiro_hasRole_32 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>涓┖绠$悊<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\t\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKRW_renwu?group=4\">&nbsp;&nbsp;&nbsp;&nbsp;棰嗗彇鍥�#绾夸换鍔�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZKSP_renwu?group=4\">&nbsp;&nbsp;&nbsp;&nbsp;浠诲姟闃熷垪</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_ShangPianWei?group=4\">&nbsp;&nbsp;&nbsp;&nbsp;鍥�#涓婄墖浣嶄俊鎭�</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=4\">&nbsp;&nbsp;&nbsp;&nbsp;鍥�#鎶樺集鏄剧ず</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_ZK_dayin?group=4\">&nbsp;&nbsp;&nbsp;&nbsp;鍥�#鎵撳嵃</a></li>\t\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_32.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_32.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_32);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_32);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_33(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_33 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_33.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_33.setParent(null);
-    _jspx_th_shiro_hasRole_33.setName("zhewan1");
-    int _jspx_eval_shiro_hasRole_33 = _jspx_th_shiro_hasRole_33.doStartTag();
-    if (_jspx_eval_shiro_hasRole_33 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鎶樺集<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=1\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖1#鎶樺集</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_33.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_33.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_33);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_33);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_34(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_34 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_34.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_34.setParent(null);
-    _jspx_th_shiro_hasRole_34.setName("zhewan2");
-    int _jspx_eval_shiro_hasRole_34 = _jspx_th_shiro_hasRole_34.doStartTag();
-    if (_jspx_eval_shiro_hasRole_34 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鎶樺集<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=2\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖2#鎶樺集</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_34.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_34.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_34);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_34);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_35(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_35 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_35.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_35.setParent(null);
-    _jspx_th_shiro_hasRole_35.setName("zhewan3");
-    int _jspx_eval_shiro_hasRole_35 = _jspx_th_shiro_hasRole_35.doStartTag();
-    if (_jspx_eval_shiro_hasRole_35 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>鎶樺集<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"");
-        out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-        out.write("/mesview/_WG_Xianshi?group=3\">&nbsp;&nbsp;&nbsp;&nbsp;涓┖3#鎶樺集</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_35.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_35.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_35);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_35);
-    return false;
-  }
-
-  private boolean _jspx_meth_shiro_hasRole_36(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  shiro:hasRole
-    org.apache.shiro.web.tags.HasRoleTag _jspx_th_shiro_hasRole_36 = (org.apache.shiro.web.tags.HasRoleTag) _jspx_tagPool_shiro_hasRole_name.get(org.apache.shiro.web.tags.HasRoleTag.class);
-    _jspx_th_shiro_hasRole_36.setPageContext(_jspx_page_context);
-    _jspx_th_shiro_hasRole_36.setParent(null);
-    _jspx_th_shiro_hasRole_36.setName("jiajiaoxian");
-    int _jspx_eval_shiro_hasRole_36 = _jspx_th_shiro_hasRole_36.doStartTag();
-    if (_jspx_eval_shiro_hasRole_36 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
-      do {
-        out.write("\r\n");
-        out.write("\t\t\t<div class=\"menu\" >\r\n");
-        out.write("\t\t\t\t<div class='menu_title'>澶硅兌<span class='indicator' id='indicator'>鈻�</span></div>\r\n");
-        out.write("\t\t\t\t<ul class='test'>\r\n");
-        out.write("\t\t\t\t\t<li><a href=\"http://10.12.0.104:8080/GERP/pp/shengchanbaobiao/HTML/fenjiachanliangchaxun.jsp?gx=澶瑰眰\">&nbsp;&nbsp;&nbsp;&nbsp;澶硅兌绾�</a></li>\r\n");
-        out.write("\t\t\t\t\t<li class='item_divider'></li>\t\r\n");
-        out.write("\t\t\t\t</ul>\r\n");
-        out.write("\t\t\t</div>\r\n");
-        out.write("\t\t");
-        int evalDoAfterBody = _jspx_th_shiro_hasRole_36.doAfterBody();
-        if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
-          break;
-      } while (true);
-    }
-    if (_jspx_th_shiro_hasRole_36.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_36);
-      return true;
-    }
-    _jspx_tagPool_shiro_hasRole_name.reuse(_jspx_th_shiro_hasRole_36);
-    return false;
-  }
-
-  private boolean _jspx_meth_sitemesh_body_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  sitemesh:body
-    com.opensymphony.module.sitemesh.taglib.decorator.BodyTag _jspx_th_sitemesh_body_0 = (com.opensymphony.module.sitemesh.taglib.decorator.BodyTag) _jspx_tagPool_sitemesh_body_nobody.get(com.opensymphony.module.sitemesh.taglib.decorator.BodyTag.class);
-    _jspx_th_sitemesh_body_0.setPageContext(_jspx_page_context);
-    _jspx_th_sitemesh_body_0.setParent(null);
-    int _jspx_eval_sitemesh_body_0 = _jspx_th_sitemesh_body_0.doStartTag();
-    if (_jspx_th_sitemesh_body_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_sitemesh_body_nobody.reuse(_jspx_th_sitemesh_body_0);
-      return true;
-    }
-    _jspx_tagPool_sitemesh_body_nobody.reuse(_jspx_th_sitemesh_body_0);
-    return false;
-  }
-}
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/account/login_jsp.java" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/account/login_jsp.java"
deleted file mode 100644
index 80fe82f..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/account/login_jsp.java"
+++ /dev/null
@@ -1,264 +0,0 @@
-package org.apache.jsp.WEB_002dINF.views.account;
-
-import javax.servlet.*;
-import javax.servlet.http.*;
-import javax.servlet.jsp.*;
-import com.northglass.util.SetupUtil;
-import org.apache.shiro.web.filter.authc.FormAuthenticationFilter;
-
-public final class login_jsp extends org.apache.jasper.runtime.HttpJspBase
-    implements org.apache.jasper.runtime.JspSourceDependent {
-
-  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
-
-  private static java.util.Vector _jspx_dependants;
-
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_c_set_var_value_nobody;
-
-  private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;
-
-  public Object getDependants() {
-    return _jspx_dependants;
-  }
-
-  public void _jspInit() {
-    _jspx_tagPool_c_set_var_value_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-  }
-
-  public void _jspDestroy() {
-    _jspx_tagPool_c_set_var_value_nobody.release();
-  }
-
-  public void _jspService(HttpServletRequest request, HttpServletResponse response)
-        throws java.io.IOException, ServletException {
-
-    PageContext pageContext = null;
-    HttpSession session = null;
-    ServletContext application = null;
-    ServletConfig config = null;
-    JspWriter out = null;
-    Object page = this;
-    JspWriter _jspx_out = null;
-    PageContext _jspx_page_context = null;
-
-    try {
-      response.setContentType("text/html;charset=UTF-8");
-      pageContext = _jspxFactory.getPageContext(this, request, response,
-      			null, true, 8192, true);
-      _jspx_page_context = pageContext;
-      application = pageContext.getServletContext();
-      config = pageContext.getServletConfig();
-      session = pageContext.getSession();
-      out = pageContext.getOut();
-      _jspx_out = out;
-      _jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");
-
-      out.write("\n");
-      out.write("\n");
-      out.write("\n");
-      out.write("\n");
-      if (_jspx_meth_c_set_0(_jspx_page_context))
-        return;
-      out.write("\n");
-      out.write("\n");
-      out.write("<!DOCTYPE html>\n");
-      out.write("<html>\n");
-      out.write("<head>\n");
-      out.write("  <meta charset=\"utf-8\">\n");
-      out.write("  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n");
-      out.write("  <title>MES | 鐧诲綍</title>\n");
-      out.write("  <!-- Tell the browser to be responsive to screen width -->\n");
-      out.write("  <meta content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\" name=\"viewport\">\n");
-      out.write("  <!-- Bootstrap 3.3.7 -->\n");
-      out.write("  <link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/bootstrap/dist/css/bootstrap.min.css\">\n");
-      out.write("  <!-- Font Awesome -->\n");
-      out.write("  <link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/font-awesome/css/font-awesome.min.css\">\n");
-      out.write("  <!-- Ionicons -->\n");
-      out.write("  <link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/Ionicons/css/ionicons.min.css\">\n");
-      out.write("  <!-- Theme style -->\n");
-      out.write("  <link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/dist/css/AdminLTE.min.css\">\n");
-      out.write("  <!-- iCheck -->\n");
-      out.write("  <link rel=\"stylesheet\" href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/plugins/iCheck/square/blue.css\">\n");
-      out.write("\n");
-      out.write("  <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->\n");
-      out.write("  <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->\n");
-      out.write("  <!--[if lt IE 9]>\n");
-      out.write("  <script src=\"https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js\"></script>\n");
-      out.write("  <script src=\"https://oss.maxcdn.com/respond/1.4.2/respond.min.js\"></script>\n");
-      out.write("  <![endif]-->\n");
-      out.write("\n");
-      out.write("  <!-- Google Font -->\n");
-      out.write("  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic\">\n");
-      out.write("\n");
-      out.write("<!-- jQuery 3 -->\n");
-      out.write("<script src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/jquery/dist/jquery.min.js\"></script>\n");
-      out.write("<!-- Bootstrap 3.3.7 -->\n");
-      out.write("<script src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/bower_components/bootstrap/dist/js/bootstrap.min.js\"></script>\n");
-      out.write("<!-- iCheck -->\n");
-      out.write("<script src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/AdminLTE/plugins/iCheck/icheck.min.js\"></script>\n");
-      out.write("<script>\n");
-      out.write("  $(function () {\n");
-      out.write("    $('input').iCheck({\n");
-      out.write("      checkboxClass: 'icheckbox_square-blue',\n");
-      out.write("      radioClass: 'iradio_square-blue',\n");
-      out.write("      increaseArea: '20%' /* optional */\n");
-      out.write("    });\n");
-      out.write("  });\n");
-      out.write("</script>\n");
-      out.write("\n");
-      out.write(" <style>\n");
-      out.write("        div.background\n");
-      out.write("        {\n");
-      out.write("            width:400px;\n");
-      out.write("            height:270px;\n");
-      out.write("            margin-left:-5%;\n");
-      out.write("            border:1px solid black;\n");
-      out.write("            background:rgba(0,0,0,0.05);/*鍏抽敭浠g爜*/\n");
-      out.write("            z-index:100;\n");
-      out.write("        }\n");
-      out.write("        \n");
-      out.write("        div.transbox\n");
-      out.write("        {\n");
-      out.write("            width:300px;\n");
-      out.write("            height:35px;\n");
-      out.write("            margin-left:15%;\n");
-      out.write("            margin-top:50px;\n");
-      out.write("            border:0px solid rgba(255,0,0,0.3);\n");
-      out.write("            z-index:101;\n");
-      out.write("        }\n");
-      out.write("        \n");
-      out.write("        .thumbnaildiv {\n");
-      out.write("        height: 150px;\n");
-      out.write("        text-align: center;\n");
-      out.write("        padding: 15px;\n");
-      out.write("    }\n");
-      out.write("    </style>\n");
-      out.write("</head>\n");
-      out.write("\n");
-      out.write("\n");
-      out.write("<body style=\"background-image: url('/gmms2/static/images/glass.jpg'); background-size: cover;\">\n");
- if (SetupUtil.databaseExists()) { 
-      out.write("\n");
-      out.write("<div style=\"margin-top: 150px;\"> \n");
-      out.write("<div align=\"center\"><img alt=\"logo\" src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/images/blacklogo.png\" style=\"width: 450px;height: 100px; \"></div>\n");
-      out.write("<div class=\"login-box\" style=\"margin-top: 10px;\">\n");
-      out.write("  <!-- <div class=\"login-logo\">\n");
-      out.write("    <img alt=\"logo\" src=\"/gmms2/static/images/logo.jpg\">\n");
-      out.write("  </div> -->\n");
-      out.write(" \n");
-      out.write("  \n");
-      out.write("  <!-- /.login-logo -->\n");
-      out.write("  <div class=\"background\" style=\"border-radius:3px;\" id=\"mydiv\">\n");
-      out.write("    <form action=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/login\" method=\"post\">\n");
-      out.write("    ");
-
-	String error = (String) request.getAttribute(FormAuthenticationFilter.DEFAULT_ERROR_KEY_ATTRIBUTE_NAME);
-	if(error != null){
-	
-      out.write("\n");
-      out.write("\t\t<div class=\"alert alert-error input-medium controls\">\n");
-      out.write("\t\t\t<button class=\"close\" data-dismiss=\"alert\">脳</button>鐧诲綍澶辫触锛岃閲嶈瘯.\n");
-      out.write("\t\t</div>\n");
-      out.write("\t");
-
-	}
-	
-      out.write("\n");
-      out.write("    <!-- <div style =\"font-size:25px;text-align:center \">鐜荤拑鐢熶骇绠$悊绯荤粺</div><br><br> -->\n");
-      out.write("      <div class=\"transbox\">\n");
-      out.write("        <font size=\"4\">鐢ㄦ埛鍚�:</font><input type=\"text\" name=\"username\" class=\"form-control\" placeholder=\"璇疯緭鍏ヨ处鎴穃">\n");
-      out.write("        <span class=\"glyphicon glyphicon-user form-control-feedback\"></span>\n");
-      out.write("      </div>\n");
-      out.write("      <div class=\"transbox\">\n");
-      out.write("        <font size=\"4\">瀵嗙爜:</font><input type=\"password\" name=\"password\" class=\"form-control\" placeholder=\"璇疯緭鍏ュ瘑鐮乗">\n");
-      out.write("        <span class=\"glyphicon glyphicon-lock form-control-feedback\"></span>\n");
-      out.write("      </div>\n");
-      out.write("      <div class=\"transbox\">\n");
-      out.write("        <div class=\"col-xs-8\">\n");
-      out.write("          <div class=\"checkbox icheck\">\n");
-      out.write("          \t<label style=\"color: red;\">\n");
-      out.write("              \t璁颁綇<input type=\"checkbox\">\n");
-      out.write("            </label>\n");
-      out.write("          </div>\n");
-      out.write("        </div>\n");
-      out.write("        <!-- /.col -->\n");
-      out.write("        <div class=\"col-xs-4\">\n");
-      out.write("          <button type=\"submit\" class=\"btn btn-primary btn-block btn-flat\">鐧� 褰�</button>\n");
-      out.write("        </div>\n");
-      out.write("        <!-- /.col -->\n");
-      out.write("      </div>\n");
-      out.write("    </form>\n");
-      out.write("  </div>\n");
-      out.write("  <!-- /.login-box-body -->\n");
-      out.write("</div>\n");
-      out.write("<!-- /.login-box -->\n");
-      out.write("\n");
-      out.write("</div>\n");
-      out.write("<div style=\"margin-left: 2%; margin-top: 19%;\"><strong>Copyright &copy; 2014-2018 <a href=\"#\">涓婃捣鍖楃幓鑷姩鍖栨妧鏈湁闄愬叕鍙�</a>.</strong> All rights reserved.</div>\n");
-      out.write(" ");
- } else { 
-      out.write("\n");
-      out.write("        \t\t\t\t\t<a href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/systemmgmt/initializeDatabase\" class=\"btn btn-large btn-success\">鍒涘缓鏁版嵁搴撹〃</a>\n");
-      out.write("        \t\t\t\t\t<br><br>\n");
-      out.write("        \t\t\t\t\t<p align=\"left\">棣栨閮ㄧ讲绯荤粺鏃讹紝鐐瑰嚮姝ゆ寜閽皢鍒涘缓鏁版嵁搴撹〃锛屽苟瀵煎叆璐ф灦銆佸悐瑁呬綅銆佸垏鍓叉満銆佷笂鐗囦綅淇℃伅</p>\n");
-      out.write("       \t\t\n");
-      out.write("    ");
- } 
-      out.write("\n");
-      out.write(" \n");
-      out.write("</body>\n");
-      out.write("</html>\n");
-    } catch (Throwable t) {
-      if (!(t instanceof SkipPageException)){
-        out = _jspx_out;
-        if (out != null && out.getBufferSize() != 0)
-          out.clearBuffer();
-        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
-        else throw new ServletException(t);
-      }
-    } finally {
-      _jspxFactory.releasePageContext(_jspx_page_context);
-    }
-  }
-
-  private boolean _jspx_meth_c_set_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  c:set
-    org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _jspx_tagPool_c_set_var_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
-    _jspx_th_c_set_0.setPageContext(_jspx_page_context);
-    _jspx_th_c_set_0.setParent(null);
-    _jspx_th_c_set_0.setVar("ctx");
-    _jspx_th_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pageContext.request.contextPath}", java.lang.Object.class, (PageContext)_jspx_page_context, null));
-    int _jspx_eval_c_set_0 = _jspx_th_c_set_0.doStartTag();
-    if (_jspx_th_c_set_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-      return true;
-    }
-    _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-    return false;
-  }
-}
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/cutmanage/gettask_jsp.java" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/cutmanage/gettask_jsp.java"
deleted file mode 100644
index eb0bd7b..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/cutmanage/gettask_jsp.java"
+++ /dev/null
@@ -1,884 +0,0 @@
-package org.apache.jsp.WEB_002dINF.views.cutmanage;
-
-import javax.servlet.*;
-import javax.servlet.http.*;
-import javax.servlet.jsp.*;
-
-public final class gettask_jsp extends org.apache.jasper.runtime.HttpJspBase
-    implements org.apache.jasper.runtime.JspSourceDependent {
-
-  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
-
-  private static java.util.Vector _jspx_dependants;
-
-  static {
-    _jspx_dependants = new java.util.Vector(4);
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_banzu.jsp");
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_tishi.jsp");
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_QG_tijiaobaogong.jsp");
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_js_gongwei_mode.jsp");
-  }
-
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_c_set_var_value_nobody;
-
-  private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;
-
-  public Object getDependants() {
-    return _jspx_dependants;
-  }
-
-  public void _jspInit() {
-    _jspx_tagPool_c_set_var_value_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-  }
-
-  public void _jspDestroy() {
-    _jspx_tagPool_c_set_var_value_nobody.release();
-  }
-
-  public void _jspService(HttpServletRequest request, HttpServletResponse response)
-        throws java.io.IOException, ServletException {
-
-    PageContext pageContext = null;
-    HttpSession session = null;
-    ServletContext application = null;
-    ServletConfig config = null;
-    JspWriter out = null;
-    Object page = this;
-    JspWriter _jspx_out = null;
-    PageContext _jspx_page_context = null;
-
-    try {
-      response.setContentType("text/html; charset=utf-8");
-      pageContext = _jspxFactory.getPageContext(this, request, response,
-      			null, true, 8192, true);
-      _jspx_page_context = pageContext;
-      application = pageContext.getServletContext();
-      config = pageContext.getServletConfig();
-      session = pageContext.getSession();
-      out = pageContext.getOut();
-      _jspx_out = out;
-      _jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");
-
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      if (_jspx_meth_c_set_0(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\r\n");
-      out.write("<html>\r\n");
-      out.write("<head>\r\n");
-      out.write("\r\n");
-      out.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n");
-      out.write("<script type=\"text/javascript\"\r\n");
-      out.write("\tsrc=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/jquery/jquery-3.1.0.min.js\"></script>\r\n");
-      out.write("\t<script src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/js/ng/tb-2.0.js\" type=\"text/javascript\"></script>\r\n");
-      out.write("<title>棰嗗彇浠诲姟</title>\r\n");
-      out.write("<style>\r\n");
-      out.write(".box table tr th, .box table tr td {\r\n");
-      out.write("\ttext-align: center;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".table>tbody>tr>td {\r\n");
-      out.write("\tvertical-align: middle;\r\n");
-      out.write("\t/* content:middle; */\r\n");
-      out.write("\ttext-align: center;\r\n");
-      out.write("\tfont-weight: bold;\r\n");
-      out.write("\tfont-size: 16px;\r\n");
-      out.write("\t/* border: 1px solid green; */\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".table>thead>tr>th {\r\n");
-      out.write("\tfont-weight: bold;\r\n");
-      out.write("\tfont-size: 20px;\r\n");
-      out.write("\ttext-align: center;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write("h1 {\r\n");
-      out.write("\tdisplay: inline;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".s-style {\r\n");
-      out.write("\tfont-size: 18px;\r\n");
-      out.write("\tfont-weight: bold;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".s-title {\r\n");
-      out.write("\tfont-size: 18px;\r\n");
-      out.write("\t/*font-weight: bold;\r\n");
-      out.write("\t text-align :center; */\r\n");
-      out.write("\tvertical-align: middle;\r\n");
-      out.write("\ttext-align: center\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".sel-style {\r\n");
-      out.write("\twidth: 200px;\r\n");
-      out.write("\tfont-size: 20px;\r\n");
-      out.write("}\r\n");
-      out.write("</style>\r\n");
-      out.write("\r\n");
-      out.write("<script type=\"text/javascript\">\r\n");
-      out.write("\t$(document).ready(function(){\r\n");
-      out.write("  \t\tvar info = $(\"#info\").attr(\"info\");\r\n");
-      out.write("  \t\t$(\"#infos\").html(info);\r\n");
-      out.write("\t});\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction addload(id){\r\n");
-      out.write("\t  \t$.ajax({ \r\n");
-      out.write("\t\t\tasync: false, \r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\ttype:\"GET\", \r\n");
-      out.write("\r\n");
-      out.write("\t\t \turl:\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gottask?id=\"+id, \r\n");
-      out.write("\r\n");
-      out.write("\t\t\tdataType:\"text\", \r\n");
-      out.write("\r\n");
-      out.write("\t\t\tsuccess:function(data){\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\t  \t\r\n");
-      out.write("\t  \t\r\n");
-      out.write("\t\t  \t\r\n");
-      out.write("}\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction task(){\r\n");
-      out.write("\t\twindow.location.href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/task\";\r\n");
-      out.write("\t\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction updatedengluname(){\r\n");
-      out.write("\t\t  $(\"#updatedengluname\").modal('show');\r\n");
-      out.write("\t\r\n");
-      out.write("\t}\r\n");
-      out.write("\t  function updatedengluname1(){\r\n");
-      out.write("\t\t  \r\n");
-      out.write("\t\t  \tvar groups=document.getElementsByName('groups')[0].value;\r\n");
-      out.write("\t\t  \tvar dengluname=document.getElementById('dengluname').innerHTML;\r\n");
-      out.write("\t\t  \t$.ajax({\r\n");
-      out.write("\t  \t\tcache:false,\r\n");
-      out.write("\t\t\t\ttype:\"POST\",\r\n");
-      out.write("\t\t\t\tdataType : \"json\", \r\n");
-      out.write("\t\t\t \turl:\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/updatedengluname\",\r\n");
-      out.write("\t\t\t \tdata:{\r\n");
-      out.write("\t\t\t \t\t\"groups\":groups,\r\n");
-      out.write("\t\t\t \t\t\"username\":dengluname,\r\n");
-      out.write("\t\t\t \t},success:function(data){ \r\n");
-      out.write("\t\t\t \t\twindow.location.href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettask/\"+groups;\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t}); \r\n");
-      out.write("\t}\r\n");
-      out.write("\t  var gongyi=\"纾ㄨ竟\";\r\n");
-      out.write("\t  var group = ");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(";\r\n");
-      out.write("</script>\r\n");
-      out.write("</head>\r\n");
-      out.write("<body style=\"padding: 20px;\">\r\n");
-      out.write("\t<!-- Content Wrapper. Contains page content -->\r\n");
-      out.write("\t<div class=\"content-wrapper\">\r\n");
-      out.write("\t\t<input style=\"display: none\" type=\"text\" name=\"groups\"\r\n");
-      out.write("\t\t\tvalue=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\" />\r\n");
-      out.write("\t\t<!-- Content Header (Page header) -->\r\n");
-      out.write("\t\t<section class=\"content-header\">\r\n");
-      out.write("\t\t<h1>\r\n");
-      out.write("\t\t\t棰嗗彇 ");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(" 绾夸换鍔r\n");
-      out.write("\t\t\t&nbsp;&nbsp;\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<small>褰撳墠鐝粍:</small> &nbsp; <span id=\"s_current_banzu\"\r\n");
-      out.write("\t\t\t\t\tstyle=\"font-weight: bold;\"></span> &nbsp;\r\n");
-      out.write("\t\t\t\t<button id=\"btnBanZu\" type='button' class='btn btn-primary '\r\n");
-      out.write("\t\t\t\t\tonclick='onChangeBanZu()'>閫夋嫨鐝粍</button>\r\n");
-      out.write("\t\t\t\t\t&nbsp;\r\n");
-      out.write("\t\t\t\t<!-- <button id=\"btnOffWork\" type='button' class='btn btn-primary '\r\n");
-      out.write("\t\t\t\t\tonclick='offWork()'>涓嬬彮-鎶ュ伐鎻愪氦</button>\r\n");
-      out.write("\t\t\t\t&nbsp; -->\r\n");
-      out.write("\t\t\t\t<button id=\"btnOffWork\" type='button' class='btn btn-primary ' onclick='offWork()'>鍒囧壊-浜ч噺</button>\r\n");
-      out.write("\t\t\t\t&nbsp; \r\n");
-      out.write("\t\t\t\t&nbsp; \r\n");
-      out.write("\t\t\t\t<small>褰撳墠涓婄墖宸ヤ綅妯″紡:</small> &nbsp; \r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<button id=\"btnStatcionMode\" type='button' class='btn btn-primary' onclick='onChangeMode(");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(")' >鍗曞伐浣�</button>\r\n");
-      out.write("\t\t\t\t<small style='color:red'>锛堝崟鍑绘寜閽垏鎹㈠伐浣嶆ā寮忥級</small>\r\n");
-      out.write("\t\t\t\t&nbsp;\r\n");
-      out.write("\t\t\t");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${app}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\r\n");
-      out.write("\t\t\t<button type=\"button\"\r\n");
-      out.write("\t\t\t\tonclick=\"{location.href='");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettask/");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${line}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("'}\"\r\n");
-      out.write("\t\t\t\tclass=\"btn btn-primary\" id=\"app\">棰嗗彇 ");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${line}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(" 鍙风嚎浠诲姟</button>\r\n");
-      out.write("\t\t\t<button type=\"button\"\r\n");
-      out.write("\t\t\t\tonclick=\"{location.href='");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/lookOverStateTsaks/");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${line}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("'}\"\r\n");
-      out.write("\t\t\t\tclass=\"btn btn-primary\" id=\"app\">鏌ョ湅杩戞湡瀹屾垚浠诲姟</button>\r\n");
-      out.write("\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;<small>鍏�&nbsp;&nbsp;<strong\r\n");
-      out.write("\t\t\t\tstyle=\"color: black\">");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${total}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("</strong>&nbsp;&nbsp;鏉℃暟鎹甛r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t</small> \r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t\t");
-      out.write("\r\n");
-      out.write("\t\t</h1>\r\n");
-      out.write("\r\n");
-      out.write("\t\t<ol class=\"breadcrumb\">\r\n");
-      out.write("\t\t\t<li><a href=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx }", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/shelfmanager/taskimport\"><i\r\n");
-      out.write("\t\t\t\t\tclass=\"fa fa-reply\"></i>浠诲姟</a></li>\r\n");
-      out.write("\t\t\t<li class=\"active\">璇︽儏</li>\r\n");
-      out.write("\r\n");
-      out.write("\t\t</ol>\r\n");
-      out.write("\t\t</section>\r\n");
-      out.write("\r\n");
-      out.write("\t\t<div id=\"allstatu\" allstatu=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${allstatu}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\"></div>\r\n");
-      out.write("\t\t<div id=\"info\" info=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${info}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\"></div>\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t<div>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t<!-- Main content -->\r\n");
-      out.write("\t\t\t<section class=\"content container-fluid\">\r\n");
-      out.write("\t\t\t<div class=\"box box-default\" style=\"background-color: #D5EAFF;\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<!-- /.box-header -->\r\n");
-      out.write("\t\t\t\t<div class=\"box-body\" style=\"height: 600px; overflow-y: auto;\">\r\n");
-      out.write("\t\t\t\t\t<table class=\"table table-striped table-hover\"\r\n");
-      out.write("\t\t\t\t\t\tstyle=\"font-size: 18px;\" id=\"example2\">\r\n");
-      out.write("\t\t\t\t\t\t<thead>\r\n");
-      out.write("\t\t\t\t\t\t\t<tr>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th style=\"width: 80px;\">搴忓彿</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th style=\"width: 100px;\">ID</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th style=\"width: 200px;\">宸ョ▼鍙�</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th style=\"width: 120px;\">璁㈠崟鎬绘暟</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th style=\"width: 120px;\">鍘熺墖鎬绘暟</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th style=\"width: 200px;\">鐘舵��</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th style=\"width: 300px;\">鎿嶄綔</th>\r\n");
-      out.write("\t\t\t\t\t\t\t</tr>\r\n");
-      out.write("\t\t\t\t\t\t</thead>\r\n");
-      out.write("\t\t\t\t\t\t<tbody>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t\t<tr>");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${rawPackageslist}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t\t</tr>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t</tbody>\r\n");
-      out.write("\t\t\t\t\t</table>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t\t</section>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\t\t");
-      out.write("\r\n");
-      out.write("<!-- 鏇存崲鐝粍淇℃伅 -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"div_banzu\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\r\n");
-      out.write("\t<form class=\"form-horizontal\" role=\"form\">\r\n");
-      out.write("\t\t<div class=\"modal-dialog\">\r\n");
-      out.write("\t\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\t\taria-hidden=\"true\">&times;</button>\r\n");
-      out.write("\t\t\t\t\t<h3 class=\"modal-title\" id=\"UNum_AlertTitle\">鏇存崲鐝粍</h3>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-body\" style=\"text-align: left;\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<div class=\"form-group\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t<!-- <h4>\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t<label class=\"col-lg-4 control-label no-padding-right\"\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t\tstyle=\"font-weight: bolder;\">褰撳墠鐝粍 </label>\r\n");
-      out.write("\t\t\t\t\t\t\t\t</h4>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<div class=\"col-lg-6 input-group\">\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t<span class=\"input-group-addon s-style\" id='lckNO'>NG</span>\r\n");
-      out.write("\t\t\t\t\t\t\t\t</div> -->\r\n");
-      out.write("\t\t\t\t\t\t<br /> <br /> <br />\r\n");
-      out.write("\t\t\t\t\t\t<h4>\r\n");
-      out.write("\t\t\t\t\t\t\t<label class=\"col-lg-4 control-label no-padding-right\"\r\n");
-      out.write("\t\t\t\t\t\t\t\tstyle=\"font-weight: bolder;\">閫夋嫨鐝粍 </label>\r\n");
-      out.write("\t\t\t\t\t\t</h4>\r\n");
-      out.write("\t\t\t\t\t\t<div class=\"col-lg-6 input-group\">\r\n");
-      out.write("\t\t\t\t\t\t\t<select id=\"s_banzu\" class=\"span_tasktext form-control\"\r\n");
-      out.write("\t\t\t\t\t\t\t\tstyle=\"font-size: 18px\">\r\n");
-      out.write("\t\t\t\t\t\t\t</select>\r\n");
-      out.write("\t\t\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t\t\t<br /> <br /> <br />\r\n");
-      out.write("\t\t\t\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<div class=\"form-group\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t<p style=\"text-align: center; font-size: 20px; color: red\"\r\n");
-      out.write("\t\t\t\t\t\t\tid=\"bz-warring-info\"></p>\r\n");
-      out.write("\t\t\t\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-footer\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tdata-dismiss=\"modal\">鍙栨秷</button>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-danger btn-lg\" id=\"DEL_button\"\r\n");
-      out.write("\t\t\t\t\t\tonclick=\"OK_Submit('鐝粍')\">纭</button>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</form>\r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("<!-- 鏇存崲鐝粍 -->\r\n");
-      out.write("<script>\r\n");
-      out.write("var p_url = \"/gmms2/mesview/data/_public_manage\";\r\n");
-      out.write("\tfunction getCurrentBanZu() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\tleixing : \"褰撳墠鐝粍\",\r\n");
-      out.write("\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t\tline : group\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\tvar d = data[0][0];\r\n");
-      out.write("\t\t\t\tvar isstop=data[0][1];\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\tif(d==null || d==\"\"){\r\n");
-      out.write("\t\t\t\t//if(data.length==0){\r\n");
-      out.write("\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t\tcurrent_bz  = null;\r\n");
-      out.write("\t\t\t\t\t/* $(\"#btnBanZu\").attr(\"style\",\"display:\");\r\n");
-      out.write("\t\t\t\t\t$(\"#btnOffWork\").attr(\"style\",\"display:none\"); */\r\n");
-      out.write("\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t}else{\r\n");
-      out.write("\t\t\t\t\tcurrent_bz = data[0][0];\r\n");
-      out.write("\t\t\t\t\t$(\"#s_current_banzu\").text(data[0][0]);\r\n");
-      out.write("\t\t\t\t\t/* $(\"#btnOffWork\").attr('style',\"display:\");\r\n");
-      out.write("\t\t\t\t\t$(\"#btnBanZu\").attr('style',\"display:none\"); */\r\n");
-      out.write("\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t\tif(isstop!=null &&isstop!=\"\"){\r\n");
-      out.write("\t\t\t\t\tonChangeBanZu();\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\t\t\tleixing : \"鐝粍鍒楄〃\",\r\n");
-      out.write("\t\t\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t\t\t\tline : group\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\t\t\turl : p_url,\r\n");
-      out.write("\t\t\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t\t\td = data;\r\n");
-      out.write("\t\t\t\t\t\tvar html = \" <option selected=\\\"selected\\\"  value='0'>閫夋嫨鐝粍</option>\";\r\n");
-      out.write("\t\t\t\t\t\t$(\"#s_banzu\").empty();\r\n");
-      out.write("\t\t\t\t\t\tfor (var i = 0; i < d.length; i++) {\r\n");
-      out.write("\t\t\t\t\t\t\thtml += \" <option  value=\"+d[i][0]+\">\" + d[i][0]\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t+ \"</option>\";\r\n");
-      out.write("\t\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\t\tdocument.getElementById(\"s_banzu\").innerHTML += html;\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t//AddBPShow(2,isshow);\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\terror : function(data) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t});\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction onChangeBanZu() {\r\n");
-      out.write("\t\t$(\"#div_banzu\").modal('toggle');\r\n");
-      out.write("\t\t//$(\"#s_banzu\").selectedIndex= 0;\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction OK_Submit(type) {\r\n");
-      out.write("\r\n");
-      out.write("\t\tswitch (type) {\r\n");
-      out.write("\t\tcase \"鐝粍\":\r\n");
-      out.write("\t\t\tsetBanZu();\r\n");
-      out.write("\t\t\tbreak;\r\n");
-      out.write("\t\tcase \"娆$牬\":\r\n");
-      out.write("\t\t\tsetCiPo();\r\n");
-      out.write("\t\t\tbreak;\r\n");
-      out.write("\t\tdefault:\r\n");
-      out.write("\t\t\t;\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction setBanZu() {\r\n");
-      out.write("\r\n");
-      out.write("\t\tvar bz = $(\"#s_banzu\").val();\r\n");
-      out.write("\t\tif (bz == 0) {\r\n");
-      out.write("\t\t\t$(\"#bz-warring-info\").text(\"璇烽�夋嫨姝g‘鐨勭彮缁刓");\r\n");
-      out.write("\t\t\treturn;\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"淇敼\",\r\n");
-      out.write("\t\t\t\tleixing : \"鍙樻洿鐝粍\",\r\n");
-      out.write("\t\t\t\tline : group,\r\n");
-      out.write("\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t\tinfo : bz\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : 'text',\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\tif (data == 1) {\r\n");
-      out.write("\t\t\t\t\tcurrent_bz = bz;\r\n");
-      out.write("\t\t\t\t\t$(\"#s_current_banzu\").text(bz);\r\n");
-      out.write("\t\t\t\t\t$(\"#div_banzu\").modal('toggle');\r\n");
-      out.write("\t\t\t\t\tgetCurrentBanZu();\r\n");
-      out.write("\t\t\t\t\treturn;\r\n");
-      out.write("\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍鍙樻洿澶辫触,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍鍙樻洿寮傚父,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("/* \tfunction offWork(){\r\n");
-      out.write("\t\t $.ajax({\r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"淇敼\",\r\n");
-      out.write("\t\t\t\tleixing : \"鐝粍涓嬬彮\",\r\n");
-      out.write("\t\t\t\tline : group,\r\n");
-      out.write("\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : 'text',\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\tif (data == 1) {\r\n");
-      out.write("\t\t\t\t\tcurrent_bz = null;\r\n");
-      out.write("\t\t\t\t\t$(\"#s_current_banzu\").text(null);\r\n");
-      out.write("\t\t\t\t\t$(\"#btnOffWork\").attr(\"display\",\"none\");\r\n");
-      out.write("\t\t\t\t\t$(\"#btnBanZu\").attr(\"display\",\"\");\r\n");
-      out.write("\t\t\t\t\tgetCurrentBanZu();\r\n");
-      out.write("\t\t\t\t\treturn;\r\n");
-      out.write("\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍涓嬬彮澶辫触,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍涓嬬彮寮傚父,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t} */\r\n");
-      out.write("\t\r\n");
-      out.write("\tgetCurrentBanZu();\r\n");
-      out.write("</script>\r\n");
-      out.write("\r\n");
-      out.write("\t\t");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- 鎿嶄綔纭 -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"CZ_Sure\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\r\n");
-      out.write("\t<form class=\"form-horizontal\" role=\"form\">\r\n");
-      out.write("\t\t<div class=\"modal-dialog\">\r\n");
-      out.write("\t\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\t\taria-hidden=\"true\">&times;</button>\r\n");
-      out.write("\t\t\t\t\t<h3 class=\"modal-title\" id=\"CZ_Title\"></h3>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-body\" style=\"text-align: left;\">\r\n");
-      out.write("\t\t\t\t\t<h3 id=\"MsgShow\">\r\n");
-      out.write("\t\t\t\t\t\t鏄惁纭鎵ц鐜荤拑 &nbsp; <span id=\"czqr_Zhuangtai\"\r\n");
-      out.write("\t\t\t\t\t\t\tstyle=\"font-weight: bold\"></span> &nbsp; <span id=\"czqr_Ming\"\r\n");
-      out.write("\t\t\t\t\t\t\tstyle=\"font-weight: bold\"></span> &nbsp; 鎿嶄綔锛焅r\n");
-      out.write("\t\t\t\t\t</h3>\r\n");
-      out.write("\t\t\t\t\t<br/>\r\n");
-      out.write("<!-- \t\t\t\t\t<p id=\"p-yuanyin\" style=\"font-size: 15px; font-weight: bold;display:none\">\r\n");
-      out.write("\t\t\t\t\t\t<span style=\"font-weight: bold\">鍘熷洜锛�</span> <span id=\"error_mingxi\" style=\"font-color: red\"></span>\r\n");
-      out.write("\t\t\t\t\t</p> -->\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-footer\">\r\n");
-      out.write("\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tdata-dismiss=\"modal\" id=\"btnCancel\">鍙栨秷</button>\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tid=\"btnSure\">纭畾</button>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</form>\r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("<!-- 淇℃伅鎻愮ず -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"CZ_Msg\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\r\n");
-      out.write("\t<form class=\"form-horizontal\" role=\"form\">\r\n");
-      out.write("\t\t<div class=\"modal-dialog\">\r\n");
-      out.write("\t\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\t\taria-hidden=\"true\">&times;</button>\r\n");
-      out.write("\t\t\t\t\t<h3 class=\"modal-title\" id=\"TK_AlertTitle\">鎿嶄綔鎻愮ず锛�</h3>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-body\" style=\"text-align: left;\">\r\n");
-      out.write("\t\t\t\t\t<h3 id=\"MsgShow\">\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"cz_Ming\" style=\"font-weight: bold\"></span> <span\r\n");
-      out.write("\t\t\t\t\t\t\tid=\"cz_Zhuangtai\" style=\"font-weight: bold\"></span>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t</h3>\r\n");
-      out.write("\t\t\t\t\t<p style=\"font-size: 25px; font-weight: bold\">\r\n");
-      out.write("\t\t\t\t\t\t<span style=\"font-weight: bold\">鍘熷洜锛�</span> <span id=\"cz_mingxi\"></span>\r\n");
-      out.write("\t\t\t\t\t</p>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-footer\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tdata-dismiss=\"modal\">纭畾</button>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</form>\r\n");
-      out.write("</div>");
-      out.write("\r\n");
-      out.write("\t\t");
-      out.write("\r\n");
-      out.write("<!-- 娴佺▼鍗¤鎯� -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"baogong_info\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\"\r\n");
-      out.write("\tstyle=\"overflow-y: auto; height: 99%\">\r\n");
-      out.write("\t<div class=\"modal-dialog\" style=\"width: 80%; height: 100%\">\r\n");
-      out.write("\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\taria-hidden=\"true\" data-backdrop=\"static\">&times;</button>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<p class=\"modal-title\">\r\n");
-      out.write("\t\t\t\t\t<span id=\"bg_title\" style=\"font-weight: bolder; font-size: 25px\"></span>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<button id = \"btnBGTJ\" type=\"button\" class='btn btn-large btn-success' onclick=\"TiJiaoBaoGong()\">鎻愪氦鎶ュ伐</button>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"wg_ps\" style=\"font-weight: bolder; font-size: 18px\"></span>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t</p>\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t<div class=\"modal-body\">\r\n");
-      out.write("\t\t\t\t<div class=\"no-padding\" id=\"bg_detail\"></div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t\t<div class=\"modal-footer\"></div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</div>\r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- 鍘熺墖璇︽儏 -->\r\n");
-      out.write("<script>\r\n");
-      out.write("\tvar url = \"\";  \r\n");
-      out.write("\tvar p_url = \"/gmms2/mesview/data/_public_manage\";\r\n");
-      out.write("\t\r\n");
-      out.write("\tvar current_lck = null;\r\n");
-      out.write("\tvar lck_opt = {\r\n");
-      out.write("\t\ttable : {\r\n");
-      out.write("\t\t\tstyle : \"width:100%\",\r\n");
-      out.write("\t\t\t\"class\" : \"table table-striped table-hover\"\r\n");
-      out.write("\t\t},\r\n");
-      out.write("\t\tcolumns : [\r\n");
-      out.write("\t\t{\r\n");
-      out.write("\t\t\tname : \"\",\r\n");
-      out.write("\t\t\tbinding : 0,\r\n");
-      out.write("\t\t\t//editAble:true,//璁剧疆鍒楀彲缂栬緫\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t//璁剧疆鍒楀彲鎼滅储\r\n");
-      out.write("\t\t}, {\r\n");
-      out.write("\t\t\tname : \"瀹絓",\r\n");
-      out.write("\t\t\tbinding : 1,\r\n");
-      out.write("\t\t\t//type : \"element\",\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}, {\r\n");
-      out.write("\t\t\tname : \"楂榎",\r\n");
-      out.write("\t\t\tbinding : 2,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鍘歕",\r\n");
-      out.write("\t\t\tbinding : 3,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"绫诲瀷\",\r\n");
-      out.write("\t\t\tbinding : 4,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鎵规鍙穃",\r\n");
-      out.write("\t\t\tbinding : 5,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鏁伴噺\",\r\n");
-      out.write("\t\t\tbinding : 6,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鐝粍\",\r\n");
-      out.write("\t\t\tbinding : 7,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}/* , {\r\n");
-      out.write("\t\t\tname : \"鎿嶄綔\",\r\n");
-      out.write("\t\t\tbinding : 10,\r\n");
-      out.write("\t\t\tstyle : \"width:15%;\",\r\n");
-      out.write("\t\t\ttype : \"element\",\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}  */]\r\n");
-      out.write("\t};\r\n");
-      out.write("\r\n");
-      out.write("\t//鍒涘缓琛╘r\n");
-      out.write("\tvar bg_db = createTable(document.getElementById(\"bg_detail\"), lck_opt);\r\n");
-      out.write("\r\n");
-      out.write("\t//鍔犺浇琛ㄦ牸鍐呭\t\t\r\n");
-      out.write("\tfunction LoadBGTable(Id) {\r\n");
-      out.write("\t\tvar wangong_prices=0;\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\t\tleixing : \"鍒囧壊鍘熺墖璇︽儏\",\r\n");
-      out.write("\t\t\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\t\t\tline : group\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\t\t\turl : p_url,\r\n");
-      out.write("\t\t\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t\t\tvar d = data;\r\n");
-      out.write("\t\t\t\t\t\tfor (var i = 0; i < d.length; i++) {\r\n");
-      out.write("\t\t\t\t\t\t\td[i][0] = i+1;\r\n");
-      out.write("\t\t\t\t\t\t\twangong_prices+=d[i][6];\r\n");
-      out.write("\t\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\t\tbg_db.update(d);\r\n");
-      out.write("\t\t\t\t\t\t$(\"#wg_ps\").text(\"鍒囧壊鎬荤墖鏁�:\"+wangong_prices);\r\n");
-      out.write("\t\t\t\t\t\t/* alert(posun_mianji);\r\n");
-      out.write("\t\t\t\t\t\talert(wangong_mianji); */\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\terror : function(data) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t//$(\"#lck_Info\").modal('toggle');\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t});\r\n");
-      out.write("\t\t//a = true;\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction offWork() {\r\n");
-      out.write("\t\t$(\"#bg_title\").text(\r\n");
-      out.write("\t\t\t\t\"鍒囧壊 \" + group + \" 绾�           \")\r\n");
-      out.write("\t\tLoadBGTable(group);\r\n");
-      out.write("\t\t$(\"#baogong_info\").modal('toggle');\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\tfunction TiJiaoBaoGong() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"鍒囧壊鎻愪氦\",\r\n");
-      out.write("\t\t\t\tline : group,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : \"text\",\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t$('#baogong_info').modal(\"toggle\");\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").text(\"鎶ュ伐鎻愪氦\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").text(\"鎴愬姛\");\r\n");
-      out.write("\t\t\t\t//$(\"#cz_mingxi\").text(data);\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t\tonChangeBanZu();\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").text(\"鎶ュ伐鎻愪氦\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").text(\"澶辫触\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_mingxi\").text(data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("</script>\r\n");
-      out.write('\r');
-      out.write('\n');
-      out.write("\r\n");
-      out.write("\t</div>\r\n");
-      out.write("\t");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- 娴佺▼鍗¤鎯� -->\r\n");
-      out.write("<script>\r\n");
-      out.write("\tfunction onChangeMode() {\r\n");
-      out.write("\t\t$(\"#CZ_Sure\").modal(\"toggle\");\r\n");
-      out.write("\t\t$(\"#MsgShow\").html(\"鏄惁纭鏇存柊 \" + group + \" 鍙风敓浜х嚎鍒囧壊涓婄墖浣嶆ā寮忥紵\");\r\n");
-      out.write("\t\t$(\"#btnSure\").attr('onclick', \"changeMode()\");\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\t//宸ヤ綅妯″紡鍙樻洿\r\n");
-      out.write("\tfunction changeMode() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : \"text\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tleixing : \"鍙樻洿鍒囧壊宸ヤ綅妯″紡\",\r\n");
-      out.write("\t\t\t\tcaozuo : \"淇敼\",\r\n");
-      out.write("\t\t\t\tline : group\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(date) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\tvar z = date.trim();\r\n");
-      out.write("\t\t\t\tif (z = \"1\") {\r\n");
-      out.write("\t\t\t\t\tvar zt = $(\"#btnStatcionMode\").html();\r\n");
-      out.write("\t\t\t\t\tif (zt == \"鍗曞伐浣峔") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html('鍙屽伐浣�');\r\n");
-      out.write("\t\t\t\t\t} else if (zt == \"鍙屽伐浣峔") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"鍗曞伐浣峔");\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t$(\"#btnStatcionMode\").html(\"寮傚父锛歕" + z);\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Sure\").modal(\"toggle\");\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(date) {\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Sure\").modal(\"toggle\");\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").html(\"鏇存敼\" + group + \"绾垮垏鍓蹭笂鐗囦綅妯″紡锛歕");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").html(\"閿欒锛侊紒锛乗" + date);\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").attr(\"style\", \"color:red;\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_mingxi\").html(\"\");\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\t//鑾峰彇浜х嚎鍒囧壊宸ヤ綅妯″紡\r\n");
-      out.write("\tfunction getCutStationMode() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tleixing : \"鍒囧壊宸ヤ綅妯″紡\",\r\n");
-      out.write("\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\tline : group\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(date) {\r\n");
-      out.write("\t\t\t\tvar d = date;\r\n");
-      out.write("\t\t\t\tif (d.length = 1) {\r\n");
-      out.write("\t\t\t\t\tvar z = d[0][0];\r\n");
-      out.write("\t\t\t\t\tif (z == \"1\") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"鍗曞伐浣峔");\r\n");
-      out.write("\t\t\t\t\t} else if (z == \"2\") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"鍙屽伐浣峔");\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"寮傚父锛歕" + z);\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function() {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tgetCutStationMode();\r\n");
-      out.write("</script>\r\n");
-      out.write("\r\n");
-      out.write("\t<!-- /.content -->\r\n");
-      out.write("\t<!-- /.content-wrapper -->\r\n");
-      out.write("\t<!-- page script -->\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("</body>\r\n");
-      out.write("</html>");
-    } catch (Throwable t) {
-      if (!(t instanceof SkipPageException)){
-        out = _jspx_out;
-        if (out != null && out.getBufferSize() != 0)
-          out.clearBuffer();
-        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
-        else throw new ServletException(t);
-      }
-    } finally {
-      _jspxFactory.releasePageContext(_jspx_page_context);
-    }
-  }
-
-  private boolean _jspx_meth_c_set_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  c:set
-    org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _jspx_tagPool_c_set_var_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
-    _jspx_th_c_set_0.setPageContext(_jspx_page_context);
-    _jspx_th_c_set_0.setParent(null);
-    _jspx_th_c_set_0.setVar("ctx");
-    _jspx_th_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pageContext.request.contextPath}", java.lang.Object.class, (PageContext)_jspx_page_context, null));
-    int _jspx_eval_c_set_0 = _jspx_th_c_set_0.doStartTag();
-    if (_jspx_th_c_set_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-      return true;
-    }
-    _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-    return false;
-  }
-}
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/cutmanage/gotasks_jsp.java" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/cutmanage/gotasks_jsp.java"
deleted file mode 100644
index f0f7a69..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/cutmanage/gotasks_jsp.java"
+++ /dev/null
@@ -1,1225 +0,0 @@
-package org.apache.jsp.WEB_002dINF.views.cutmanage;
-
-import javax.servlet.*;
-import javax.servlet.http.*;
-import javax.servlet.jsp.*;
-
-public final class gotasks_jsp extends org.apache.jasper.runtime.HttpJspBase
-    implements org.apache.jasper.runtime.JspSourceDependent {
-
-  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
-
-  private static java.util.Vector _jspx_dependants;
-
-  static {
-    _jspx_dependants = new java.util.Vector(5);
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_banzu.jsp");
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_tijiaobaogong.jsp");
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_tishi.jsp");
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_QG_tijiaobaogong.jsp");
-    _jspx_dependants.add("/WEB-INF/views/mes/view/modal_js_gongwei_mode.jsp");
-  }
-
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_c_set_var_value_nobody;
-
-  private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;
-
-  public Object getDependants() {
-    return _jspx_dependants;
-  }
-
-  public void _jspInit() {
-    _jspx_tagPool_c_set_var_value_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-  }
-
-  public void _jspDestroy() {
-    _jspx_tagPool_c_set_var_value_nobody.release();
-  }
-
-  public void _jspService(HttpServletRequest request, HttpServletResponse response)
-        throws java.io.IOException, ServletException {
-
-    PageContext pageContext = null;
-    HttpSession session = null;
-    ServletContext application = null;
-    ServletConfig config = null;
-    JspWriter out = null;
-    Object page = this;
-    JspWriter _jspx_out = null;
-    PageContext _jspx_page_context = null;
-
-    try {
-      response.setContentType("text/html;charset=UTF-8");
-      pageContext = _jspxFactory.getPageContext(this, request, response,
-      			null, true, 8192, true);
-      _jspx_page_context = pageContext;
-      application = pageContext.getServletContext();
-      config = pageContext.getServletConfig();
-      session = pageContext.getSession();
-      out = pageContext.getOut();
-      _jspx_out = out;
-      _jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");
-
-      out.write("\r\n");
-      out.write("\r\n");
-      if (_jspx_meth_c_set_0(_jspx_page_context))
-        return;
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<html>\r\n");
-      out.write("<head>\r\n");
-      out.write("<script type=\"text/javascript\"\r\n");
-      out.write("\tsrc=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/jquery/jquery-3.1.0.min.js\"></script>\r\n");
-      out.write("<script src=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/static/js/ng/tb-2.0.js\" type=\"text/javascript\"></script>\r\n");
-      out.write("<script type=\"text/javascript\">\r\n");
-      out.write("\t//鍋滄椤甸潰鑷姩鍒锋柊\r\n");
-      out.write("\r\n");
-      out.write("\tfunction delecttask(groups,id) {\r\n");
-      out.write("\t\t//disableAutoRefresh();\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\tasync : false,\r\n");
-      out.write("\r\n");
-      out.write("\t\t\ttype : \"GET\",\r\n");
-      out.write("\r\n");
-      out.write("\t\t\turl : \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/delecttask/\" + id +\"/\" +groups,\r\n");
-      out.write("\r\n");
-      out.write("\t\t\tdataType : \"text\",\r\n");
-      out.write("\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\twindow.location.href = \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettask/\" + groups;\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\t\talert(groups);\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction delecttask1(groups,id) {\r\n");
-      out.write("\t\t//disableAutoRefresh();disableAutoRefresh();\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\tasync : false,\r\n");
-      out.write("\r\n");
-      out.write("\t\t\ttype : \"GET\",\r\n");
-      out.write("\r\n");
-      out.write("\t\t\turl : \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/delecttask1/\" + id+\"/\" +groups,\r\n");
-      out.write("\r\n");
-      out.write("\t\t\tdataType : \"text\",\r\n");
-      out.write("\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\twindow.location.href = \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettask/\" + groups;\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction updatetask(id) {\r\n");
-      out.write("\t\t//disableAutoRefresh();\r\n");
-      out.write("\t\tvar groups = document.getElementsByName('groups')[0].value;\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\tcache : false,\r\n");
-      out.write("\t\t\ttype : \"POST\",\r\n");
-      out.write("\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\turl : \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/updatetask\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\"id\" : id,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\twindow.location.href = \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettask/\" + groups;\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction updatetask1(id) {\r\n");
-      out.write("\t\t//disableAutoRefresh();\r\n");
-      out.write("\t\tvar groups = document.getElementsByName('groups')[0].value;\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\tcache : false,\r\n");
-      out.write("\t\t\ttype : \"POST\",\r\n");
-      out.write("\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\turl : \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/updatetask1\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\"id\" : id,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\twindow.location.href = \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettask/\" + groups;\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction collectingTasks() {\r\n");
-      out.write("\t\tif(typeof stopRefresh === \"function\"){\r\n");
-      out.write("\t\t\tstopRefresh();\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\tvar groups = document.getElementsByName('groups')[0].value;\r\n");
-      out.write("\t\tvar state = document.getElementsByName('state')[0].value;\r\n");
-      out.write("\t\tvar fileName = document.getElementById(\"fileName\").innerHTML;\r\n");
-      out.write("\t\tif(state==\"0\"&&fileName.includes('P')){\r\n");
-      out.write("\t\t\twindow.location.href = \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettasks/\" + groups;\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t\tif(state==\"1\"){\r\n");
-      out.write("\t\t\talert(\"褰撳墠宸插瓨鍦ㄤ袱涓换鍔")\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t\tif(!fileName.includes('P')){\r\n");
-      out.write("\t\t\talert(\"琛ョ墖/鎵嬪姩宸ョ▼璇风粨鏉熶换鍔″啀棰嗗彇\")\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction updatedengluname() {\r\n");
-      out.write("\t\t$(\"#updatedengluname\").modal('show');\r\n");
-      out.write("\t\t//disableAutoRefresh();\r\n");
-      out.write("\t}\r\n");
-      out.write("\tfunction updatedengluname1() {\r\n");
-      out.write("\t\t//disableAutoRefresh();\r\n");
-      out.write("\t\tvar groups = document.getElementsByName('groups')[0].value;\r\n");
-      out.write("\t\tvar dengluname = document.getElementById('dengluname').innerHTML;\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\tcache : false,\r\n");
-      out.write("\t\t\ttype : \"POST\",\r\n");
-      out.write("\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\turl : \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/updatedengluname\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\"groups\" : groups,\r\n");
-      out.write("\t\t\t\t\"username\" : dengluname,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\twindow.location.href = \"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${ctx}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("/cutmanage/gettask/\" + groups;\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction able_entry() {\r\n");
-      out.write("\t\tvar g = ");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(";\r\n");
-      out.write("\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\turl : \"/gmms2/mesview/data/_service\",\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tm : \"load_entery\",\r\n");
-      out.write("\t\t\t\tp : g\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\tvar d = JSON.parse(data);\r\n");
-      out.write("\t\t\t\tif (d.result != \"ok\")\r\n");
-      out.write("\t\t\t\t\talert(data);\r\n");
-      out.write("\t\t\t\telse\r\n");
-      out.write("\t\t\t\t\twindow.location.reload();\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\talert(data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\t}\r\n");
-      out.write("\tvar gongyi = \"纾ㄨ竟\";\r\n");
-      out.write("\tvar group = ");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(";\r\n");
-      out.write("\tvar rTime = 5000;\r\n");
-      out.write("</script>\r\n");
-      out.write("<style>\r\n");
-      out.write(".box table tr th, .box table tr td {\r\n");
-      out.write("\ttext-align: center;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".table>tbody>tr>td {\r\n");
-      out.write("\tvertical-align: middle;\r\n");
-      out.write("\t/* content:middle; */\r\n");
-      out.write("\ttext-align: center;\r\n");
-      out.write("\tfont-weight: bold;\r\n");
-      out.write("\tfont-size: 16px;\r\n");
-      out.write("\t/* border: 1px solid green; */\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".table>thead>tr>th {\r\n");
-      out.write("\tfont-weight: bold;\r\n");
-      out.write("\tfont-size: 20px;\r\n");
-      out.write("\ttext-align: center;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write("h1 {\r\n");
-      out.write("\tdisplay: inline;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".s-style {\r\n");
-      out.write("\tfont-size: 18px;\r\n");
-      out.write("\tfont-weight: bold;\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".s-title {\r\n");
-      out.write("\tfont-size: 18px;\r\n");
-      out.write("\t/*font-weight: bold;\r\n");
-      out.write("\t text-align :center; */\r\n");
-      out.write("\tvertical-align: middle;\r\n");
-      out.write("\ttext-align: center\r\n");
-      out.write("}\r\n");
-      out.write("\r\n");
-      out.write(".sel-style {\r\n");
-      out.write("\twidth: 200px;\r\n");
-      out.write("\tfont-size: 20px;\r\n");
-      out.write("}\r\n");
-      out.write("</style>\r\n");
-      out.write("\r\n");
-      out.write("<title>浠诲姟</title>\r\n");
-      out.write("</head>\r\n");
-      out.write("<body>\r\n");
-      out.write("\t<div class=\"content-wrapper\">\r\n");
-      out.write("\t\t<!-- <div style='height:20px;width:300px;background-color:#3C8DBC;float:right;'><span style = 'color:#fff;' >鏁呴殰鎯呭喌:</span><span id='infos'></span></div> -->\r\n");
-      out.write("\t\t<section class=\"content-header\">\r\n");
-      out.write("\t\t\t<h1>\r\n");
-      out.write("\t\t\t\t璁㈠崟浠诲姟&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<small>褰撳墠鐝粍:</small> &nbsp; <span id=\"s_current_banzu\"\r\n");
-      out.write("\t\t\t\t\tstyle=\"font-weight: bold;\"></span> &nbsp;\r\n");
-      out.write("\t\t\t\t<button id=\"btnBanZu\" type='button' class='btn btn-primary '\r\n");
-      out.write("\t\t\t\t\tonclick='onChangeBanZu()'>閫夋嫨鐝粍</button>\r\n");
-      out.write("\t\t\t\t&nbsp;\r\n");
-      out.write("\t\t\t\t<button id=\"btnOffWork\" type='button' class='btn btn-primary ' onclick='offWork()'>鍒囧壊-浜ч噺</button>\r\n");
-      out.write("\t\t\t\t&nbsp; \r\n");
-      out.write("\t\t\t\t&nbsp;\r\n");
-      out.write("\t\t\t\t<button id=\"btnOffWork\" type='button' class='btn btn-primary ' onclick='collectingTasks()'>棰嗗彇浠诲姟</button>\r\n");
-      out.write("\t\t\t\t&nbsp; \r\n");
-      out.write("\t\t\t\t&nbsp;\r\n");
-      out.write("\t\t\t\t<small>褰撳墠涓婄墖宸ヤ綅妯″紡:</small> &nbsp; \r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<button id=\"btnStatcionMode\" type='button' class='btn btn-primary' onclick='onChangeMode(");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(")' >鍗曞伐浣�</button>\r\n");
-      out.write("\t\t\t\t<small style='color:red'>锛堝崟鍑绘寜閽垏鎹㈠伐浣嶆ā寮忥級</small>\r\n");
-      out.write("\t\t\t\t&nbsp;\r\n");
-      out.write("\t\t\t\t<!-- <button id=\"btnOffWork\" type='button' class='btn btn-primary '\r\n");
-      out.write("\t\t\t\t\tonclick='offWork()'>涓嬬彮-鎶ュ伐鎻愪氦</button> -->\r\n");
-      out.write("\t\t\t</h1>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t<ol class=\"breadcrumb\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<li><a href=\"#\">璁惧<i class=\"fa fa-dashboard\"></i>浠诲姟\r\n");
-      out.write("\t\t\t\t</a></li>\r\n");
-      out.write("\t\t\t</ol>\r\n");
-      out.write("\t\t</section>\r\n");
-      out.write("\r\n");
-      out.write("\t\t<div id=\"allstatu\" allstatu=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${allstatu}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\"></div>\r\n");
-      out.write("\t\t<div id=\"info\" info=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${info}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\"></div>\r\n");
-      out.write("\t\t<!-- Main content -->\r\n");
-      out.write("\t\t<input style=\"display: none\" type=\"text\" name=\"groups\"\r\n");
-      out.write("\t\t\tvalue=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${groups}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\" />\r\n");
-      out.write("\t\t\t<input style=\"display: none\" type=\"text\" name=\"state\"\r\n");
-      out.write("\t\t\tvalue=\"");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${state}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\" />\r\n");
-      out.write("\t\t<section class=\"content container-fluid\">\r\n");
-      out.write("\t\t\t<div></div>\r\n");
-      out.write("\t\t\t<div>\r\n");
-      out.write("\t\t\t\t<span>鐘舵�侊細</span> <span id=\"st\"></span>\r\n");
-      out.write("\t\t\t\t<button class=\"btn btn-large btn-success\" style=\"margin-left: 20px\"\r\n");
-      out.write("\t\t\t\t\tonclick=\"able_entry();\">纭</button>\r\n");
-      out.write("\t\t\t\t");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t\t<div class=\"box\"\r\n");
-      out.write("\t\t\t\tstyle=\"height: 172px; overflow: auto; margin-top: 10px;\">\r\n");
-      out.write("\t\t\t\t<table class=\"table table-striped table-hover\"\r\n");
-      out.write("\t\t\t\t\tstyle=\"overflow-x: auto\">\r\n");
-      out.write("\t\t\t\t\t<thead>\r\n");
-      out.write("\t\t\t\t\t\t<tr>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>宸ョ▼鍚嶇О</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<!-- <th>瀹藉害</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th>楂樺害</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th>鍘氬害</th>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<th>绫诲瀷</th> -->\r\n");
-      out.write("\t\t\t\t\t\t\t<th>瀹屾垚鏁伴噺</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>鎬绘暟閲�</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>瀹屾垚闈㈢Н(mm)</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>鐘舵��</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>鎿嶄綔</th>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t</tr>\r\n");
-      out.write("\t\t\t\t\t</thead>\r\n");
-      out.write("\t\t\t\t\t<tbody>");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pattertaskHtml}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\r\n");
-      out.write("\t\t\t\t\t</tbody>\r\n");
-      out.write("\t\t\t\t</table>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t\t<div class=\"box\"\r\n");
-      out.write("\t\t\t\tstyle=\"height: 500px; overflow: auto; margin-top: 10px;\">\r\n");
-      out.write("\t\t\t\t<table class=\"table table-striped table-hover2\"\r\n");
-      out.write("\t\t\t\t\tstyle=\"overflow-x: auto\">\r\n");
-      out.write("\t\t\t\t\t<thead>\r\n");
-      out.write("\t\t\t\t\t\t<tr>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>缂栧彿</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>瀹藉害</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>楂樺害</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>鍘氬害</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>棰滆壊</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>鐘舵��</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>宸ョ▼</th>\r\n");
-      out.write("\t\t\t\t\t\t\t<th>鎿嶄綔</th>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t</tr>\r\n");
-      out.write("\t\t\t\t\t</thead>\r\n");
-      out.write("\t\t\t\t\t<tbody>");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pattertaskHtml2}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write("\r\n");
-      out.write("\t\t\t\t\t</tbody>\r\n");
-      out.write("\t\t\t\t</table>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t</section>\r\n");
-      out.write("\r\n");
-      out.write("\t\t");
-      out.write("\r\n");
-      out.write("<!-- 鏇存崲鐝粍淇℃伅 -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"div_banzu\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\r\n");
-      out.write("\t<form class=\"form-horizontal\" role=\"form\">\r\n");
-      out.write("\t\t<div class=\"modal-dialog\">\r\n");
-      out.write("\t\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\t\taria-hidden=\"true\">&times;</button>\r\n");
-      out.write("\t\t\t\t\t<h3 class=\"modal-title\" id=\"UNum_AlertTitle\">鏇存崲鐝粍</h3>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-body\" style=\"text-align: left;\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<div class=\"form-group\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t<!-- <h4>\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t<label class=\"col-lg-4 control-label no-padding-right\"\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t\tstyle=\"font-weight: bolder;\">褰撳墠鐝粍 </label>\r\n");
-      out.write("\t\t\t\t\t\t\t\t</h4>\r\n");
-      out.write("\t\t\t\t\t\t\t\t<div class=\"col-lg-6 input-group\">\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t<span class=\"input-group-addon s-style\" id='lckNO'>NG</span>\r\n");
-      out.write("\t\t\t\t\t\t\t\t</div> -->\r\n");
-      out.write("\t\t\t\t\t\t<br /> <br /> <br />\r\n");
-      out.write("\t\t\t\t\t\t<h4>\r\n");
-      out.write("\t\t\t\t\t\t\t<label class=\"col-lg-4 control-label no-padding-right\"\r\n");
-      out.write("\t\t\t\t\t\t\t\tstyle=\"font-weight: bolder;\">閫夋嫨鐝粍 </label>\r\n");
-      out.write("\t\t\t\t\t\t</h4>\r\n");
-      out.write("\t\t\t\t\t\t<div class=\"col-lg-6 input-group\">\r\n");
-      out.write("\t\t\t\t\t\t\t<select id=\"s_banzu\" class=\"span_tasktext form-control\"\r\n");
-      out.write("\t\t\t\t\t\t\t\tstyle=\"font-size: 18px\">\r\n");
-      out.write("\t\t\t\t\t\t\t</select>\r\n");
-      out.write("\t\t\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t\t\t<br /> <br /> <br />\r\n");
-      out.write("\t\t\t\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<div class=\"form-group\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t<p style=\"text-align: center; font-size: 20px; color: red\"\r\n");
-      out.write("\t\t\t\t\t\t\tid=\"bz-warring-info\"></p>\r\n");
-      out.write("\t\t\t\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-footer\">\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tdata-dismiss=\"modal\">鍙栨秷</button>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-danger btn-lg\" id=\"DEL_button\"\r\n");
-      out.write("\t\t\t\t\t\tonclick=\"OK_Submit('鐝粍')\">纭</button>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</form>\r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("<!-- 鏇存崲鐝粍 -->\r\n");
-      out.write("<script>\r\n");
-      out.write("var p_url = \"/gmms2/mesview/data/_public_manage\";\r\n");
-      out.write("\tfunction getCurrentBanZu() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\tleixing : \"褰撳墠鐝粍\",\r\n");
-      out.write("\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t\tline : group\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\tvar d = data[0][0];\r\n");
-      out.write("\t\t\t\tvar isstop=data[0][1];\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\tif(d==null || d==\"\"){\r\n");
-      out.write("\t\t\t\t//if(data.length==0){\r\n");
-      out.write("\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t\tcurrent_bz  = null;\r\n");
-      out.write("\t\t\t\t\t/* $(\"#btnBanZu\").attr(\"style\",\"display:\");\r\n");
-      out.write("\t\t\t\t\t$(\"#btnOffWork\").attr(\"style\",\"display:none\"); */\r\n");
-      out.write("\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t}else{\r\n");
-      out.write("\t\t\t\t\tcurrent_bz = data[0][0];\r\n");
-      out.write("\t\t\t\t\t$(\"#s_current_banzu\").text(data[0][0]);\r\n");
-      out.write("\t\t\t\t\t/* $(\"#btnOffWork\").attr('style',\"display:\");\r\n");
-      out.write("\t\t\t\t\t$(\"#btnBanZu\").attr('style',\"display:none\"); */\r\n");
-      out.write("\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t\tif(isstop!=null &&isstop!=\"\"){\r\n");
-      out.write("\t\t\t\t\tonChangeBanZu();\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t});\r\n");
-      out.write("\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\t\t\tleixing : \"鐝粍鍒楄〃\",\r\n");
-      out.write("\t\t\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t\t\t\tline : group\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\t\t\turl : p_url,\r\n");
-      out.write("\t\t\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t\t\td = data;\r\n");
-      out.write("\t\t\t\t\t\tvar html = \" <option selected=\\\"selected\\\"  value='0'>閫夋嫨鐝粍</option>\";\r\n");
-      out.write("\t\t\t\t\t\t$(\"#s_banzu\").empty();\r\n");
-      out.write("\t\t\t\t\t\tfor (var i = 0; i < d.length; i++) {\r\n");
-      out.write("\t\t\t\t\t\t\thtml += \" <option  value=\"+d[i][0]+\">\" + d[i][0]\r\n");
-      out.write("\t\t\t\t\t\t\t\t\t+ \"</option>\";\r\n");
-      out.write("\t\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\t\tdocument.getElementById(\"s_banzu\").innerHTML += html;\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t//AddBPShow(2,isshow);\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\terror : function(data) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t});\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction onChangeBanZu() {\r\n");
-      out.write("\t\t$(\"#div_banzu\").modal('toggle');\r\n");
-      out.write("\t\t//$(\"#s_banzu\").selectedIndex= 0;\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction OK_Submit(type) {\r\n");
-      out.write("\r\n");
-      out.write("\t\tswitch (type) {\r\n");
-      out.write("\t\tcase \"鐝粍\":\r\n");
-      out.write("\t\t\tsetBanZu();\r\n");
-      out.write("\t\t\tbreak;\r\n");
-      out.write("\t\tcase \"娆$牬\":\r\n");
-      out.write("\t\t\tsetCiPo();\r\n");
-      out.write("\t\t\tbreak;\r\n");
-      out.write("\t\tdefault:\r\n");
-      out.write("\t\t\t;\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tfunction setBanZu() {\r\n");
-      out.write("\r\n");
-      out.write("\t\tvar bz = $(\"#s_banzu\").val();\r\n");
-      out.write("\t\tif (bz == 0) {\r\n");
-      out.write("\t\t\t$(\"#bz-warring-info\").text(\"璇烽�夋嫨姝g‘鐨勭彮缁刓");\r\n");
-      out.write("\t\t\treturn;\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"淇敼\",\r\n");
-      out.write("\t\t\t\tleixing : \"鍙樻洿鐝粍\",\r\n");
-      out.write("\t\t\t\tline : group,\r\n");
-      out.write("\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t\tinfo : bz\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : 'text',\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\tif (data == 1) {\r\n");
-      out.write("\t\t\t\t\tcurrent_bz = bz;\r\n");
-      out.write("\t\t\t\t\t$(\"#s_current_banzu\").text(bz);\r\n");
-      out.write("\t\t\t\t\t$(\"#div_banzu\").modal('toggle');\r\n");
-      out.write("\t\t\t\t\tgetCurrentBanZu();\r\n");
-      out.write("\t\t\t\t\treturn;\r\n");
-      out.write("\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍鍙樻洿澶辫触,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍鍙樻洿寮傚父,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("/* \tfunction offWork(){\r\n");
-      out.write("\t\t $.ajax({\r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"淇敼\",\r\n");
-      out.write("\t\t\t\tleixing : \"鐝粍涓嬬彮\",\r\n");
-      out.write("\t\t\t\tline : group,\r\n");
-      out.write("\t\t\t\tgongyi : gongyi,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : 'text',\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\tif (data == 1) {\r\n");
-      out.write("\t\t\t\t\tcurrent_bz = null;\r\n");
-      out.write("\t\t\t\t\t$(\"#s_current_banzu\").text(null);\r\n");
-      out.write("\t\t\t\t\t$(\"#btnOffWork\").attr(\"display\",\"none\");\r\n");
-      out.write("\t\t\t\t\t$(\"#btnBanZu\").attr(\"display\",\"\");\r\n");
-      out.write("\t\t\t\t\tgetCurrentBanZu();\r\n");
-      out.write("\t\t\t\t\treturn;\r\n");
-      out.write("\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍涓嬬彮澶辫触,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\t$(\"#bz-warring-info\").text(\"鐝粍涓嬬彮寮傚父,璇锋鏌ュ師鍥�:\" + data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t} */\r\n");
-      out.write("\t\r\n");
-      out.write("\tgetCurrentBanZu();\r\n");
-      out.write("</script>\r\n");
-      out.write("\r\n");
-      out.write("\t\t");
-      out.write("\r\n");
-      out.write("<!-- 娴佺▼鍗¤鎯� -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"baogong_info\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\"\r\n");
-      out.write("\tstyle=\"overflow-y: auto; height: 99%\">\r\n");
-      out.write("\t<div class=\"modal-dialog\" style=\"width: 80%; height: 100%\">\r\n");
-      out.write("\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\taria-hidden=\"true\" data-backdrop=\"static\">&times;</button>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<p class=\"modal-title\">\r\n");
-      out.write("\t\t\t\t\t<span id=\"bg_title\" style=\"font-weight: bolder; font-size: 25px\"></span>\r\n");
-      out.write("\t\t\t\t\t<!-- \t&nbsp;&nbsp;&nbsp;&nbsp; <small id=\"cz_alert\"\r\n");
-      out.write("\t\t\t\t\t\tstyle=\"font-weight: bolder; font-size: 15px; color: red\">璁剧疆鐮存崯鍚庣殑鐜荤拑鍙互鍦ㄣ�愰挗鍖栧墠绠$悊-鍦ㄧ嚎闃熷垪銆戜腑閲嶆柊涓婄墖</small> -->\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<button id = \"btnBGTJ\" type=\"button\" class='btn btn-large btn-success' onclick=\"TiJiaoBaoGong()\">鎻愪氦鎶ュ伐</button>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"ps_ps\" style=\"font-weight: bolder; font-size: 18px\"></span>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"ps_mj\" style=\"font-weight: bolder; font-size: 18px\"></span>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"wg_ps\" style=\"font-weight: bolder; font-size: 18px\"></span>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"wg_mj\" style=\"font-weight: bolder; font-size: 18px\"></span>\r\n");
-      out.write("\t\t\t\t</p>\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t<div class=\"modal-body\">\r\n");
-      out.write("\t\t\t\t<div class=\"no-padding\" id=\"bg_detail\"></div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t\t<div class=\"modal-footer\"></div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</div>\r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- 娴佺▼鍗¤鎯� -->\r\n");
-      out.write("<script>\r\n");
-      out.write("\t var url = \"\";  \r\n");
-      out.write("\tvar p_url = \"/gmms2/mesview/data/_public_manage\";\r\n");
-      out.write("\t\r\n");
-      out.write("\tvar current_lck = null;\r\n");
-      out.write("\tvar lck_opt = {\r\n");
-      out.write("\t\ttable : {\r\n");
-      out.write("\t\t\tstyle : \"width:100%\",\r\n");
-      out.write("\t\t\t\"class\" : \"table table-striped table-hover\"\r\n");
-      out.write("\t\t},\r\n");
-      out.write("\t\tcolumns : [\r\n");
-      out.write("{\r\n");
-      out.write("\t\t\tname : \"\",\r\n");
-      out.write("\t\t\tbinding : 0,\r\n");
-      out.write("\t\t\t//editAble:true,//璁剧疆鍒楀彲缂栬緫\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t//璁剧疆鍒楀彲鎼滅储\r\n");
-      out.write("\t\t}, {\r\n");
-      out.write("\t\t\tname : \"娴佺▼鍗″彿\",\r\n");
-      out.write("\t\t\tbinding : 1,\r\n");
-      out.write("\t\t\t//type : \"element\",\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}, {\r\n");
-      out.write("\t\t\tname : \"鐮存崯鏁癨",\r\n");
-      out.write("\t\t\tbinding : 2,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鐮存崯骞虫柟\",\r\n");
-      out.write("\t\t\tbinding : 6,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"瀹屾垚鏁癨",\r\n");
-      out.write("\t\t\tbinding : 3,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"瀹屾垚骞虫柟\",\r\n");
-      out.write("\t\t\tbinding : 7,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}, {\r\n");
-      out.write("\t\t\tname : \"鑶滅郴\",\r\n");
-      out.write("\t\t\tbinding : 4,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},\r\n");
-      out.write("\t\t{\r\n");
-      out.write("\t\t\tname : \"瀹屾垚鏃堕棿\",\r\n");
-      out.write("\t\t\tbinding : 5,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}/* , {\r\n");
-      out.write("\t\t\tname : \"鎿嶄綔\",\r\n");
-      out.write("\t\t\tbinding : 10,\r\n");
-      out.write("\t\t\tstyle : \"width:15%;\",\r\n");
-      out.write("\t\t\ttype : \"element\",\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}  */]\r\n");
-      out.write("\t};\r\n");
-      out.write("\r\n");
-      out.write("\t//鍒涘缓琛╘r\n");
-      out.write("\tvar bg_db = createTable(document.getElementById(\"bg_detail\"), lck_opt);\r\n");
-      out.write("\r\n");
-      out.write("\t//鍔犺浇琛ㄦ牸鍐呭\t\t\r\n");
-      out.write("\tfunction LoadBGTable(Id) {\r\n");
-      out.write("\t\tvar posun_mianji=0;\r\n");
-      out.write("\t\tvar wangong_mianji=0;\r\n");
-      out.write("\t\tvar posun_prices=0;\r\n");
-      out.write("\t\tvar wangong_prices=0;\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\t\tleixing : \"鎶ュ伐璇︽儏\",\r\n");
-      out.write("\t\t\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\t\t\tline : group\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\t\t\turl : p_url,\r\n");
-      out.write("\t\t\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t\t\tvar d = data;\r\n");
-      out.write("\t\t\t\t\t\tfor (var i = 0; i < d.length; i++) {\r\n");
-      out.write("\t\t\t\t\t\t\td[i][0] = i+1;\r\n");
-      out.write("\t\t\t\t\t\t\tposun_mianji+=d[i][6];\r\n");
-      out.write("\t\t\t\t\t\t\twangong_mianji+=d[i][7];\r\n");
-      out.write("\t\t\t\t\t\t\tposun_prices+=d[i][2];\r\n");
-      out.write("\t\t\t\t\t\t\twangong_prices+=d[i][3];\r\n");
-      out.write("\t\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\t\tbg_db.update(d);\r\n");
-      out.write("\t\t\t\t\t\t$(\"#ps_mj\").text(\"鐮存崯鎬婚潰绉�:\"+posun_mianji);\r\n");
-      out.write("\t\t\t\t\t\t$(\"#wg_mj\").text(\"瀹屽伐鎬婚潰绉�:\"+wangong_mianji);\r\n");
-      out.write("\t\t\t\t\t\t$(\"#ps_ps\").text(\"鐮存崯鎬荤墖鏁�:\"+posun_prices);\r\n");
-      out.write("\t\t\t\t\t\t$(\"#wg_ps\").text(\"瀹屽伐鎬荤墖鏁�:\"+wangong_prices);\r\n");
-      out.write("\t\t\t\t\t\t/* alert(posun_mianji);\r\n");
-      out.write("\t\t\t\t\t\talert(wangong_mianji); */\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\terror : function(data) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t//$(\"#lck_Info\").modal('toggle');\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t});\r\n");
-      out.write("\t\t//a = true;\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction offWork() {\r\n");
-      out.write("\t\t$(\"#bg_title\").text(\r\n");
-      out.write("\t\t\t\t\"鍐峰姞宸� \" + group + \" 绾� ---- \" + current_bz + \" 鏈彁浜ょ殑鎶ュ伐鏁版嵁\")\r\n");
-      out.write("\t\tLoadBGTable(group);\r\n");
-      out.write("\t\t$(\"#baogong_info\").modal('toggle');\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\tfunction TiJiaoBaoGong() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"鎶ュ伐鎻愪氦\",\r\n");
-      out.write("\t\t\t\tline : group,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : \"text\",\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t$('#baogong_info').modal(\"toggle\");\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").text(\"鎶ュ伐鎻愪氦\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").text(\"鎴愬姛\");\r\n");
-      out.write("\t\t\t\t//$(\"#cz_mingxi\").text(data);\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").text(\"鎶ュ伐鎻愪氦\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").text(\"澶辫触\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_mingxi\").text(data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("</script>\r\n");
-      out.write("\r\n");
-      out.write("\t\t");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- 鎿嶄綔纭 -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"CZ_Sure\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\r\n");
-      out.write("\t<form class=\"form-horizontal\" role=\"form\">\r\n");
-      out.write("\t\t<div class=\"modal-dialog\">\r\n");
-      out.write("\t\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\t\taria-hidden=\"true\">&times;</button>\r\n");
-      out.write("\t\t\t\t\t<h3 class=\"modal-title\" id=\"CZ_Title\"></h3>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-body\" style=\"text-align: left;\">\r\n");
-      out.write("\t\t\t\t\t<h3 id=\"MsgShow\">\r\n");
-      out.write("\t\t\t\t\t\t鏄惁纭鎵ц鐜荤拑 &nbsp; <span id=\"czqr_Zhuangtai\"\r\n");
-      out.write("\t\t\t\t\t\t\tstyle=\"font-weight: bold\"></span> &nbsp; <span id=\"czqr_Ming\"\r\n");
-      out.write("\t\t\t\t\t\t\tstyle=\"font-weight: bold\"></span> &nbsp; 鎿嶄綔锛焅r\n");
-      out.write("\t\t\t\t\t</h3>\r\n");
-      out.write("\t\t\t\t\t<br/>\r\n");
-      out.write("<!-- \t\t\t\t\t<p id=\"p-yuanyin\" style=\"font-size: 15px; font-weight: bold;display:none\">\r\n");
-      out.write("\t\t\t\t\t\t<span style=\"font-weight: bold\">鍘熷洜锛�</span> <span id=\"error_mingxi\" style=\"font-color: red\"></span>\r\n");
-      out.write("\t\t\t\t\t</p> -->\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-footer\">\r\n");
-      out.write("\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tdata-dismiss=\"modal\" id=\"btnCancel\">鍙栨秷</button>\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tid=\"btnSure\">纭畾</button>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</form>\r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("<!-- 淇℃伅鎻愮ず -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"CZ_Msg\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\r\n");
-      out.write("\t<form class=\"form-horizontal\" role=\"form\">\r\n");
-      out.write("\t\t<div class=\"modal-dialog\">\r\n");
-      out.write("\t\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\t\taria-hidden=\"true\">&times;</button>\r\n");
-      out.write("\t\t\t\t\t<h3 class=\"modal-title\" id=\"TK_AlertTitle\">鎿嶄綔鎻愮ず锛�</h3>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-body\" style=\"text-align: left;\">\r\n");
-      out.write("\t\t\t\t\t<h3 id=\"MsgShow\">\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"cz_Ming\" style=\"font-weight: bold\"></span> <span\r\n");
-      out.write("\t\t\t\t\t\t\tid=\"cz_Zhuangtai\" style=\"font-weight: bold\"></span>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t</h3>\r\n");
-      out.write("\t\t\t\t\t<p style=\"font-size: 25px; font-weight: bold\">\r\n");
-      out.write("\t\t\t\t\t\t<span style=\"font-weight: bold\">鍘熷洜锛�</span> <span id=\"cz_mingxi\"></span>\r\n");
-      out.write("\t\t\t\t\t</p>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t\t<div class=\"modal-footer\">\r\n");
-      out.write("\t\t\t\t\t<button type=\"button\" class=\"btn btn-primary btn-lg\"\r\n");
-      out.write("\t\t\t\t\t\tdata-dismiss=\"modal\">纭畾</button>\r\n");
-      out.write("\t\t\t\t</div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</form>\r\n");
-      out.write("</div>");
-      out.write("\r\n");
-      out.write("\t\t");
-      out.write("\r\n");
-      out.write("<!-- 娴佺▼鍗¤鎯� -->\r\n");
-      out.write("<div class=\"modal fade\" id=\"baogong_info\" tabindex=\"-1\" role=\"dialog\"\r\n");
-      out.write("\taria-labelledby=\"myModalLabel\" aria-hidden=\"true\"\r\n");
-      out.write("\tstyle=\"overflow-y: auto; height: 99%\">\r\n");
-      out.write("\t<div class=\"modal-dialog\" style=\"width: 80%; height: 100%\">\r\n");
-      out.write("\t\t<div class=\"modal-content\">\r\n");
-      out.write("\t\t\t<div class=\"modal-header\">\r\n");
-      out.write("\t\t\t\t<button type=\"button\" class=\"close\" data-dismiss=\"modal\"\r\n");
-      out.write("\t\t\t\t\taria-hidden=\"true\" data-backdrop=\"static\">&times;</button>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t<p class=\"modal-title\">\r\n");
-      out.write("\t\t\t\t\t<span id=\"bg_title\" style=\"font-weight: bolder; font-size: 25px\"></span>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<button id = \"btnBGTJ\" type=\"button\" class='btn btn-large btn-success' onclick=\"TiJiaoBaoGong()\">鎻愪氦鎶ュ伐</button>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t<span id=\"wg_ps\" style=\"font-weight: bolder; font-size: 18px\"></span>\r\n");
-      out.write("\t\t\t\t\t\t&nbsp;&nbsp;&nbsp;&nbsp;\r\n");
-      out.write("\t\t\t\t\t\t\r\n");
-      out.write("\t\t\t\t</p>\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t\t\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t<div class=\"modal-body\">\r\n");
-      out.write("\t\t\t\t<div class=\"no-padding\" id=\"bg_detail\"></div>\r\n");
-      out.write("\t\t\t</div>\r\n");
-      out.write("\t\t\t<div class=\"modal-footer\"></div>\r\n");
-      out.write("\t\t</div>\r\n");
-      out.write("\t</div>\r\n");
-      out.write("</div>\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- 鍘熺墖璇︽儏 -->\r\n");
-      out.write("<script>\r\n");
-      out.write("\tvar url = \"\";  \r\n");
-      out.write("\tvar p_url = \"/gmms2/mesview/data/_public_manage\";\r\n");
-      out.write("\t\r\n");
-      out.write("\tvar current_lck = null;\r\n");
-      out.write("\tvar lck_opt = {\r\n");
-      out.write("\t\ttable : {\r\n");
-      out.write("\t\t\tstyle : \"width:100%\",\r\n");
-      out.write("\t\t\t\"class\" : \"table table-striped table-hover\"\r\n");
-      out.write("\t\t},\r\n");
-      out.write("\t\tcolumns : [\r\n");
-      out.write("\t\t{\r\n");
-      out.write("\t\t\tname : \"\",\r\n");
-      out.write("\t\t\tbinding : 0,\r\n");
-      out.write("\t\t\t//editAble:true,//璁剧疆鍒楀彲缂栬緫\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t//璁剧疆鍒楀彲鎼滅储\r\n");
-      out.write("\t\t}, {\r\n");
-      out.write("\t\t\tname : \"瀹絓",\r\n");
-      out.write("\t\t\tbinding : 1,\r\n");
-      out.write("\t\t\t//type : \"element\",\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}, {\r\n");
-      out.write("\t\t\tname : \"楂榎",\r\n");
-      out.write("\t\t\tbinding : 2,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鍘歕",\r\n");
-      out.write("\t\t\tbinding : 3,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"绫诲瀷\",\r\n");
-      out.write("\t\t\tbinding : 4,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鎵规鍙穃",\r\n");
-      out.write("\t\t\tbinding : 5,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鏁伴噺\",\r\n");
-      out.write("\t\t\tbinding : 6,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t},{\r\n");
-      out.write("\t\t\tname : \"鐝粍\",\r\n");
-      out.write("\t\t\tbinding : 7,\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}/* , {\r\n");
-      out.write("\t\t\tname : \"鎿嶄綔\",\r\n");
-      out.write("\t\t\tbinding : 10,\r\n");
-      out.write("\t\t\tstyle : \"width:15%;\",\r\n");
-      out.write("\t\t\ttype : \"element\",\r\n");
-      out.write("\t\t\tfilter : {}\r\n");
-      out.write("\t\t}  */]\r\n");
-      out.write("\t};\r\n");
-      out.write("\r\n");
-      out.write("\t//鍒涘缓琛╘r\n");
-      out.write("\tvar bg_db = createTable(document.getElementById(\"bg_detail\"), lck_opt);\r\n");
-      out.write("\r\n");
-      out.write("\t//鍔犺浇琛ㄦ牸鍐呭\t\t\r\n");
-      out.write("\tfunction LoadBGTable(Id) {\r\n");
-      out.write("\t\tvar wangong_prices=0;\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\t\t\tdata : {\r\n");
-      out.write("\t\t\t\t\t\tleixing : \"鍒囧壊鍘熺墖璇︽儏\",\r\n");
-      out.write("\t\t\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\t\t\tline : group\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\t\t\turl : p_url,\r\n");
-      out.write("\t\t\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t\t\tvar d = data;\r\n");
-      out.write("\t\t\t\t\t\tfor (var i = 0; i < d.length; i++) {\r\n");
-      out.write("\t\t\t\t\t\t\td[i][0] = i+1;\r\n");
-      out.write("\t\t\t\t\t\t\twangong_prices+=d[i][6];\r\n");
-      out.write("\t\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t\t\tbg_db.update(d);\r\n");
-      out.write("\t\t\t\t\t\t$(\"#wg_ps\").text(\"鍒囧壊鎬荤墖鏁�:\"+wangong_prices);\r\n");
-      out.write("\t\t\t\t\t\t/* alert(posun_mianji);\r\n");
-      out.write("\t\t\t\t\t\talert(wangong_mianji); */\r\n");
-      out.write("\t\t\t\t\t},\r\n");
-      out.write("\t\t\t\t\terror : function(data) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t\t//$(\"#lck_Info\").modal('toggle');\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t});\r\n");
-      out.write("\t\t//a = true;\r\n");
-      out.write("\t\t\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("\t\r\n");
-      out.write("\tfunction offWork() {\r\n");
-      out.write("\t\t$(\"#bg_title\").text(\r\n");
-      out.write("\t\t\t\t\"鍒囧壊 \" + group + \" 绾�           \")\r\n");
-      out.write("\t\tLoadBGTable(group);\r\n");
-      out.write("\t\t$(\"#baogong_info\").modal('toggle');\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\tfunction TiJiaoBaoGong() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tcaozuo : \"鍒囧壊鎻愪氦\",\r\n");
-      out.write("\t\t\t\tline : group,\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : \"text\",\r\n");
-      out.write("\t\t\tsuccess : function(data) {\r\n");
-      out.write("\t\t\t\t$('#baogong_info').modal(\"toggle\");\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").text(\"鎶ュ伐鎻愪氦\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").text(\"鎴愬姛\");\r\n");
-      out.write("\t\t\t\t//$(\"#cz_mingxi\").text(data);\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t\tonChangeBanZu();\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(data) {\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").text(\"鎶ュ伐鎻愪氦\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").text(\"澶辫触\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_mingxi\").text(data);\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\t\r\n");
-      out.write("</script>\r\n");
-      out.write("\r\n");
-      out.write("\t\t<!-- /.content -->\r\n");
-      out.write("\t</div>\r\n");
-      out.write("\t");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!-- 娴佺▼鍗¤鎯� -->\r\n");
-      out.write("<script>\r\n");
-      out.write("\tfunction onChangeMode() {\r\n");
-      out.write("\t\t$(\"#CZ_Sure\").modal(\"toggle\");\r\n");
-      out.write("\t\t$(\"#MsgShow\").html(\"鏄惁纭鏇存柊 \" + group + \" 鍙风敓浜х嚎鍒囧壊涓婄墖浣嶆ā寮忥紵\");\r\n");
-      out.write("\t\t$(\"#btnSure\").attr('onclick', \"changeMode()\");\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\t//宸ヤ綅妯″紡鍙樻洿\r\n");
-      out.write("\tfunction changeMode() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : \"text\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tleixing : \"鍙樻洿鍒囧壊宸ヤ綅妯″紡\",\r\n");
-      out.write("\t\t\t\tcaozuo : \"淇敼\",\r\n");
-      out.write("\t\t\t\tline : group\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(date) {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\tvar z = date.trim();\r\n");
-      out.write("\t\t\t\tif (z = \"1\") {\r\n");
-      out.write("\t\t\t\t\tvar zt = $(\"#btnStatcionMode\").html();\r\n");
-      out.write("\t\t\t\t\tif (zt == \"鍗曞伐浣峔") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html('鍙屽伐浣�');\r\n");
-      out.write("\t\t\t\t\t} else if (zt == \"鍙屽伐浣峔") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"鍗曞伐浣峔");\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t$(\"#btnStatcionMode\").html(\"寮傚父锛歕" + z);\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Sure\").modal(\"toggle\");\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function(date) {\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Sure\").modal(\"toggle\");\r\n");
-      out.write("\t\t\t\t$(\"#CZ_Msg\").modal('toggle');\r\n");
-      out.write("\t\t\t\t$(\"#cz_Ming\").html(\"鏇存敼\" + group + \"绾垮垏鍓蹭笂鐗囦綅妯″紡锛歕");\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").html(\"閿欒锛侊紒锛乗" + date);\r\n");
-      out.write("\t\t\t\t$(\"#cz_Zhuangtai\").attr(\"style\", \"color:red;\");\r\n");
-      out.write("\t\t\t\t$(\"#cz_mingxi\").html(\"\");\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\t//鑾峰彇浜х嚎鍒囧壊宸ヤ綅妯″紡\r\n");
-      out.write("\tfunction getCutStationMode() {\r\n");
-      out.write("\t\t$.ajax({\r\n");
-      out.write("\t\t\ttype : \"post\",\r\n");
-      out.write("\t\t\turl : p_url,\r\n");
-      out.write("\t\t\tdataType : \"json\",\r\n");
-      out.write("\t\t\tdata : {\r\n");
-      out.write("\t\t\t\tleixing : \"鍒囧壊宸ヤ綅妯″紡\",\r\n");
-      out.write("\t\t\t\tcaozuo : \"鏌ヨ\",\r\n");
-      out.write("\t\t\t\tline : group\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\tsuccess : function(date) {\r\n");
-      out.write("\t\t\t\tvar d = date;\r\n");
-      out.write("\t\t\t\tif (d.length = 1) {\r\n");
-      out.write("\t\t\t\t\tvar z = d[0][0];\r\n");
-      out.write("\t\t\t\t\tif (z == \"1\") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"鍗曞伐浣峔");\r\n");
-      out.write("\t\t\t\t\t} else if (z == \"2\") {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"鍙屽伐浣峔");\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t\t\t} else {\r\n");
-      out.write("\t\t\t\t\t\t$(\"#btnStatcionMode\").html(\"寮傚父锛歕" + z);\r\n");
-      out.write("\t\t\t\t\t}\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t},\r\n");
-      out.write("\t\t\terror : function() {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t})\r\n");
-      out.write("\t}\r\n");
-      out.write("\r\n");
-      out.write("\tgetCutStationMode();\r\n");
-      out.write("</script>\r\n");
-      out.write("\r\n");
-      out.write("\t<script>\r\n");
-      out.write("\t\t// 璁惧椤甸潰鑷姩鍒锋柊\r\n");
-      out.write("\t\tfunction refreshStatus() {\r\n");
-      out.write("\t\t\twindow.location.reload();\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\r\n");
-      out.write("\t\t//椤甸潰瀹氭椂鍒锋柊 鏆傚仠 鎭㈠\r\n");
-      out.write("\t\t/* var interval = setInterval('refreshStatus()', rTime);//瀹氭椂鍒锋柊\r\n");
-      out.write("\t\tfunction refresh() {\r\n");
-      out.write("\t\t\tinterval = setInterval('refreshStatus()', rTime);//鍒锋柊鎭㈠\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\r\n");
-      out.write("\t\t */\r\n");
-      out.write("\t\t function stopRefresh() {\r\n");
-      out.write("\t\t\t\tclearInterval(interval);//鍋滄鍒锋柊\r\n");
-      out.write("\t\t\t} \r\n");
-      out.write("\t\t \r\n");
-      out.write("\t\t \r\n");
-      out.write("\t\tvar interval = setInterval('isStop()', rTime);//瀹氭椂鍒锋柊\r\n");
-      out.write("\t\tfunction isStop(){  //2024-1-10  yzx 淇敼  鍘熷洜锛氬師鍒锋柊椤甸潰鏈夐棶棰榎r\n");
-      out.write("\t\t\tvar str=['baogong_info','div_banzu'];\r\n");
-      out.write("\t\t\tvar isInterval_=0;\r\n");
-      out.write("\t\t\tfor(var i=0;i<str.length;i++){\t\r\n");
-      out.write("\t\t\t\tvar isdisplay=document.getElementById(str[i]).style.display;\r\n");
-      out.write("\t\t\t\tif(isdisplay=='block'){\r\n");
-      out.write("\t\t\t\t\t//涓嶅埛鏂癨t\t\r\n");
-      out.write("\t\t\t\t\tisInterval_=1;\t\r\n");
-      out.write("\t\t\t\t\tbreak;\r\n");
-      out.write("\t\t\t\t}\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t\tif(isInterval_==0){\r\n");
-      out.write("\t\t\t\t//鍒锋柊\r\n");
-      out.write("\t\t\t\trefreshStatus();\r\n");
-      out.write("\t\t\t}\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t\t/* $(function() {\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t$('#baogong_info').on('hide.bs.modal', function() {\r\n");
-      out.write("\t\t\t\trefresh();\r\n");
-      out.write("\t\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t$('#baogong_info').on('show.bs.modal', function() {\r\n");
-      out.write("\t\t\t\tstopRefresh();\r\n");
-      out.write("\t\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t$('#div_banzu').on('hide.bs.modal', function() {\r\n");
-      out.write("\t\t\t\trefresh();\r\n");
-      out.write("\t\t\t})\r\n");
-      out.write("\r\n");
-      out.write("\t\t\t$('#div_banzu').on('show.bs.modal', function() {\r\n");
-      out.write("\t\t\t\tstopRefresh();\r\n");
-      out.write("\t\t\t})\r\n");
-      out.write("\t\t}); */\r\n");
-      out.write("\r\n");
-      out.write("\t\tvar st = ");
-      out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${able}", java.lang.String.class, (PageContext)_jspx_page_context, null));
-      out.write(";\r\n");
-      out.write("\t\tif (st == 0) {\r\n");
-      out.write("\t\t\t$(\"#st\").text(\"鏈‘璁");\r\n");
-      out.write("\t\t\t$(\"#st\").attr('class','label label-warning');\r\n");
-      out.write("\t\t\t\r\n");
-      out.write("\t\t}else if(st==1) {\r\n");
-      out.write("\t\t\t$(\"#st\").text(\"宸茬‘璁");\r\n");
-      out.write("\t\t\t$(\"#st\").attr('class','label label-success');\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\t\telse {\r\n");
-      out.write("\t\t\t$(\"#st\").text(\"宸茬‘璁");\r\n");
-      out.write("\t\t\t$(\"#st\").attr('class','label label-danger');\r\n");
-      out.write("\t\t}\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\t</script>\r\n");
-      out.write("\t<!-- /.content-wrapper -->\r\n");
-      out.write("</body>\r\n");
-      out.write("</html>");
-    } catch (Throwable t) {
-      if (!(t instanceof SkipPageException)){
-        out = _jspx_out;
-        if (out != null && out.getBufferSize() != 0)
-          out.clearBuffer();
-        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
-        else throw new ServletException(t);
-      }
-    } finally {
-      _jspxFactory.releasePageContext(_jspx_page_context);
-    }
-  }
-
-  private boolean _jspx_meth_c_set_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  c:set
-    org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _jspx_tagPool_c_set_var_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
-    _jspx_th_c_set_0.setPageContext(_jspx_page_context);
-    _jspx_th_c_set_0.setParent(null);
-    _jspx_th_c_set_0.setVar("ctx");
-    _jspx_th_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.evaluateExpression("${pageContext.request.contextPath}", java.lang.Object.class, (PageContext)_jspx_page_context, null));
-    int _jspx_eval_c_set_0 = _jspx_th_c_set_0.doStartTag();
-    if (_jspx_th_c_set_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-      return true;
-    }
-    _jspx_tagPool_c_set_var_value_nobody.reuse(_jspx_th_c_set_0);
-    return false;
-  }
-}
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/error/_404_jsp.java" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/error/_404_jsp.java"
deleted file mode 100644
index 8508515..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/error/_404_jsp.java"
+++ /dev/null
@@ -1,104 +0,0 @@
-package org.apache.jsp.WEB_002dINF.views.error;
-
-import javax.servlet.*;
-import javax.servlet.http.*;
-import javax.servlet.jsp.*;
-
-public final class _404_jsp extends org.apache.jasper.runtime.HttpJspBase
-    implements org.apache.jasper.runtime.JspSourceDependent {
-
-  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
-
-  private static java.util.Vector _jspx_dependants;
-
-  private org.apache.jasper.runtime.TagHandlerPool _jspx_tagPool_c_url_value_nobody;
-
-  private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;
-
-  public Object getDependants() {
-    return _jspx_dependants;
-  }
-
-  public void _jspInit() {
-    _jspx_tagPool_c_url_value_nobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig());
-  }
-
-  public void _jspDestroy() {
-    _jspx_tagPool_c_url_value_nobody.release();
-  }
-
-  public void _jspService(HttpServletRequest request, HttpServletResponse response)
-        throws java.io.IOException, ServletException {
-
-    PageContext pageContext = null;
-    HttpSession session = null;
-    ServletContext application = null;
-    ServletConfig config = null;
-    JspWriter out = null;
-    Object page = this;
-    JspWriter _jspx_out = null;
-    PageContext _jspx_page_context = null;
-
-    try {
-      response.setContentType("text/html;charset=UTF-8");
-      pageContext = _jspxFactory.getPageContext(this, request, response,
-      			null, true, 8192, true);
-      _jspx_page_context = pageContext;
-      application = pageContext.getServletContext();
-      config = pageContext.getServletConfig();
-      session = pageContext.getSession();
-      out = pageContext.getOut();
-      _jspx_out = out;
-      _jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");
-
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-response.setStatus(200);
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("<!DOCTYPE html>\r\n");
-      out.write("<html>\r\n");
-      out.write("<head>\r\n");
-      out.write("\t<title>404 - 椤甸潰涓嶅瓨鍦�</title>\r\n");
-      out.write("</head>\r\n");
-      out.write("\r\n");
-      out.write("<body>\r\n");
-      out.write("\t<h2>404 - 椤甸潰涓嶅瓨鍦�.</h2>\r\n");
-      out.write("\t<p><a href=\"");
-      if (_jspx_meth_c_url_0(_jspx_page_context))
-        return;
-      out.write("\">杩斿洖棣栭〉</a></p>\r\n");
-      out.write("</body>\r\n");
-      out.write("</html>");
-    } catch (Throwable t) {
-      if (!(t instanceof SkipPageException)){
-        out = _jspx_out;
-        if (out != null && out.getBufferSize() != 0)
-          out.clearBuffer();
-        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
-        else throw new ServletException(t);
-      }
-    } finally {
-      _jspxFactory.releasePageContext(_jspx_page_context);
-    }
-  }
-
-  private boolean _jspx_meth_c_url_0(PageContext _jspx_page_context)
-          throws Throwable {
-    PageContext pageContext = _jspx_page_context;
-    JspWriter out = _jspx_page_context.getOut();
-    //  c:url
-    org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_url_0 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _jspx_tagPool_c_url_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class);
-    _jspx_th_c_url_0.setPageContext(_jspx_page_context);
-    _jspx_th_c_url_0.setParent(null);
-    _jspx_th_c_url_0.setValue("/");
-    int _jspx_eval_c_url_0 = _jspx_th_c_url_0.doStartTag();
-    if (_jspx_th_c_url_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
-      _jspx_tagPool_c_url_value_nobody.reuse(_jspx_th_c_url_0);
-      return true;
-    }
-    _jspx_tagPool_c_url_value_nobody.reuse(_jspx_th_c_url_0);
-    return false;
-  }
-}
diff --git "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/mes/data/public_005fmanage_jsp.java" "b/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/mes/data/public_005fmanage_jsp.java"
deleted file mode 100644
index 9ad6f85..0000000
--- "a/\346\262\263\345\214\227\346\234\233\347\276\216\351\241\271\347\233\256/MES_11/target/tmp/jsp/org/apache/jsp/WEB_002dINF/views/mes/data/public_005fmanage_jsp.java"
+++ /dev/null
@@ -1,449 +0,0 @@
-package org.apache.jsp.WEB_002dINF.views.mes.data;
-
-import javax.servlet.*;
-import javax.servlet.http.*;
-import javax.servlet.jsp.*;
-import com.northglass.Globel.mes;
-import com.northglass.SqlHelper.*;
-import org.json.*;
-
-public final class public_005fmanage_jsp extends org.apache.jasper.runtime.HttpJspBase
-    implements org.apache.jasper.runtime.JspSourceDependent {
-
-  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
-
-  private static java.util.Vector _jspx_dependants;
-
-  private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;
-
-  public Object getDependants() {
-    return _jspx_dependants;
-  }
-
-  public void _jspService(HttpServletRequest request, HttpServletResponse response)
-        throws java.io.IOException, ServletException {
-
-    PageContext pageContext = null;
-    HttpSession session = null;
-    ServletContext application = null;
-    ServletConfig config = null;
-    JspWriter out = null;
-    Object page = this;
-    JspWriter _jspx_out = null;
-    PageContext _jspx_page_context = null;
-
-    try {
-      response.setContentType("text/json;charset=UTF-8");
-      pageContext = _jspxFactory.getPageContext(this, request, response,
-      			null, true, 8192, true);
-      _jspx_page_context = pageContext;
-      application = pageContext.getServletContext();
-      config = pageContext.getServletConfig();
-      session = pageContext.getSession();
-      out = pageContext.getOut();
-      _jspx_out = out;
-      _jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");
-
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-      out.write("\r\n");
-
-	//String yemian = request.getParameter("gongyi");
-	String line = request.getParameter("line");
-	String caozuo = request.getParameter("caozuo");
-	String leixing = request.getParameter("leixing");
-	String Id = request.getParameter("Id");
-	String gongyi = request.getParameter("gongyi");
-	String lckh = request.getParameter("lckh");
-	DBSession sn = null;
-	boolean ok = false;
-	//System.out.println("鎿嶄綔绫诲瀷锛�" + leixing + ";宸ヨ壓锛�" + gongyi+";鎿嶄綔锛�"+caozuo);
-	try {
-
-		sn = mes.getMesDBHelper().createSession(false);
-		String strSQL = "";
-		if ("鏌ヨ".equals(caozuo)) {
-			if ("纾ㄨ竟寮�鍚堟煡璇�".equals(leixing)) {
-				String stime = request.getParameter("stime");
-				String etime = request.getParameter("etime");
-				String trigger = request.getParameter("trigger");
-				String Edg = request.getParameter("Edg");
-				String banzu = request.getParameter("banzu");
-				String gby="";
-				//String isdb = request.getParameter("isdb");
-				System.out.println(etime);
-				/* if("".equals(etime)||etime==null){
-					etime="Now()";
-				}else{
-					etime="'"+etime+"'";
-				} */
-				if("".equals(Edg)||Edg==null||"0".equals(Edg)){
-					Edg="width,height,SendTime,Line,count(*) as piece,ifnull(banzu,'')";
-					gby="Recordsid";
-				}else if("1".equals(Edg)){
-					Edg="width,SendTime,Line,ifnull(banzu,''),count(*) as piece";
-					gby="RecordsidW";
-				}else if("2".equals(Edg)){
-					Edg="height,SendTime,Line,ifnull(banzu,''),count(*) as piece";
-					gby="RecordsidH";
-				}
-				
-				if("".equals(banzu)||banzu==null||"0".equals(banzu)){
-					banzu="";
-				}else{
-					banzu=" banzu='"+banzu+"' and";
-				}
-				if("1".equals(trigger)){//鏌ヨ
-					strSQL = "select "+Edg+" from Y_Edg_Statistics"+
-							 " where Line="+line+" and "+banzu+" SendTime>='"+stime+"' and SendTime<='"+etime+"'"+
-							 " GROUP BY "+gby;
-				}else{//榛樿
-					strSQL ="select width,height,SendTime,Line,count(*) as piece,ifnull(banzu,'') from Y_Edg_Statistics"+
-							 " where Line="+line+" and SendTime>=CONCAT(DATE_FORMAT(Now(),'%Y-%m-%d'),' 00:00:00') and SendTime<=CONCAT(DATE_FORMAT(Now(),'%Y-%m-%d'),' 23:59:59')"+
-							 " GROUP BY Recordsid";
-				}
-				System.out.println(strSQL);
-				
-			}
-			if ("娆$牬绫诲瀷".equals(leixing)) {
-				strSQL = "select id,cipoleixing from cipoleixing";
-			}
-			if ("娆$牬鍘熷洜".equals(leixing)) {
-				strSQL = "select xuhao,cipoyuanyin,cipoleixing from cipoyuanyin";
-			}
-			if ("鐝粍鍒楄〃".equals(leixing)) {
-				String gy = gongyi.contains("閽㈠寲") ? "閽㈠寲" : gongyi;
-				strSQL = "select banzumingcheng from banzu where gongyi='" + gongyi + "'";
-			}
-			if ("褰撳墠鐝粍".equals(leixing)) {
-				gongyi = gongyi.contains("閽㈠寲") ? "閽㈠寲" : gongyi;
-				strSQL = "select banzu,isPaused from gmms_user_current where gongyi= '" + gongyi + "' and chanxian = "
-						+ line;
-			}
-			if ("娴佺▼鍗¤鎯�".equals(leixing)) {
-
-				if ("閽㈠寲".equals(gongyi)) {
-					strSQL = "select processcard_id,stop_rank,galss_id,edg_width,edg_height,concat(thickness,'mm ',color) moxi,work_procedure,work_state,Id from gmms_galss_task_2 where  processcard_id = '"
-							+ lckh + "' order by stop_rank";
-				}else if("纾ㄨ竟".equals(gongyi)){
-					strSQL="SELECT a.processcard_id,b.stop_rank,a.id,a.edg_width,a.edg_height,concat( a.thickness, 'mm ', a.color ) moxi, b.work_procedure,"+
-						     "if((select count(1) from e_pierceds where glass_id = a.id)>0 ,'鐮存崯',b.work_state) as state,a.Id,if((select count(1) from e_record_stock where glass_id = a.id)>0 ,1,0) as isReport FROM gmms_galss_task_buffer a LEFT JOIN gmms_galss_task_details b ON a.id = b.id"+ 
-						     " WHERE a.processcard_id = '"+lckh+"' ORDER BY b.stop_rank desc;";		
-				}else if("浠撳偍".equals(gongyi)){
-					strSQL="select processcard_id,stop_rank,galss_id,edg_width,edg_height,concat(thickness,'mm ',color) moxi,work_procedure,work_state,Id from gmms_galss_task_shelf where  processcard_id = '"
-							+ lckh + "' order by stop_rank";		
-				}else if("浠撳偍閰嶅".equals(gongyi)){
-					strSQL="select gb.processcard_id,count(gb.id) as pricesz,count(gs.id) as prices,gb.edg_width,gb.edg_height,concat(gb.thickness,'mm ',gb.color) as moxi from gmms_galss_task_buffer as gb"  
-							+" left join gmms_galss_task_shelf as gs on gs.id=gb.id"
-							+" where  gb.processcard_id = '"+lckh+"' group by gb.edg_width,gb.edg_height,gb.thickness,gb.color order by gb.edg_width";		
-				} else {
-					strSQL = "select processcard_id,stop_rank,galss_id,edg_width,edg_height,concat(thickness,'mm ',color) moxi,work_procedure,work_state,Id from gmms_galss_task_shelf where  processcard_id = '"
-							+ lckh + "' order by stop_rank";
-				}
-				
-			}
-			if("鍏ㄩ儴鐝粍".equals(leixing)){
-				strSQL="select gongxu,banzumingcheng from banzu group by gongxu,banzumingcheng order by gongxu desc";
-			}
-			if("鎶ュ伐璇︽儏".equals(leixing)){
-				//strSQL="select null, processcard_id,(select count(1) from e_pierceds p where p.processcard_id =s.processcard_id ) as '鐮存崯鏁�',count(1) as '瀹屾垚鏁�' ,concat(s.thinkess,s.color) as '鑶滅郴', max(s.create_time) as '瀹屾垚鏃堕棿' from e_record_stock s where is_report = 0 and line = "+line+" group by s.processcard_id,s.team_name,concat(s.thinkess,s.color)";
-				/* strSQL="select null, s.processcard_id,(select count(1) from e_pierceds p where p.processcard_id =s.processcard_id ) as '鐮存崯鏁�', "+
-				"(select IFNULL(sum(tb.edg_width*tb.edg_height),0) from e_pierceds p LEFT JOIN gmms_galss_task_buffer as tb on p.glass_id=tb.id where p.processcard_id =s.processcard_id) as '鐮存崯骞虫柟', "+
-				"count(1) as '瀹屾垚鏁�' ,IFNULL(sum(bf.edg_width*bf.edg_height)/1000000,0) as '瀹屾垚骞虫柟', "+
-				"concat(s.thinkess,s.color) as '鑶滅郴', max(s.create_time) as '瀹屾垚鏃堕棿' from e_record_stock s  left join gmms_galss_task_buffer as bf on s.glass_id=bf.id where is_report = 0 and line = 3 group by s.processcard_id,s.team_name,concat(s.thinkess,s.color)";
-			 */
-			 	strSQL="select null, s.processcard_id,(select count(1) from e_pierceds p where p.processcard_id =s.processcard_id and process='纾ㄨ竟' and is_report!=-1) as '鐮存崯鏁�', "+
-			 		"count(1) as '瀹屾垚鏁�' , "+
-			 		"concat(s.thinkess,s.color) as '鑶滅郴', max(s.create_time) as '瀹屾垚鏃堕棿', "+
-			 		"(select IFNULL(sum(tb.edg_width*tb.edg_height)/1000000,0) from e_pierceds p LEFT JOIN gmms_galss_task_buffer as tb on p.glass_id=tb.id where p.processcard_id =s.processcard_id and process='纾ㄨ竟' and is_report!=-1) as '鐮存崯骞虫柟',IFNULL(sum(bf.edg_width*bf.edg_height)/1000000,0) as '瀹屾垚骞虫柟' from e_record_stock s  left join gmms_galss_task_buffer as bf on s.glass_id=bf.id where is_report = 0 and line = "+line+" group by s.processcard_id,s.team_name,concat(s.thinkess,s.color) ";
-			
-			}
-			if("閽㈠寲鎶ュ伐璇︽儏".equals(leixing)){
-			 	strSQL="select null, s.processcard_id,(select count(1) from e_pierceds p where p.processcard_id =s.processcard_id and process='閽㈠寲' and is_report!=-1) as '鐮存崯鏁�',  "+
-			 			"count(1) as '瀹屾垚鏁�' ,  "+
-			 			"concat(s.thinkess,s.color) as '鑶滅郴', max(s.create_time) as '瀹屾垚鏃堕棿', "+
-			 			"(select IFNULL(sum(tb.edg_width*tb.edg_height)/1000000,0) from e_pierceds p LEFT JOIN gmms_galss_task_buffer as tb on p.glass_id=tb.id where p.processcard_id =s.processcard_id and process='閽㈠寲' and is_report!=-1) as '鐮存崯骞虫柟',IFNULL(sum(s.width*s.height)/1000000,0) as '瀹屾垚骞虫柟' from e_record_tempering s where is_report != 4 and report_time is null and line = "+line+" group by s.processcard_id,s.team_name,concat(s.thinkess,s.color)";		
-			}
-			if ("娆$牬鍒楄〃".equals(leixing)) {
-				String info = request.getParameter("cpInfo");
-				//System.out.println("浼犲叆鏁版嵁锛�"+info);
-				//宸ヨ壓锛岀彮缁�
-				String[] s = info.split("-");
-				if("0".equals(s[2])){
-					strSQL = "select * from v_cipo where process = '"+s[0]+"' and team_name = '"+s[1]+"' and is_report !=-1";
-				}if("1".equals(s[2])){
-					strSQL = "select * from v_cipo where process = '"+s[0]+"' and team_name = '"+s[1]+"' and is_report = 0";
-				}if("2".equals(s[2])){
-					//strSQL = "select * from v_cipo where process = '"+s[0]+"' and team_name = '"+s[1]+"' and pierced_cause is null and is_report !=-1";	
-					strSQL = "select * from v_cipo where process = '"+s[0]+"' and team_name = '"+s[1]+"' and is_report !=-1";
-				}if("3".equals(s[2])){
-					strSQL = "select * from v_cipo where process = '"+s[0]+"' and team_name = '"+s[1]+"' and is_report !=-1";					
-				}
-			}
-			if("绌烘灦".equals(leixing)){
-			    
-			    strSQL="select r.id,f.rank from gmms_drop_frame_5 f left join gmms_shelf_rack_2 r on f.rank =r.id  where f.groups_ = 100 and f.stops <21 and f.rank is not null and r.processcard_id is null";
-			}
-			if("浠撳偍閰嶅淇℃伅".equals(leixing)){
-			    
-			    strSQL="select * from v_cc_cpinfo";
-			}
-			if("鎵�鏈夎啘绯�".equals(leixing)){
-				strSQL ="SELECT DISTINCT(glass_id) FROM `gmms_glass_number_color` ";
-			}
-			
-			//System.out.println("淇℃伅鏌ヨ锛�" + strSQL);
-			if("鍒囧壊宸ヤ綅妯″紡".equals(leixing)){
-				
-				strSQL="select gongwei_mode from gmms_prod_line_state where line ="+line;
-			}
-			if("鍙挗鍖栬啘绯�".equals(leixing)){
-				strSQL ="select moxi from v_ghq_liuchengka group by moxi order by count(1) desc";
-				
-			}
-			if("鍒囧壊鍘熺墖璇︽儏".equals(leixing)){
-				strSQL ="select null,width,height,thickness,color,batch_id,sum(pieces),dengluname from gmms_cutmanage where groups ="+line+" and BgTime is null "+
-						"group by width,height,thickness,color,batch_id,dengluname";
-				
-			}
-			if ("鐞嗙墖绗煎崟鍙岀墖妯″紡".equals(leixing)) {
-				strSQL = "select lipianlong_mode from gmms_prod_line_state where line =" + line;
-			}
-			if ("鍘熺墖搴撳瓨鍥�".equals(leixing)) {
-				strSQL = "select sr.id,sr.create_time,sr.mod_time,rp.pieces,rp.left_pieces,rp.create_time, "+
-						 "(CASE WHEN TO_DAYS(NOW())-TO_DAYS(rp.create_time)<3 THEN  "+
-						 "			0  "+
-						 "		WHEN TO_DAYS(NOW())-TO_DAYS(rp.create_time)<5 THEN  "+
-						 "		  1  "+
-						 "		WHEN TO_DAYS(NOW())-TO_DAYS(rp.create_time)<8 THEN  "+
-						 "		  2  "+
-						 "		ELSE  "+
-						 "			3  "+
-						 "	END) as datetype,CONCAT(IFNULL(rp.raw_width,0),'mm'),CONCAT(IFNULL(rp.raw_height,0),'mm'),CONCAT(IFNULL(rp.raw_thickness,0),'mm'),rp.color,rp.batch_id from gmms_shelf_rack as sr left join gmms_raw_package as rp on sr.raw_package_id1=rp.id where sr.raw_package_id1 is not null";
-			}
-			if ("鍒囪鐜囧浘-鍘熺墖浣跨敤".equals(leixing)) {
-				strSQL = "select IFNULL(SUM(gc.width*gc.height)/1000000,0) from "+
-						 "(SELECT DATE_FORMAT(DATE_SUB(DATE_FORMAT(NOW(),'%Y-%m-%d'),INTERVAL (CAST(help_topic_id AS SIGNED INTEGER)) DAY),'%Y-%m-%d') month "+
-						 "FROM mysql.help_topic WHERE help_topic_id < 14 ORDER BY month ASC) as d "+
-						 "left JOIN gmms_cutmanage as gc on d.month=DATE_FORMAT(gc.BgTime,'%Y-%m-%d') group by d.month;";
-			}
-			if ("鍒囪鐜囧浘-鍘熺墖浣跨敤褰撴湀".equals(leixing)) {
-				strSQL = "select IFNULL(SUM(width*height)/1000000,0),IFNULL(DATE_FORMAT(BgTime,'%Y-%m'),DATE_FORMAT(NOW(),'%Y-%m-01')) from gmms_cutmanage where BgTime>DATE_FORMAT(NOW(),'%Y-%m-01');";
-			}
-			if ("鍗曠倝鏈�澶ц杞界巼-闈㈢Н鏈�澶ф瘮渚嬪樊".equals(leixing)) {
-				strSQL = "select IFNULL(maxLoadingRate,0),IFNULL(maxTolerance,0) from gmms_furnace where id="
-						+ line;
-			}
-			if ("鍗曠倝鏈�澶ч潰绉瘮渚嬪樊".equals(leixing)) {
-				strSQL = "select IFNULL(maxTolerance,0) from gmms_furnace where id="
-						+ line;
-			}
-			sn.createSql(strSQL);
-			JSONArray a = sn.query().resultToJson(false);
-			if (a != null) {
-				out.print(a.toString());
-			} else {
-				out.print("[]");
-			}
-		}
-
-		if ("淇敼".equals(caozuo)) {
-			if ("鍙樻洿鐝粍".equals(leixing)) {
-				String bzinfo = request.getParameter("info");
-				strSQL = "update gmms_user_current set banzu = '" + bzinfo + "',isPaused=null where gongyi = '" + gongyi
-						+ "' and chanxian = " + line;
-			}
-			if("娆$牬".equals(leixing)){
-				String info = request.getParameter("cpInfo");
-				//娆$牬绫诲瀷锛屾鐮村師鍥�
-				String[] s = info.split("-");
-				strSQL="Update e_pierceds set pierced_type = '"+s[0]+"',pierced_cause = '"+s[1]+"' where glass_id = "+Id;
-			}
-			if("鎻愪氦鎶ュ伐".equals(leixing)){
-				String info = request.getParameter("cpInfo");
-				//娆$牬绫诲瀷锛屾鐮村師鍥�
-				String[] s = info.split("-");
-				strSQL="Update e_pierceds set is_report = 1 where process = '"+s[0]+"' and team_name = '"+s[1]+"' and  pierced_type is not null and is_report=0";
-				
-			}
-			if("鐝粍涓嬬彮".equals(leixing)){
-				strSQL = "update gmms_user_current set banzu = null where gongyi = '" + gongyi+ "' and chanxian = " + line;
-			}			
-			//System.out.println("淇敼锛�" + strSQL);
-			if("鍙樻洿鍒囧壊宸ヤ綅妯″紡".equals(leixing)){
-				strSQL="update gmms_prod_line_state set gongwei_mode= if(gongwei_mode=1,2,1) where line ="+line;
-			}
-			if ("鍙樻洿鐞嗙墖绗煎崟鍙岀墖妯″紡".equals(leixing)) {
-				strSQL = "update gmms_prod_line_state set lipianlong_mode= if(lipianlong_mode=1,2,1) where line ="
-						+ line;
-			}
-			if ("鍗曠倝鏈�澶ц杞界巼".equals(leixing)) {
-				String value = request.getParameter("value");
-				strSQL = "update gmms_furnace set maxLoadingRate='"+value+"' where id="
-						+ line;
-			}
-			if ("鍗曠倝鏈�澶ч潰绉瘮渚嬪樊".equals(leixing)) {
-				String value = request.getParameter("value");
-				strSQL = "update gmms_furnace set maxTolerance='"+value+"' where id="
-						+ line;
-			}
-			sn.createSql(strSQL);
-			int s = sn.update();
-			//System.out.println(s);
-			out.print(s);
-
-		}
-		
-
-		if ("娆$牬".equals(caozuo)) {
-			//gongyi = gongyi.contains("閽㈠寲") ? "閽㈠寲" : gongyi;
-			if ("閽㈠寲".equals(gongyi)) {
-				String info = request.getParameter("cpInfo");
-				//System.out.println("浼犲叆淇℃伅锛�" + info);
-				String[] s = info.split("-");
-				sn.createStdCall("proc_ePiercedsByGlassIdSave", 5);
-				DBSession.StdCallResult scr = sn.stdCall(s[0], s[1], s[2], s[3], s[4]);
-				int rC = scr.ResultCode;
-				String rM = scr.ResultMessage;
-				if (rC == 1) {
-					out.print("OK");
-				} else {
-					out.print(rC + "_" + rM);
-				}
-			}
-
-			if ("涓┖".equals(gongyi)) {
-				String info = request.getParameter("cpInfo");
-				//System.out.println("涓┖浼犲叆淇℃伅锛�" + info);
-				String[] s = info.split("-");
-				sn.createStdCall("proc_ePiercedsByGlassIdSave", 5);
-				DBSession.StdCallResult scr = sn.stdCall(s[0], s[1], s[2], s[3], s[4]);
-				int rC = scr.ResultCode;
-				String rM = scr.ResultMessage;
-				if (rC == 1) {
-					out.print("OK");
-				} else {
-					out.print(rC + "_" + rM);
-				}
-			}
-			
-			if ("浠撳偍".equals(gongyi)) {
-				String info = request.getParameter("cpInfo");
-				//System.out.println("浠撳偍浼犲叆淇℃伅锛�" + info);
-				String[] s = info.split("-");
-				sn.createStdCall("proc_ePiercedsByGlassIdSave", 5);
-				DBSession.StdCallResult scr = sn.stdCall(s[0], s[1], s[2], s[3], s[4]);
-				int rC = scr.ResultCode;
-				String rM = scr.ResultMessage;
-				if (rC == 1) {
-					out.print("OK");
-				} else {
-					out.print(rC + "_" + rM);
-				}
-			}
-			if ("纾ㄨ竟".equals(gongyi)) {
-				String info = request.getParameter("cpInfo");
-				//System.out.println("纾ㄨ竟浼犲叆淇℃伅锛�" + info);
-				String[] s = info.split("-");
-				sn.createStdCall("proc_ePiercedsByGlassIdSave", 5);
-				DBSession.StdCallResult scr = sn.stdCall(s[0], s[1], s[2], s[3], s[4]);
-				int rC = scr.ResultCode;
-				String rM = scr.ResultMessage;
-				if (rC == 1) {
-					out.print("OK");
-				} else {
-					out.print(rC + "_" + rM);
-				}
-			}
-		}
-		if("鍙栨秷鐮存崯".equals(caozuo)){
-			
-			strSQL ="INSERT INTO e_record_tempering(processcard_id, glass_id, width, height, thinkess, color, sequence, create_time, line, team_name, type_num, is_report,rank) "+
-					"select gt.processcard_id,gt.id,gt.edg_width,gt.edg_height,gt.thickness,gt.color,gt.stop_rank,NOW(),ep.line,ep.team_name,gt.edg_speed2,1,0 from gmms_galss_task_buffer as gt "+ 
-					"left join e_record_tempering as et on gt.id=et.glass_id "+
-					"left join e_pierceds as ep on ep.glass_id=gt.id  "+
-					"where et.glass_id is null and ep.glass_id is not null and gt.id='"+Id+"'";
-			//System.out.println("淇敼锛�" + strSQL);
-			sn.createSql(strSQL);
-			int qx = sn.update();
-			//System.out.println(s);
-			out.print(qx);
-			String strquxiao="Update e_pierceds set is_report=-1 where glass_id = "+Id;
-			sn.createSql(strquxiao);
-			int qxposun = sn.update();
-		}
-		if("鎶ュ伐纭".equals(caozuo)){
-			//System.out.println("鎶ュ伐纭鏁版嵁锛�" + lckh + ";浜х嚎锛�" + line);
-			sn.createStdCall("proc_eRecordStockByGlassIdSave", 2);
-			DBSession.StdCallResult scr = sn.stdCall(lckh, line);
-			int rC = scr.ResultCode;
-			String rM = scr.ResultMessage;
-			if (rC == 1) {
-				out.print("OK");
-			} else {
-				out.print(rC + "_" + rM);
-			}
-		}
-		if("鎶ュ伐鎻愪氦".equals(caozuo)){
-			sn.createStdCall("proc_eRecordStockByLineUpdata", 1);
-			DBSession.StdCallResult scr = sn.stdCall(line);
-			int rC = scr.ResultCode;
-			String rM = scr.ResultMessage;
-			if (rC == 1) {
-				out.print("OK");
-			} else {
-				out.print(rC + "_" + rM);
-			}
-			
-		}
-		if("閽㈠寲鎶ュ伐鎻愪氦".equals(caozuo)){
-			
-			strSQL = "update e_record_tempering set report_time = now() where is_report != 4 and report_time is null and line = " + line;
-
-			sn.createSql(strSQL);
-			int s = sn.update();
-			//out.print(s);		
-			String postrSQL="update e_pierceds set report_time = now() where is_report != -1 and is_report != 4 and report_time is null and line = "+line+" and process = '閽㈠寲'";
-			sn.createSql(postrSQL);
-			int ps = sn.update();
-			out.print(ps);
-		}
-		if("鍒囧壊鎻愪氦".equals(caozuo)){
-			
-			strSQL = "update gmms_cutmanage set BgTime=now() where BgTime is null and groups=" + line;
-			System.out.println(strSQL);
-			sn.createSql(strSQL);
-			int s = sn.update();
-			out.print(s);
-			
-			String bzSQL = "update gmms_user_current set isPaused='鏆傚仠' where gongyi = '纾ㄨ竟' and chanxian = " + line;
-			sn.createSql(bzSQL);
-			int ps = sn.update();
-		}
-
-
-	} catch (Exception e) {
-		e.printStackTrace();
-
-	} finally {
-		if (sn != null)
-			sn.close();
-	}
-
-      out.write('\r');
-      out.write('\n');
-    } catch (Throwable t) {
-      if (!(t instanceof SkipPageException)){
-        out = _jspx_out;
-        if (out != null && out.getBufferSize() != 0)
-          out.clearBuffer();
-        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
-        else throw new ServletException(t);
-      }
-    } finally {
-      _jspxFactory.releasePageContext(_jspx_page_context);
-    }
-  }
-}

--
Gitblit v1.8.0