462 lines
22 KiB
HTML
462 lines
22 KiB
HTML
<!doctype html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<base th:href="${#request.getContextPath() + '/'}">
|
|
<meta charset="utf-8">
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" href="assets/fonts/font-awesome/css/font-awesome.css"/>
|
|
<link rel="stylesheet" href="assets/layuiadmin/layui/css/layui.css" media="all">
|
|
<link rel="stylesheet" href="assets/layuiadmin/style/admin.css" media="all">
|
|
<style>
|
|
.layui-form-select{
|
|
min-width:200px!important;
|
|
}
|
|
.layui-select-title{
|
|
min-width:200px!important;
|
|
}
|
|
.layui-select-title input{
|
|
min-width:200px!important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="layui-fluid layui-anim layui-anim-fadein">
|
|
<div class="layui-row">
|
|
<div class="layui-col-md12">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<form class="layui-form layui-form-pane" lay-filter="dataForm">
|
|
<div class="layui-row">
|
|
<div class="layui-col-md3">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">姓名</label>
|
|
<div class="layui-input-block">
|
|
<input type="text" id="name" readonly name="name" th:value="${dto.name}" class="layui-input" value="" maxlength="50">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-md3">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">证件</label>
|
|
<div class="layui-input-block">
|
|
<input type="text" id="idcard" readonly name="idcard" th:value="${dto.idcard}" class="layui-input" value="" maxlength="50">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-md3">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">出生日期</label>
|
|
<div class="layui-input-block">
|
|
<input type="text" id="birthday" readonly th:value="${dto.birthday}" name="birthday" class="layui-input" value="" maxlength="20">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-md3">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">性别</label>
|
|
<div class="layui-input-block">
|
|
<input type="text" id="sex" readonly th:value="${dto.sex}" name="birthday" class="layui-input" value="" maxlength="20">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="test-table-reload-btn" style="margin-bottom: 10px;">
|
|
<div class="layui-inline layui-form search-item" id="activationSelectTemplateBox" lay-filter="activationSelectTemplateBox"></div>
|
|
<div class="layui-inline layui-form search-item" id="measureSelectTemplateBox" lay-filter="measureSelectTemplateBox"></div>
|
|
<div class="layui-inline layui-form search-item" id="stabilizeStatusSelectTemplateBox" lay-filter="stabilizeStatusSelectTemplateBox"></div>
|
|
<div class="layui-inline layui-form search-item" id="stabilizeLevelSelectTemplateBox" lay-filter="stabilizeLevelSelectTemplateBox"></div>
|
|
<div class="layui-inline layui-form search-item" id="handleSelectTemplateBox" lay-filter="handleSelectTemplateBox"></div>
|
|
<button type="button" id="search" class="layui-btn layui-btn-sm">
|
|
<i class="fa fa-lg fa-search"></i> 搜索
|
|
</button>
|
|
</div>
|
|
</form>
|
|
<table class="layui-hide" id="dataTable" lay-filter="dataTable"></table>
|
|
<!-- 表头按钮组 -->
|
|
<script type="text/html" id="headerToolBar">
|
|
<div class="layui-btn-group">
|
|
<button type="button" class="layui-btn layui-btn-sm" lay-event="saveEvent">
|
|
<i class="fa fa-lg fa-plus"></i> 新增
|
|
</button>
|
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" lay-event="updateEvent">
|
|
<i class="fa fa-lg fa-edit"></i> 编辑
|
|
</button>
|
|
<button type="button" class="layui-btn layui-btn-danger layui-btn-sm" lay-event="removeEvent">
|
|
<i class="fa fa-lg fa-trash"></i> 删除
|
|
</button>
|
|
</div>
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script id="activationSelectTemplate" type="text/html">
|
|
<select id="activation" name="activation">
|
|
<option value="">请选择活跃度</option>
|
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
|
<option value="{{item.dictionaryName}}">{{item.dictionaryName}}</option>
|
|
{{# } }}
|
|
</select>
|
|
</script>
|
|
<script id="measureSelectTemplate" type="text/html">
|
|
<select id="measure" name="measure">
|
|
<option value="">请选择措施手段</option>
|
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
|
<option value="{{item.dictionaryName}}">{{item.dictionaryName}}</option>
|
|
{{# } }}
|
|
</select>
|
|
</script>
|
|
<script id="stabilizeStatusSelectTemplate" type="text/html">
|
|
<select id="stabilizeStatus" name="stabilizeStatus">
|
|
<option value="">请选择涉稳状态</option>
|
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
|
<option value="{{item.dictionaryName}}">{{item.dictionaryName}}</option>
|
|
{{# } }}
|
|
</select>
|
|
</script>
|
|
<script id="stabilizeLevelSelectTemplate" type="text/html">
|
|
<select id="stabilizeLevel" name="stabilizeLevel">
|
|
<option value="">请选择涉稳等级</option>
|
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
|
<option value="{{item.dictionaryName}}">{{item.dictionaryName}}</option>
|
|
{{# } }}
|
|
</select>
|
|
</script>
|
|
<script id="handleSelectTemplate" type="text/html">
|
|
<select id="handle" name="handle">
|
|
<option value="">请选择处理情况</option>
|
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
|
<option value="{{item.dictionaryName}}">{{item.dictionaryName}}</option>
|
|
{{# } }}
|
|
</select>
|
|
</script>
|
|
<script src="assets/layuiadmin/layui/layui.js"></script>
|
|
<script src="assets/js/vendor/viewer/viewer.min.js"></script>
|
|
<script>
|
|
layui.config({
|
|
base: 'assets/layuiadmin/'
|
|
}).extend({
|
|
index: 'lib/index'
|
|
}).use(['index', 'table', 'form', 'laytpl', 'laydate', 'common'], function() {
|
|
var $ = layui.$;
|
|
var $win = $(window);
|
|
var table = layui.table;
|
|
var laytpl = layui.laytpl;
|
|
var form = layui.form;
|
|
var admin = layui.admin;
|
|
var laydate = layui.laydate;
|
|
var common = layui.common;
|
|
var resizeTimeout = null;
|
|
var tableUrl = 'api/petition/listpage?populationInfoId=[[${dto.populationInfoId}]]&creator=[[${creator}]]';
|
|
|
|
// 初始化活跃度下拉选择
|
|
function initActivationSelect() {
|
|
top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/e4eb1efc-b61d-478a-9980-94e508019abb', []), {}, null, function(code, data, args) {
|
|
laytpl(document.getElementById('activationSelectTemplate').innerHTML).render(data, function(html) {
|
|
document.getElementById('activationSelectTemplateBox').innerHTML = html;
|
|
});
|
|
form.render('select', 'activationSelectTemplateBox');
|
|
}, function(code, data) {
|
|
top.dialog.msg(data.msg);
|
|
});
|
|
}
|
|
|
|
// 初始化措施手段下拉选择
|
|
function initMeasureSelect() {
|
|
top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/25b0379c-d101-47f4-bef3-12f34ba011fe', []), {}, null, function(code, data, args) {
|
|
laytpl(document.getElementById('measureSelectTemplate').innerHTML).render(data, function(html) {
|
|
document.getElementById('measureSelectTemplateBox').innerHTML = html;
|
|
});
|
|
form.render('select', 'measureSelectTemplateBox');
|
|
}, function(code, data) {
|
|
top.dialog.msg(data.msg);
|
|
});
|
|
}
|
|
|
|
// 初始化涉稳状态下拉选择
|
|
function initStabilizeStatusSelect() {
|
|
top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/8d4f4133-41d7-4564-97fc-55313e4d1a80', []), {}, null, function(code, data, args) {
|
|
laytpl(document.getElementById('stabilizeStatusSelectTemplate').innerHTML).render(data, function(html) {
|
|
document.getElementById('stabilizeStatusSelectTemplateBox').innerHTML = html;
|
|
});
|
|
form.render('select', 'stabilizeStatusSelectTemplateBox');
|
|
}, function(code, data) {
|
|
top.dialog.msg(data.msg);
|
|
});
|
|
}
|
|
|
|
// 初始化涉稳等级下拉选择
|
|
function initStabilizeLevelSelect() {
|
|
top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/fef0db2c-0f2a-4b2a-ba6d-a389a89f24bb', []), {}, null, function(code, data, args) {
|
|
laytpl(document.getElementById('stabilizeLevelSelectTemplate').innerHTML).render(data, function(html) {
|
|
document.getElementById('stabilizeLevelSelectTemplateBox').innerHTML = html;
|
|
});
|
|
form.render('select', 'stabilizeLevelSelectTemplateBox');
|
|
}, function(code, data) {
|
|
top.dialog.msg(data.msg);
|
|
});
|
|
}
|
|
|
|
// 初始化处理情况下拉选择
|
|
function initHandleSelect() {
|
|
top.restAjax.get(top.restAjax.path('api/datadictionary/listdictionarybyparentid/66923b65-acbb-487b-8893-bfcf26d36028', []), {}, null, function(code, data, args) {
|
|
laytpl(document.getElementById('handleSelectTemplate').innerHTML).render(data, function(html) {
|
|
document.getElementById('handleSelectTemplateBox').innerHTML = html;
|
|
});
|
|
form.render('select', 'handleSelectTemplateBox');
|
|
}, function(code, data) {
|
|
top.dialog.msg(data.msg);
|
|
});
|
|
}
|
|
|
|
initActivationSelect();
|
|
initMeasureSelect();
|
|
initStabilizeStatusSelect();
|
|
initStabilizeLevelSelect();
|
|
initHandleSelect();
|
|
|
|
// 初始化表格
|
|
function initTable() {
|
|
table.render({
|
|
elem: '#dataTable',
|
|
id: 'dataTable',
|
|
url: top.restAjax.path(tableUrl, []),
|
|
width: admin.screen() > 1 ? '100%' : '',
|
|
height: $win.height() - 90,
|
|
limit: 20,
|
|
limits: [20, 40, 60, 80, 100, 200],
|
|
toolbar: '#headerToolBar',
|
|
request: {
|
|
pageName: 'page',
|
|
limitName: 'rows'
|
|
},
|
|
cols: [
|
|
[
|
|
{type:'checkbox', fixed: 'left'},
|
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
|
{field: 'activation', width: 180, title: '活跃度', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'measure', width: 180, title: '措施手段', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'economy', width: 180, title: '经济来源', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'stabilizeStatus', width: 180, title: '涉稳状态', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'stabilizeLevel', width: 180, title: '涉稳等级', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'type', width: 180, title: '上访类型', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'reason', width: 180, title: '上访原因', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'puttime', width: 180, title: '采集时间', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'onduty', width: 180, title: '在位情况', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'handle', width: 180, title: '处理情况', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
}
|
|
]
|
|
],
|
|
page: true,
|
|
parseData: function(data) {
|
|
return {
|
|
'code': 0,
|
|
'msg': '',
|
|
'count': data.total,
|
|
'data': data.rows
|
|
};
|
|
}
|
|
});
|
|
}
|
|
// 重载表格
|
|
function reloadTable(currentPage) {
|
|
table.reload('dataTable', {
|
|
url: top.restAjax.path(tableUrl, []),
|
|
where: {
|
|
activation: $('#activation').val(),
|
|
measure: $('#measure').val(),
|
|
stabilizeStatus: $('#stabilizeStatus').val(),
|
|
stabilizeLevel: $('#stabilizeLevel').val(),
|
|
handle: $('#handle').val()
|
|
},
|
|
page: {
|
|
curr: currentPage
|
|
},
|
|
height: $win.height() - 90,
|
|
});
|
|
}
|
|
// 初始化日期
|
|
function initDate() {
|
|
// 日期选择
|
|
laydate.render({
|
|
elem: '#startTime',
|
|
format: 'yyyy-MM-dd'
|
|
});
|
|
laydate.render({
|
|
elem: '#endTime',
|
|
format: 'yyyy-MM-dd'
|
|
});
|
|
}
|
|
// 删除
|
|
function removeData(ids) {
|
|
top.dialog.msg(top.dataMessage.delete, {
|
|
time: 0,
|
|
btn: [top.dataMessage.button.yes, top.dataMessage.button.no],
|
|
shade: 0.3,
|
|
yes: function (index) {
|
|
top.dialog.close(index);
|
|
var layIndex;
|
|
top.restAjax.delete(top.restAjax.path('api/petition/remove/{ids}', [ids]), {}, null, function (code, data) {
|
|
top.dialog.msg(top.dataMessage.deleteSuccess, {time: 1000});
|
|
reloadTable();
|
|
}, function (code, data) {
|
|
top.dialog.msg(data.msg);
|
|
}, function () {
|
|
layIndex = top.dialog.msg(top.dataMessage.deleting, {icon: 16, time: 0, shade: 0.3});
|
|
}, function () {
|
|
top.dialog.close(layIndex);
|
|
});
|
|
}
|
|
});
|
|
}
|
|
initTable();
|
|
initDate();
|
|
// 事件 - 页面变化
|
|
$win.on('resize', function() {
|
|
clearTimeout(resizeTimeout);
|
|
resizeTimeout = setTimeout(function() {
|
|
reloadTable();
|
|
}, 500);
|
|
});
|
|
// 事件 - 搜索
|
|
$(document).on('click', '#search', function() {
|
|
reloadTable(1);
|
|
});
|
|
// 事件 - 增删改
|
|
table.on('toolbar(dataTable)', function(obj) {
|
|
var layEvent = obj.event;
|
|
var checkStatus = table.checkStatus('dataTable');
|
|
var checkDatas = checkStatus.data;
|
|
if(layEvent === 'saveEvent') {
|
|
layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 0,
|
|
area: ['100%', '100%'],
|
|
shadeClose: true,
|
|
anim: 2,
|
|
content: top.restAjax.path('route/petition/save?populationInfoId=[[${dto.populationInfoId}]]', []),
|
|
end: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
} else if(layEvent === 'updateEvent') {
|
|
if(checkDatas.length === 0) {
|
|
top.dialog.msg(top.dataMessage.table.selectEdit);
|
|
} else if(checkDatas.length > 1) {
|
|
top.dialog.msg(top.dataMessage.table.selectOneEdit);
|
|
} else {
|
|
layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 0,
|
|
area: ['100%', '100%'],
|
|
shadeClose: true,
|
|
anim: 2,
|
|
content: top.restAjax.path('route/petition/update?petitionId={petitionId}', [checkDatas[0].petitionId]),
|
|
end: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
}
|
|
} else if(layEvent === 'removeEvent') {
|
|
if(checkDatas.length === 0) {
|
|
top.dialog.msg(top.dataMessage.table.selectDelete);
|
|
} else {
|
|
var ids = '';
|
|
for(var i = 0, item; item = checkDatas[i++];) {
|
|
if(i > 1) {
|
|
ids += '_';
|
|
}
|
|
ids += item['petitionId'];
|
|
}
|
|
removeData(ids);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |