73 lines
2.6 KiB
Plaintext
73 lines
2.6 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
|
<html>
|
|
<head>
|
|
<title>区域管理</title>
|
|
<link href="${ctxStatic}/treeTable/themes/vsStyle/treeTable.min.css" rel="stylesheet" type="text/css" />
|
|
<script src="${ctxStatic}/treeTable/jquery.treeTable.min.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
var tpl = $("#treeTableTpl").html().replace(/(\/\/\<!\-\-)|(\/\/\-\->)/g,"");
|
|
|
|
var data = ${fns:toJson(list)}, rootId = "${not empty sysArea.id ? sysArea.id : 0}";
|
|
addRow("#treeTableList", tpl, data, rootId, true);
|
|
$("#treeTable").treeTable({expandLevel : 5});
|
|
});
|
|
|
|
|
|
|
|
function addRow(list, tpl, data, pid, root){
|
|
|
|
for (var i=0; i<data.length; i++){
|
|
var row = data[i];
|
|
|
|
var value = ${fns:jsGetVal('row.parentId')};
|
|
if(!value){
|
|
value = 0;
|
|
}
|
|
|
|
if (value == pid){
|
|
$(list).append(Mustache.render(tpl, {
|
|
dict: {
|
|
type: getDictLabel(${fns:toJson(fns:getDictList('SYS_AREA_TYPE'))}, row.type)
|
|
},
|
|
pid: (root?0:pid),
|
|
row: row
|
|
}));
|
|
|
|
addRow(list, tpl, data, row.id);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<ul class="nav nav-tabs">
|
|
<li class="active"><a href="${ctx}/sys/area/list?id=${sysArea.id}&parentIds=${sysArea.parentIds}">区域列表</a></li>
|
|
<shiro:hasPermission name="sys:area:edit"><li><a href="${ctx}/sys/area/form?parent.id=${sysArea.id}">区域添加</a></li></shiro:hasPermission>
|
|
</ul>
|
|
<sys:message content="${message}"/>
|
|
<table id="treeTable" class="table table-striped table-bordered table-condensed">
|
|
<thead><tr><th>区域名称</th><th>区域编码</th><th>区域类型</th><th>经度</th><th>纬度</th><th>备注</th><shiro:hasPermission name="sys:area:edit"><th>操作</th></shiro:hasPermission></tr></thead>
|
|
<tbody id="treeTableList"></tbody>
|
|
</table>
|
|
<script type="text/template" id="treeTableTpl">
|
|
<tr id="{{row.id}}" pId="{{pid}}">
|
|
<td><a href="${ctx}/sys/area/form?id={{row.id}}">{{row.name}}</a></td>
|
|
<td>{{row.code}}</td>
|
|
<td>{{dict.type}}</td>
|
|
<td>{{row.longitude}}</td>
|
|
<td>{{row.latitude}}</td>
|
|
<td>{{row.remarks}}</td>
|
|
<shiro:hasPermission name="sys:area:edit"><td>
|
|
<a href="${ctx}/sys/area/form?id={{row.id}}">修改</a>
|
|
<a href="${ctx}/sys/area/delete?id={{row.id}}" onclick="return confirmx('要删除该区域及所有子区域项吗?', this.href)">删除</a>
|
|
<a href="${ctx}/sys/area/form?parent.id={{row.id}}">添加下级区域</a>
|
|
</td></shiro:hasPermission>
|
|
</tr>
|
|
</script>
|
|
</body>
|
|
</html> |