Merge branch 'develop' of http://192.168.10.125/k18_web/NFS.git into develop
This commit is contained in:
@@ -16,7 +16,6 @@ import java.util.Iterator;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Map.Entry;
|
import java.util.Map.Entry;
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import javax.ws.rs.client.WebTarget;
|
import javax.ws.rs.client.WebTarget;
|
||||||
@@ -25,21 +24,16 @@ import javax.ws.rs.core.MediaType;
|
|||||||
import javax.ws.rs.core.Response;
|
import javax.ws.rs.core.Response;
|
||||||
|
|
||||||
import org.apache.http.HttpStatus;
|
import org.apache.http.HttpStatus;
|
||||||
import org.apache.http.NameValuePair;
|
|
||||||
import org.apache.http.client.ClientProtocolException;
|
import org.apache.http.client.ClientProtocolException;
|
||||||
import org.apache.http.client.config.RequestConfig;
|
import org.apache.http.client.config.RequestConfig;
|
||||||
import org.apache.http.client.entity.UrlEncodedFormEntity;
|
|
||||||
import org.apache.http.client.methods.CloseableHttpResponse;
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
import org.apache.http.client.methods.HttpGet;
|
|
||||||
import org.apache.http.client.methods.HttpPatch;
|
import org.apache.http.client.methods.HttpPatch;
|
||||||
import org.apache.http.client.methods.HttpPost;
|
|
||||||
import org.apache.http.client.utils.URIBuilder;
|
import org.apache.http.client.utils.URIBuilder;
|
||||||
import org.apache.http.entity.StringEntity;
|
import org.apache.http.entity.StringEntity;
|
||||||
import org.apache.http.impl.client.CloseableHttpClient;
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.DefaultHttpRequestRetryHandler;
|
import org.apache.http.impl.client.DefaultHttpRequestRetryHandler;
|
||||||
import org.apache.http.impl.client.HttpClients;
|
import org.apache.http.impl.client.HttpClients;
|
||||||
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
|
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
|
||||||
import org.apache.http.message.BasicNameValuePair;
|
|
||||||
import org.apache.http.util.EntityUtils;
|
import org.apache.http.util.EntityUtils;
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
@@ -64,52 +58,43 @@ public class HttpClientUtil {
|
|||||||
* @throws IOException
|
* @throws IOException
|
||||||
* @throws ClientProtocolException
|
* @throws ClientProtocolException
|
||||||
*/
|
*/
|
||||||
public static String get(String url) throws Exception{
|
public static String get(String destUrl) throws Exception{
|
||||||
|
|
||||||
CloseableHttpClient httpclient =null;
|
|
||||||
//请求结果
|
|
||||||
CloseableHttpResponse response = null;
|
|
||||||
String content ="";
|
|
||||||
logger.info("流量统计数据请求路径:"+url);
|
|
||||||
//执行get方法
|
//执行get方法
|
||||||
|
String result = null;
|
||||||
|
Response response=null;
|
||||||
|
String url = "";
|
||||||
try {
|
try {
|
||||||
//实例化get方法
|
URIBuilder uriBuilder = new URIBuilder(destUrl);
|
||||||
HttpGet httpget = new HttpGet(url);
|
System.err.println(uriBuilder);
|
||||||
//实例化httpclient
|
url=uriBuilder.toString();
|
||||||
httpclient = HttpClients.createDefault();
|
logger.info("流量统计数据请求路径:"+url);
|
||||||
requestConfig = RequestConfig.custom()
|
//创建连接
|
||||||
.setSocketTimeout( Constants.HTTP_SOCKET_TIMEOUT)
|
WebTarget wt = ClientUtil.getWebTarger(url);
|
||||||
.setConnectTimeout( Constants.HTTP_CONNECT_TIMEOUT)
|
logger.info("getMsg url:"+url);
|
||||||
.setConnectionRequestTimeout( Constants.HTTP_CONNECT_REQUEST_TIMEOUT)
|
//获取响应结果
|
||||||
.build();
|
Builder header = wt.request(MediaType.APPLICATION_JSON).header("Content-Type", MediaType.APPLICATION_JSON);
|
||||||
httpclient = HttpClients.custom().setDefaultRequestConfig(requestConfig)
|
response= header.get();
|
||||||
.setRetryHandler(new DefaultHttpRequestRetryHandler( Constants.HTTP_CONNECT_RETRY_TIMES, false))
|
int status = response.getStatus();
|
||||||
.build();
|
if (status == HttpStatus.SC_OK) {
|
||||||
response = httpclient.execute(httpget);
|
result= response.readEntity(String.class);
|
||||||
if(response.getStatusLine().getStatusCode()==HttpStatus.SC_OK){
|
//调用处理数据方法
|
||||||
content = EntityUtils.toString(response.getEntity(),"utf-8");
|
logger.info("获取消息成功,相应内容如下: " + result);
|
||||||
logger.info("获取流量统计数据成功,相应内容如下: " + content);
|
} else {
|
||||||
}else {
|
logger.error("获取消息失败,相应内容如下: " + result);
|
||||||
logger.error("获取消息失败,相应内容如下: " + content);
|
throw new ConnectException("流量统计服务接口连接错误"+result);
|
||||||
throw new ConnectException("流量统计服务接口连接错误"+content);
|
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw e;
|
throw e;
|
||||||
}finally {
|
}finally {
|
||||||
if (response != null) {
|
if (response != null) {
|
||||||
try {
|
try {
|
||||||
response.close();
|
response.close();
|
||||||
} catch (IOException e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
try {
|
|
||||||
httpclient.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return content;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -120,7 +105,7 @@ public class HttpClientUtil {
|
|||||||
* @throws IOException
|
* @throws IOException
|
||||||
* @throws ClientProtocolException
|
* @throws ClientProtocolException
|
||||||
*/
|
*/
|
||||||
public String post(String url,Map<String, String> params) throws ClientProtocolException, IOException{
|
/* public String post(String url,Map<String, String> params) throws ClientProtocolException, IOException{
|
||||||
//实例化httpClient
|
//实例化httpClient
|
||||||
CloseableHttpClient httpclient =null;
|
CloseableHttpClient httpclient =null;
|
||||||
//结果
|
//结果
|
||||||
@@ -173,7 +158,7 @@ public class HttpClientUtil {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return content;
|
return content;
|
||||||
}
|
} */
|
||||||
/**
|
/**
|
||||||
* 处理patch请求.
|
* 处理patch请求.
|
||||||
* @param url 请求路径
|
* @param url 请求路径
|
||||||
@@ -199,13 +184,9 @@ public class HttpClientUtil {
|
|||||||
httpclient = HttpClients.createDefault();
|
httpclient = HttpClients.createDefault();
|
||||||
//实例化patch方法
|
//实例化patch方法
|
||||||
HttpPatch httpPatch = new HttpPatch(url);
|
HttpPatch httpPatch = new HttpPatch(url);
|
||||||
|
|
||||||
httpPatch.setHeader("Content-type", "application/json");
|
httpPatch.setHeader("Content-type", "application/json");
|
||||||
|
|
||||||
httpPatch.setHeader("Charset", "utf-8");
|
httpPatch.setHeader("Charset", "utf-8");
|
||||||
|
|
||||||
httpPatch.setHeader("Accept", "application/json");
|
httpPatch.setHeader("Accept", "application/json");
|
||||||
|
|
||||||
httpPatch.setHeader("Accept-Charset", "utf-8");
|
httpPatch.setHeader("Accept-Charset", "utf-8");
|
||||||
//提交的参数
|
//提交的参数
|
||||||
// UrlEncodedFormEntity uefEntity = new UrlEncodedFormEntity(nvps, "UTF-8");
|
// UrlEncodedFormEntity uefEntity = new UrlEncodedFormEntity(nvps, "UTF-8");
|
||||||
@@ -236,10 +217,12 @@ public class HttpClientUtil {
|
|||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
try {
|
if (httpclient != null) {
|
||||||
httpclient.close();
|
try {
|
||||||
} catch (IOException e) {
|
httpclient.close();
|
||||||
e.printStackTrace();
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return content;
|
return content;
|
||||||
|
|||||||
@@ -845,7 +845,7 @@ public class BaseController {
|
|||||||
if (entry.getCfgId() != null) {
|
if (entry.getCfgId() != null) {
|
||||||
params.put("searchCfgId", entry.getCfgId());
|
params.put("searchCfgId", entry.getCfgId());
|
||||||
}
|
}
|
||||||
if (entry.getOrderBy() != null&&entry.getOrderBy()!="") {
|
if (StringUtils.isNotBlank(entry.getOrderBy())) {
|
||||||
params.put("orderBy", entry.getOrderBy());
|
params.put("orderBy", entry.getOrderBy());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1308,4 +1308,6 @@ req_header=Request Header
|
|||||||
resp_header=Response Header
|
resp_header=Response Header
|
||||||
req_body=Request Body
|
req_body=Request Body
|
||||||
resp_body=Response Body\u3001
|
resp_body=Response Body\u3001
|
||||||
dns_sub=DNS Security
|
dns_sub=DNS Security
|
||||||
|
action_cache=\u043A\u044D\u0448
|
||||||
|
action_cache_whitelist=\u0431\u0430\u0439\u043F\u0430\u0441 \u043A\u044D\u0448\u0430
|
||||||
@@ -1304,4 +1304,6 @@ req_header=\u539F\u59CB\u8BF7\u6C42\u5934
|
|||||||
resp_header=\u539F\u59CB\u5E94\u7B54\u5934
|
resp_header=\u539F\u59CB\u5E94\u7B54\u5934
|
||||||
req_body=\u539F\u59CB\u8BF7\u6C42\u4F53
|
req_body=\u539F\u59CB\u8BF7\u6C42\u4F53
|
||||||
resp_body=\u539F\u59CB\u5E94\u7B54\u4F53
|
resp_body=\u539F\u59CB\u5E94\u7B54\u4F53
|
||||||
dns_sub=DNS\u5B89\u5168\u673A\u5236
|
dns_sub=DNS\u5B89\u5168\u673A\u5236
|
||||||
|
action_cache=\u7F13\u5B58
|
||||||
|
action_cache_whitelist=\u7F13\u5B58\u767D\u540D\u5355
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
#<23><EFBFBD>asn ip cfg <20><>asn id<69><64><EFBFBD><EFBFBD><EFBFBD><EFBFBD> user_region1<6E>Ĵ<EFBFBD>С,<2C>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
|
ALTER TABLE asn_ip_cfg MODIFY COLUMN user_region1 VARCHAR(20) DEFAULT NULL;
|
||||||
@@ -133,7 +133,8 @@ $(function(){
|
|||||||
var url = "${ctx}/ntc/av/sample/selectVedioPicture?picFilePath="+encodeURIComponent(data.picFilePath);
|
var url = "${ctx}/ntc/av/sample/selectVedioPicture?picFilePath="+encodeURIComponent(data.picFilePath);
|
||||||
//openPicWindow(url);
|
//openPicWindow(url);
|
||||||
}else{
|
}else{
|
||||||
alert(data.msg);
|
top.$.jBox.tip(data.msg, "<spring:message code='info'/>");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -93,17 +93,10 @@ function showIpActiveChart(rs){
|
|||||||
})
|
})
|
||||||
var chart = Highcharts.chart('chart', {
|
var chart = Highcharts.chart('chart', {
|
||||||
exporting: {
|
exporting: {
|
||||||
allowHTML:true,
|
filename:'IP-Active',
|
||||||
chartOptions: {
|
scale:1,
|
||||||
plotOptions: {
|
sourceWidth: 1280,
|
||||||
series: {
|
sourceHeight: 500,
|
||||||
dataLabels: {
|
|
||||||
enabled: true,
|
|
||||||
allowOverlap: true, // 允许数据标签重叠
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
title: {
|
title: {
|
||||||
text: null
|
text: null
|
||||||
@@ -140,22 +133,6 @@ function showIpActiveChart(rs){
|
|||||||
verticalAlign: 'middle'
|
verticalAlign: 'middle'
|
||||||
},
|
},
|
||||||
series: series,
|
series: series,
|
||||||
|
|
||||||
responsive: {
|
|
||||||
rules: [{
|
|
||||||
condition: {
|
|
||||||
maxWidth: 500
|
|
||||||
},
|
|
||||||
chartOptions: {
|
|
||||||
legend: {
|
|
||||||
layout: 'horizontal',
|
|
||||||
align: 'center',
|
|
||||||
verticalAlign: 'bottom'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
//活跃IP一小时间隔五分钟统计
|
//活跃IP一小时间隔五分钟统计
|
||||||
|
|||||||
@@ -60,13 +60,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<%-- <form:option value=""><spring:message code="action"/></form:option> --%>
|
<%-- <form:option value=""><spring:message code="action"/></form:option> --%>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
@@ -119,7 +119,7 @@ $(document).ready(function(){
|
|||||||
<form:select path="direction" class="selectpicker select2 form-control">
|
<form:select path="direction" class="selectpicker select2 form-control">
|
||||||
<form:option value=""><spring:message code="select"/></form:option>
|
<form:option value=""><spring:message code="select"/></form:option>
|
||||||
<c:forEach items="${fns:getDictList('LOG_DIRECTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('LOG_DIRECTION')}" var="dict">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</form:select>
|
</form:select>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -50,13 +50,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -70,13 +70,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -49,13 +49,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -51,13 +51,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -48,13 +48,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -51,13 +51,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -51,13 +51,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,11 +52,11 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="action">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="action">
|
||||||
<c:if test="${(action.itemValue eq 'action_reject') or (action.itemValue eq 'action_monit') }">
|
<c:if test="${(action.itemValue eq 'action_reject') or (action.itemValue eq 'action_monit') }">
|
||||||
<form:option value="${action.itemCode }" ><spring:message code="${action.itemValue }"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${action.itemValue }"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</form:select>
|
</form:select>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -67,13 +67,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -51,13 +51,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -49,33 +49,17 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<select id="action" path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:set var="actionIndex" value="0"></c:set>
|
<c:forEach items="${serviceList}" var="service"
|
||||||
<c:forEach items="${serviceList}" var="service" varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96)}">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<c:set var="actionIndex" value="${actionIndex+1}"></c:set>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
<c:if test="${ (actionIndex > 1) || (actionIndex == 0) }">
|
</form:select>
|
||||||
<option value=""><spring:message code="action"/></option>
|
|
||||||
</c:if>
|
|
||||||
<c:forEach items="${serviceList}" var="service" varStatus="satus">
|
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96)}">
|
|
||||||
<option value="${dict.itemCode}"
|
|
||||||
<c:if test="${log.action eq dict.itemCode}">
|
|
||||||
selected="selected"
|
|
||||||
</c:if>
|
|
||||||
>
|
|
||||||
<spring:message code="${dict.itemValue}"/>
|
|
||||||
</option>
|
|
||||||
</c:if>
|
|
||||||
</c:forEach>
|
|
||||||
</c:forEach>
|
|
||||||
</select>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
|
|||||||
@@ -50,13 +50,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -52,13 +52,13 @@ $(document).ready(function(){
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
@@ -51,13 +51,13 @@
|
|||||||
<!-- 搜索内容与操作按钮栏 -->
|
<!-- 搜索内容与操作按钮栏 -->
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<form:select path="action" class="selectpicker select2 input-small">
|
<form:select path="service" class="selectpicker select2 input-small">
|
||||||
<form:option value=""><spring:message code="action"/></form:option>
|
<form:option value=""><spring:message code="action"/></form:option>
|
||||||
<c:forEach items="${serviceList}" var="service"
|
<c:forEach items="${serviceList}" var="service"
|
||||||
varStatus="satus">
|
varStatus="satus">
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||||
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
|
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
Reference in New Issue
Block a user