This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nms-nmsweb/WebRoot/page/detection/policeRelation/addPoliceRelation.jsp
2018-09-27 16:21:05 +08:00

291 lines
11 KiB
Plaintext

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="/jstl/c" prefix="c"%>
<%@ taglib uri="/jstl/fn" prefix="fn"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>i18n_apr.message.title_n81i</title>
<link href="<c:url value='/css/nms.css'/>" rel="stylesheet"
type="text/css" />
<script language="javascript" type="text/javascript"
src="<c:url value='/js/jquery-1.4.2.min.js'/>"></script>
<script language="javascript" type="text/javascript"
src="<c:url value='/js/onmouse.js'/>"></script>
<script language="javascript" type="text/javascript"
src="<c:url value='/js/jquery.tools.js'/>"></script>
<script type="text/javascript"
src="<c:url value='/js/WebCalendar.js' />"></script>
</head>
<script language="javascript" type="text/javascript">
function add(){
if($id("metadataId","xz","i18n_apr.message.metadata_n81i")&&$id("policeValue","","i18n_apr.message.policeValue_n81i")
&&$id("policeUnit","","i18n_apr.message.policeUnit_n81i")
&& $id("policeSymbols","xz","i18n_apr.message.policeSymbols_n81i")
&& $id("policeEmergent","xz","i18n_apr.message.policeEmergent_n81i")
&& $id("policeLevel","sz","i18n_apr.message.policeLevel_n81i")){
var poliMsg = $("#policeShowInfo").val();
var pll = $("#policeLevel").val();
var selEmergVal = jQuery('#policeEmergent').val();
var boo = true;
if(selEmergVal==1) {//非紧急才需要判断级别是否为1-5
if(pll >0 && pll<=5){
boo = true;
}else{
$("#pl").text("i18n_apr.message.policeLevelInfo_n81i");
return;
}
}
if(boo){
if(poliMsg!=""){
if(poliMsg.length >200){
$("#Msg").text("i18n_apr.message.inputInfo_n81i");
return;
}else{
document.Mkform.action="<%=path%>/detection/policeSet.do?action=doAdd";
document.Mkform.submit();
}
}else{
document.Mkform.action="<%=path%>/detection/policeSet.do?action=doAdd";
document.Mkform.submit();
}
}
}
}
function goBack(){
document.Mkform.action="<%=path%>/detection/policeSet!executeAction.do?action=query";
document.Mkform.submit();
}
jQuery(function(){
//-- 字段类型选择事件绑定
jQuery("#metadataId").change(function(){
$("#policeSymbols").find("option").not($("#che")[0]).remove();
var filedType = $("#metadataId").find("option:selected").attr('id');
if(filedType.indexOf("VARCHAR2")>=0){
$("#policeSymbols").append("<option value='equals'>equals</option><option value='include' >include</option><option value='exclude' >exclude</option>");
}else{
$("#policeSymbols").append("<option value='>' >&gt;</option><option value='<' >&lt;</option><option value='>=' >&gt;=</option><option value='<=' >&lt;=</option><option value='=' >=</option>");
}
});
})
function emergentChange() {
var selEmergVal = jQuery('#policeEmergent').val();
if(selEmergVal=='1') {
jQuery('#levelTitleTd').show();
jQuery('#levelValTd').show();
jQuery('#styleChgTd').attr('colspan','1');
jQuery('#policeLevel').val('');
}else {
jQuery('#levelTitleTd').hide();
jQuery('#levelValTd').hide();
jQuery('#styleChgTd').attr('colspan','3');
jQuery('#policeLevel').val('0');
}
}
function markerFiledChange() {
var selMarkerVal = jQuery('#markerFiledId').val();
if(selMarkerVal=='') {//未选择字段
jQuery('#markerTitleTd').hide();
jQuery('#markerValTd').hide();
jQuery('#markerStyleChgTd').attr('colspan','3');
}else {//选择了字段
jQuery('#markerTitleTd').show();
jQuery('#markerValTd').show();
jQuery('#markerStyleChgTd').attr('colspan','1');
}
jQuery('#marker').val('');
}
</script>
<body>
<div class="middle_list" >
<form action="" name="Mkform" method="post">
<input type="hidden" name="pageNo" value="${pageNo }" />
<input type="hidden" name="pageSize" value="${pageSize }" />
<input type="hidden" value="${setId}" name="setId"/>
<input type="hidden" value="${ctn}" name="ctn"/>
<input type="hidden" value="${pIden}" name="pIden"/>
<input type="hidden" value="${ip}" name="ip"/>
<div style="clear: both"></div>
<table border="0" cellpadding="0" cellspacing="0" class="table">
<tr>
<td colspan="4" class="color_8">
<strong>i18n_apr.text.title_n81i</strong>
</td>
</tr>
<tr>
<td class="color_1" width="20%" align="right">
i18n_apr.message.metadata_n81i
</td>
<td class="color_6" width="30%" align="left" >
<select name="dataPoliceRelation.metadata.id" id="metadataId" style="width: 153px;">
<option value="" id="qxz">
i18n_apr.message.metadataDefault_n81i
</option>
<c:if test="${fn:length(allMetadata) > 0}">
<c:forEach items="${allMetadata}" var="metadata">
<option value="${metadata.id}" id="${metadata.filedType}">
${metadata.filedComments}
</option>
</c:forEach>
</c:if>
</select>
<font color="red">*</font>
</td>
<td class="color_1" width="15%" align="right">
i18n_apr.text.policeState_n81i
</td>
<td class="color_6" align="left">
<input type="radio" name="dataPoliceRelation.policeState"
id="policeState1" value="0" checked="checked"/>i18n_apr.message.active_n81i
<input type="radio" name="dataPoliceRelation.policeState"
id="policeState" value="1" />i18n_apr.message.invalid_n81i
</td>
</tr>
<tr>
<td class="color_1" width="20%" align="right">
i18n_apr.text.markerFiled_n81i
</td>
<td class="color_6" width="30%" align="left" colspan="3" id="markerStyleChgTd">
<select name="dataPoliceRelation.markerFiledId" id="markerFiledId" onchange="markerFiledChange();" style="width: 153px;">
<option value="" id="qxz">
i18n_apr.message.markerFiledDefault_n81i
</option>
<c:if test="${fn:length(allMetadata) > 0}">
<c:forEach items="${allMetadata}" var="metadata">
<option value="${metadata.id}" id="${metadata.filedType}">
${metadata.filedComments}
</option>
</c:forEach>
</c:if>
</select>
</td>
<td class="color_1" width="15%" align="right" style="display: none;" id="markerTitleTd">
i18n_apr.text.marker_n81i
</td>
<td class="color_6" width="35%" align="left" colspan="1" style="display: none;" id="markerValTd">
<input type="text" name="dataPoliceRelation.marker"
id="marker" value=""/><font color="red" > i18n_apr.message.marker_n81i</font>
</td>
</tr>
<tr>
<td class="color_1" align="right">
i18n_apr.message.policeEmergent_n81i
</td>
<td class="color_3" align="left" colspan="3" id="styleChgTd">
<select name="dataPoliceRelation.policeEmergent" id="policeEmergent" onchange="emergentChange();" style="width: 153px;">
<option value="">
i18n_apr.message.metadataDefault_n81i
</option>
<c:if test="${fn:length(allpoliceEmergent) > 0}">
<c:forEach items="${allpoliceEmergent}" var="policeEmergent">
<option value="${policeEmergent.typeCode}" >
${policeEmergent.typeValue}
</option>
</c:forEach>
</c:if>
<%--<option value="0" >allpoliceEmergent
紧急
</option>
<option value="1" >
非紧急
</option>
--%></select>
<font color="red">*</font>
</td>
<td class="color_1" align="right" id="levelTitleTd" style="display: none;">
i18n_apr.text.policeLevel_n81i
</td>
<td class="color_3" align="left" id="levelValTd" style="display: none;">
<input type="text" name="dataPoliceRelation.policeLevel"
id="policeLevel" value=""/>
<font id="pl" color="red">*i18n_apr.message.policeLevelInfo_n81i</font>
</td>
</tr>
<tr id = "pv">
<td class="color_1" align="right">
i18n_apr.message.policeValue_n81i
</td>
<td class="color_3" align="left">
<input type="text" name="dataPoliceRelation.policeValue"
id="policeValue" value=""/>
<font color="red">*</font>
</td>
<td class="color_1" align="right">
i18n_apr.message.policeUnit_n81i
</td>
<td class="color_3" align="left">
<input type="text" name="dataPoliceRelation.policeUnit"
id="policeUnit" value=""/>
<font color="red">*</font>
</td>
</tr>
<tr>
<td class="color_1" align="right">
i18n_apr.message.policeSymbols_n81i
</td>
<td class="color_3" align="left">
<select name="dataPoliceRelation.policeSymbols" id="policeSymbols" style="width: 153px;">
<option value="" id="che">
i18n_apr.message.metadataDefault_n81i
</option>
</select>
<font color="red">*</font>
</td>
<td class="color_1" align="right" valign="top" nowrap="nowrap">
i18n_apr.text.policeShowInfo_n81i
</td>
<td class="color_3" align="left" valign="top">
<textarea rows="3" cols="40" name="dataPoliceRelation.policeShowInfo" id="policeShowInfo"></textarea>
<div><font color="red" id="Msg">i18n_apr.message.policeShowInfo_n81i</font></div>
</td>
</tr>
<tr>
<td class="color_7" colspan="4" align="right">
<input type="button" class=btn3_mouseout
onmouseover="this.className='btn3_mouseover'"
onmouseout="this.className='btn3_mouseout'"
onmousedown="this.className='btn3_mousedown'"
onmouseup="this.className='btn3_mouseup'" onclick="add()" value="i18n_apr.button.submit_n81i"/>
&nbsp;
<input type="button" class=btn3_mouseout
onmouseover="this.className='btn3_mouseover'"
onmouseout="this.className='btn3_mouseout'"
onmousedown="this.className='btn3_mousedown'"
onmouseup="this.className='btn3_mouseup'"
onclick="javascript:document.forms['Mkform'].reset()" value="i18n_apr.button.reset_n81i"/>
&nbsp;
<input type="button" class=btn3_mouseout
onmouseover="this.className='btn3_mouseover'"
onmouseout="this.className='btn3_mouseout'"
onmousedown="this.className='btn3_mousedown'"
onmouseup="this.className='btn3_mouseup'"
onclick="goBack(${detectionSetInfo.id})" value="i18n_apr.button.back_n81i"/>
&nbsp;
</td>
</tr>
</table>
</form>
</div>
</body>
</html>