520 lines
25 KiB
HTML
520 lines
25 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<base href="/twoduty/">
|
|
<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">
|
|
</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">
|
|
<div class="test-table-reload-btn" style="margin-bottom: 10px;">
|
|
<div class="layui-inline">
|
|
<input type="text" id="keywords" class="layui-input search-item" placeholder="输入关键字">
|
|
</div>
|
|
<div class="layui-inline">
|
|
<input type="text" id="startTime" class="layui-input search-item" placeholder="开始时间" readonly>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<input type="text" id="endTime" class="layui-input search-item" placeholder="结束时间" readonly>
|
|
</div>
|
|
<div class="layui-inline layui-form search-item" id="clueTypeTemplateBox" lay-filter="clueTypeTemplateBox"></div>
|
|
<script id="clueTypeTemplate" type="text/html">
|
|
<select name="clueType" id="clueType">
|
|
<option value="">上报类型</option>
|
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
|
<option value="{{item.dataId}}">{{item.dataName}}</option>
|
|
{{# } }}
|
|
</select>
|
|
</script>
|
|
<div class="layui-inline layui-form search-item">
|
|
<select name="clueSource" id="clueSource">
|
|
<option value="">线索来源</option>
|
|
<option value="1">本级受理</option>
|
|
<option value="2">上级交办</option>
|
|
</select>
|
|
</div>
|
|
<div class="layui-inline layui-form search-item">
|
|
<select name="needResult" id="needResult">
|
|
<option value="">是否要结果</option>
|
|
<option value="0">否</option>
|
|
<option value="1">是</option>
|
|
</select>
|
|
</div>
|
|
<button type="button" id="search" class="layui-btn layui-btn-sm">
|
|
<i class="fa fa-lg fa-search"></i> 搜索
|
|
</button>
|
|
</div>
|
|
<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 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', 'laydate', 'common','laytpl','form'], function() {
|
|
var $ = layui.$;
|
|
var $win = $(window);
|
|
var table = layui.table;
|
|
var admin = layui.admin;
|
|
var laytpl = layui.laytpl;
|
|
var form = layui.form;
|
|
var laydate = layui.laydate;
|
|
var common = layui.common;
|
|
var resizeTimeout = null;
|
|
var tableUrl = 'api/problemclue/listpage';
|
|
|
|
// 初始化表格
|
|
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: [
|
|
[
|
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
|
{field: 'dutyTitle', width: 180, title: '上报标题', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},{field: 'caseNumber', width: 180, title: '案件号', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'handoverNumber', width: 180, title: '交办文号', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'beReportedPerson', width: 180, title: '被反映人', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'reportPerson', width: 180, title: '反映人', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'orgJob', width: 180, title: '单位职务', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'mainClueContent', width: 180, title: '主要线索内容', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'acceptDateTime', width: 180, title: '交办或受理日期', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'clueSource', width: 180, title: '线索来源', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
if(rowData == '1'){
|
|
return '本级受理'
|
|
}
|
|
if(rowData == '2'){
|
|
return '上级交办'
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'needResult', width: 180, title: '是否要结果', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
if(rowData == '0'){
|
|
return '否'
|
|
}
|
|
if(rowData == '1'){
|
|
return '是'
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'limitResultTime', width: 180, title: '要结果时限', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'verifyProblem', width: 180, title: '查实主要问题', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'progress', width: 180, title: '办理进度', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'mayResultOpinion', width: 180, title: '拟处理意见', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'overStatus', width: 180, title: '是否办结', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'caseResult', width: 180, title: '处理结果', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'creatorName', width: 100, title: '上报人', align:'center',fixed: 'right',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'gmtCreate', width: 200, title: '上报时间', align:'center',fixed: 'right',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'indexAuditStatus', width: 100, title: '状态', align:'center',fixed: 'right',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(0 == rowData){
|
|
return '未审核';
|
|
}
|
|
if(1 == rowData){
|
|
return '审核通过';
|
|
}
|
|
if(2 == rowData){
|
|
return '以归档';
|
|
}
|
|
if(-1 == rowData){
|
|
return '审核不通过';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{width:180, title: '操作', fixed: 'right', align:'center',
|
|
templet: function(row){
|
|
var indexAuditStatus = row['indexAuditStatus'];
|
|
var rowData = '<div class="layui-btn-group">';
|
|
rowData +='<button type="button" class="layui-btn layui-btn-xs" lay-event="printEvent">详情</button>';
|
|
if (indexAuditStatus == -1) {
|
|
rowData +='<button type="button" class="layui-btn layui-btn-warm layui-btn-xs" lay-event="updateEvent">编辑上报</button>';
|
|
}
|
|
rowData +='<button type="button" class="layui-btn layui-btn-normal layui-btn-xs" lay-event="log">日志</button>';
|
|
rowData +='</div>';
|
|
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: {
|
|
keywords: $('#keywords').val(),
|
|
startTime: $('#startTime').val(),
|
|
endTime: $('#endTime').val(),
|
|
clueType: $('#clueType').val(),
|
|
|
|
clueSource: $('#clueSource').val(),
|
|
needResult: $('#needResult').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/problemclue/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();
|
|
|
|
initNationTemplate();
|
|
//初始化上报类型数据字典
|
|
function initNationTemplate(){
|
|
top.restAjax.get(top.restAjax.path("api/data/listbyparentid/{dataParentId}",['55749c66-80b8-4ce8-8f88-4465848c15ca']),{},null,function (code,data,args) {
|
|
laytpl(document.getElementById('clueTypeTemplate').innerHTML).render(data, function(html) {
|
|
document.getElementById('clueTypeTemplateBox').innerHTML = html;
|
|
});
|
|
form.render('select', 'clueTypeTemplateBox');
|
|
});
|
|
}
|
|
// 事件 - 页面变化
|
|
$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/problemclue/save.html?indexLibId={indexLibId}', ['b49840b0-ce91-4ae6-bae5-87507b423876']),
|
|
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/problemclue/update.html?reportId={reportId}', [checkDatas[0].reportId]),
|
|
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['reportId'];
|
|
}
|
|
removeData(ids);
|
|
}
|
|
}
|
|
});
|
|
|
|
table.on('tool(dataTable)', function(obj) {
|
|
var layEvent = obj.event;
|
|
if(layEvent === 'showEvent'){
|
|
layer.open({
|
|
type: 2,
|
|
title: '详情',
|
|
closeBtn: 1,
|
|
area: ['80%', '80%'],
|
|
shadeClose: true,
|
|
anim: 2,
|
|
content: top.restAjax.path('route/problemclue/show.html?reportId={reportId}',
|
|
[obj.data.reportId]),
|
|
end: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
}else if(layEvent === 'log') {
|
|
layer.open({
|
|
type: 2,
|
|
title: "日志流程详情",
|
|
closeBtn: 1,
|
|
area: ['80%', '80%'],
|
|
shadeClose: true,
|
|
anim: 2,
|
|
content: top.restAjax.path('route/indexauditlog/show.html?indexAuditId={indexAuditId}', [obj.data.indexAuditId]),
|
|
end: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
}else if(layEvent === 'updateEvent') {
|
|
layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 0,
|
|
area: ['100%', '100%'],
|
|
shadeClose: true,
|
|
anim: 2,
|
|
content: top.restAjax.path('route/problemclue/update.html?reportId={reportId}', [obj.data.reportId]),
|
|
end: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
}else if(layEvent === 'printEvent') {
|
|
top.layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 0,
|
|
area: ['100%', '100%'],
|
|
shadeClose: true,
|
|
anim: 2,
|
|
content: top.restAjax.path('route/problemclue/print.html?reportId={reportId}', [obj.data.reportId]),
|
|
end: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |