2021-12-17 16:06:39 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
|
|
|
<head>
|
|
|
|
|
<th:block th:include="include :: header('监区产线列表')" />
|
|
|
|
|
</head>
|
|
|
|
|
<body class="gray-bg">
|
|
|
|
|
<div class="container-div">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-sm-12 search-collapse">
|
|
|
|
|
<form id="formId">
|
|
|
|
|
<div class="select-list">
|
|
|
|
|
<ul>
|
|
|
|
|
<li>
|
|
|
|
|
<label>名称:</label>
|
|
|
|
|
<input type="text" name="disname"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>负责人:</label>
|
|
|
|
|
<input type="text" name="leader"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>状态:</label>
|
2021-12-22 16:08:39 +08:00
|
|
|
<select name="status" onchange="$.treeTable.search()" th:with="type=${@dict.getType('busi_line_status')}">
|
2021-12-17 16:06:39 +08:00
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.treeTable.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
|
|
|
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="btn-group-sm" id="toolbar" role="group">
|
|
|
|
|
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="busi:prisonLine:add">
|
|
|
|
|
<i class="fa fa-plus"></i> 新增
|
|
|
|
|
</a>
|
|
|
|
|
<a class="btn btn-primary" onclick="$.operate.edit()" shiro:hasPermission="busi:prisonLine:edit">
|
|
|
|
|
<i class="fa fa-edit"></i> 修改
|
|
|
|
|
</a>
|
|
|
|
|
<a class="btn btn-info" id="expandAllBtn">
|
|
|
|
|
<i class="fa fa-exchange"></i> 展开/折叠
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-12 select-table table-striped">
|
|
|
|
|
<table id="bootstrap-tree-table"></table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<th:block th:include="include :: footer" />
|
|
|
|
|
<script th:inline="javascript">
|
|
|
|
|
var addFlag = [[${@permission.hasPermi('busi:prisonLine:add')}]];
|
|
|
|
|
var editFlag = [[${@permission.hasPermi('busi:prisonLine:edit')}]];
|
|
|
|
|
var removeFlag = [[${@permission.hasPermi('busi:prisonLine:remove')}]];
|
|
|
|
|
var statusDatas = [[${@dict.getType('busi_line_status')}]];
|
|
|
|
|
var classifyDatas = [[${@dict.getType('busi_line_type')}]];
|
|
|
|
|
var prefix = ctx + "busi/prisonLine";
|
|
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
var options = {
|
|
|
|
|
code: "id",
|
|
|
|
|
parentCode: "pid",
|
|
|
|
|
expandColumn: "2",
|
|
|
|
|
uniqueId: "id",
|
|
|
|
|
url: prefix + "/list",
|
|
|
|
|
createUrl: prefix + "/add/{id}",
|
|
|
|
|
updateUrl: prefix + "/edit/{id}",
|
|
|
|
|
removeUrl: prefix + "/remove/{id}",
|
|
|
|
|
exportUrl: prefix + "/export",
|
|
|
|
|
modalName: "监区产线",
|
|
|
|
|
columns: [{
|
|
|
|
|
field: 'selectItem',
|
|
|
|
|
radio: true
|
|
|
|
|
},
|
|
|
|
|
{
|
2021-12-17 18:44:19 +08:00
|
|
|
field: 'pname',
|
2021-12-17 16:06:39 +08:00
|
|
|
title: '所属监区',
|
|
|
|
|
align: 'left'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'disname',
|
|
|
|
|
title: '名称',
|
|
|
|
|
align: 'left'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'leader',
|
|
|
|
|
title: '负责人',
|
|
|
|
|
align: 'left'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'personNumber',
|
|
|
|
|
title: '人员数量',
|
|
|
|
|
align: 'left'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'status',
|
|
|
|
|
title: '状态',
|
|
|
|
|
align: 'left',
|
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
|
return $.table.selectDictLabel(statusDatas, value);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'classify',
|
|
|
|
|
title: '类型',
|
|
|
|
|
align: 'left',
|
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
|
return $.table.selectDictLabel(classifyDatas, value);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '操作',
|
|
|
|
|
align: 'center',
|
|
|
|
|
align: 'left',
|
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
|
var actions = [];
|
|
|
|
|
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
|
|
|
|
|
if (row.classify == "J") { // 类型为监区时显示
|
|
|
|
|
actions.push('<a class="btn btn-info btn-xs ' + addFlag + '" href="javascript:void(0)" onclick="$.operate.add(\'' + row.id + '\')"><i class="fa fa-plus"></i>新增</a> ');
|
|
|
|
|
}
|
|
|
|
|
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
|
|
|
|
|
return actions.join('');
|
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
};
|
|
|
|
|
$.treeTable.init(options);
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|