基本配置增加csv和excel导出
This commit is contained in:
@@ -213,6 +213,17 @@
|
||||
<i class="fa fa-trash"></i> <spring:message code="delete"/></button>
|
||||
</shiro:hasPermission>
|
||||
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||
<i class="fa fa-wrench"></i> <spring:message code="export"></spring:message>
|
||||
<i class="fa fa-angle-down"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu pull-right" style="min-width: 110px;" >
|
||||
<li><sys:delRow url="${ctx}/specific/specificServiceCfg/exportSpec?exType=excel" searchUrl="${ctx}/specific/specificServiceCfg/list" id="treeTable" maxRow="5" label="cfg_excel"></sys:delRow></li>
|
||||
<li><sys:delRow url="${ctx}/specific/specificServiceCfg/exportSpec?exType=csv" searchUrl="${ctx}/specific/specificServiceCfg/list" id="treeTable" maxRow="5" label="cfg_csv"></sys:delRow></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<a class="btn btn-icon-only btn-default setfields tooltips"
|
||||
data-container="body" data-placement="top" data-original-title="<spring:message code='custom_columns'/>" href="javascript:;">
|
||||
<i class="icon-wrench"></i>
|
||||
@@ -266,16 +277,11 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- /筛选搜索内容栏 结束-->
|
||||
</form:form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<sys:message content="${message}" type="${messageType }"/>
|
||||
<div class="table-responsive">
|
||||
|
||||
@@ -284,8 +290,8 @@
|
||||
<tr>
|
||||
<th><input type="checkbox" class="ckboxs" id="selAll" onclick="selectAll()"></th>
|
||||
<!-- <th>序号</th> -->
|
||||
<th><spring:message code="business_type"/></th>
|
||||
<th>
|
||||
<th column="business_type" ><spring:message code="business_type"/></th>
|
||||
<th column="app_code" >
|
||||
<c:if test="${specificServiceCfg.cfgType==1}">
|
||||
<spring:message code="app_code"/>
|
||||
</c:if>
|
||||
@@ -296,7 +302,7 @@
|
||||
<spring:message code="protocol_code"/>
|
||||
</c:if>
|
||||
</th>
|
||||
<th>
|
||||
<th column="app_name" >
|
||||
<c:if test="${specificServiceCfg.cfgType==1}">
|
||||
<spring:message code="app_name"/>
|
||||
</c:if>
|
||||
@@ -307,7 +313,7 @@
|
||||
<spring:message code="protocol_name"/>
|
||||
</c:if>
|
||||
</th>
|
||||
<th>
|
||||
<th column="app_desc" >
|
||||
<c:if test="${specificServiceCfg.cfgType==1}">
|
||||
<spring:message code="app_desc"/>
|
||||
</c:if>
|
||||
@@ -320,14 +326,14 @@
|
||||
</th>
|
||||
<%-- <th><spring:message code="group_id"/></th> --%>
|
||||
<%-- <th><spring:message code="is_leaf"/></th> --%>
|
||||
<th><spring:message code="cfg_type"/></th>
|
||||
<th class="sort-column op_time"><spring:message code="operate_time"/></th>
|
||||
<th column="cfg_type" ><spring:message code="cfg_type"/></th>
|
||||
<th column="operate_time" class="sort-column op_time"><spring:message code="operate_time"/></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach items="${list}" var="specificServiceCfg" varStatus="ss">
|
||||
<tr id="${specificServiceCfg.specServiceId}" pId="${specificServiceCfg.parent.specServiceId ne 0?specificServiceCfg.parent.specServiceId:0}">
|
||||
<td><input type="checkbox" class="ckbox" name="check" value="${specificServiceCfg.specServiceId}"></td>
|
||||
<td><input type="checkbox" class="i-checks ckbox" id="${specificServiceCfg.specServiceId}" name="check" value="${specificServiceCfg.specServiceId}"></td>
|
||||
<%-- <td>${specificServiceCfg.showSequence}</td> --%>
|
||||
<td title="${specificServiceCfg.businessType}">
|
||||
<c:if test="${specificServiceCfg.cfgType==1}">
|
||||
|
||||
Reference in New Issue
Block a user