| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
-
- <title>确认</title>
- <script type=text/javascript src="./liger/lib/jquery/jquery-1.5.2.min.js"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <link href="main.css" rel="stylesheet" type="text/css" ></link>
- <script src="/shares/xheditor/xheditor-1.1.14/xheditor-1.1.14-zh-cn.min.js" type="text/javascript" ></script>
- <link href="./liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css"></link>
- <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
- <script type="text/javascript">
- function CloseWin(){
- window.parent.dialog.close();
- }
- function yes(){
- document.getElementById("tongbu").style.display = "inline";
- //$("#factorys").removeAttr("style");
- $("#idSave").attr({"disabled":"disabled"});
- return true;
- }
- function refresh(obj){
- if(obj == "1"){
- window.parent.window.location.reload();
- }
- }
- </script>
- </head>
- <body onload="refresh(${requestScope.msgEvent})">
- <%@ include file="/include/message.jsp"%>
- <form action="carGpsAction.do" method="post" onsubmit="return yes()">
- <div class="forum-container">
- <center>
- <table class="l-table-edit line">
- <tr>
- <c:if test="${requestScope.difference == 1 }">
- <td style="text-align: center; font-weight: 800;">是否同步选中的数据</td>
- </c:if>
- <c:if test="${requestScope.difference == 2 }">
- <td style="text-align: center; font-weight: 800;">是否同步GPS定位数据</td>
- </c:if>
- </tr>
- <tr>
- <td style="text-align: center;">
- <input type="submit" id="idSave" class="l-button" value="确认"/>
- <input type="button" class="l-button" value="取消"
- onclick="CloseWin();"/>
- </td>
- </tr>
- <tr>
- <td id="tongbu" style="font-weight: 800;display: none;color:red;">
- <img width="25" height="25" src="/shares/images/car//wait.gif" border=0 /> 同步中,需要点时间请耐心等待...
- </td>
- </tr>
- </table>
- <input type="hidden" id="state" name="state" value="${requestScope.state}">
- <input type="hidden" id="nowTime" name="nowTime" value="${requestScope.nowTime}">
- <input type="hidden" id="ck" name="ck" value="${requestScope.ck}">
- <input type="hidden" id="task" name="task" value="submit">
- </center>
- </div>
- </form>
- </body>
- </html>
|