362 lines
14 KiB
HTML
362 lines
14 KiB
HTML
<!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('党务列表')" />
|
|
<th:block th:include="include :: layout-latest-css" />
|
|
<th:block th:include="include :: ztree-css" />
|
|
</head>
|
|
<body class="gray-bg">
|
|
<div class="ui-layout-west">
|
|
<div class="box box-main">
|
|
<div class="box-header">
|
|
<div class="box-title">
|
|
<i class="fa fa-sitemap"></i> 部门
|
|
</div>
|
|
<!-- <div class="box-tools pull-right">-->
|
|
<!-- <a type="button" class="btn btn-box-tool" href="#" onclick="dept()" title="管理部门"><i class="fa fa-edit"></i></a>-->
|
|
<!-- <button type="button" class="btn btn-box-tool" id="btnExpand" title="展开" style="display:none;"><i class="fa fa-chevron-up"></i></button>-->
|
|
<!-- <button type="button" class="btn btn-box-tool" id="btnCollapse" title="折叠"><i class="fa fa-chevron-down"></i></button>-->
|
|
<!-- <button type="button" class="btn btn-box-tool" id="btnRefresh" title="刷新部门"><i class="fa fa-refresh"></i></button>-->
|
|
<!-- </div>-->
|
|
</div>
|
|
<div class="ui-layout-content">
|
|
<div id="tree" class="ztree"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="ui-layout-center">
|
|
<div class="container-div">
|
|
<div class="row">
|
|
<div class="col-sm-12 search-collapse">
|
|
<form id="formId">
|
|
<div class="select-list">
|
|
<ul>
|
|
<input type="hidden" name="type" value="季度考核指标"/>
|
|
<li>
|
|
<label>简写:</label>
|
|
<input type="text" id="shotName" name="shotName"/>
|
|
</li>
|
|
<li>
|
|
<label>负责人:</label>
|
|
<select name="head" id="head"></select>
|
|
</li>
|
|
<li>
|
|
<label>审核人:</label>
|
|
<select name="reviewed" id="reviewed"></select>
|
|
</li>
|
|
<li>
|
|
<label>督办科室:</label>
|
|
<select name="deptId" id="deptId"></select>
|
|
</li>
|
|
<li>
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.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="base:affairs:add">
|
|
<i class="fa fa-plus"></i> 添加
|
|
</a>
|
|
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="base:affairs:edit">
|
|
<i class="fa fa-edit"></i> 修改
|
|
</a>
|
|
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="base:affairs:remove">
|
|
<i class="fa fa-remove"></i> 删除
|
|
</a>
|
|
<!-- <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="base:affairs:export">-->
|
|
<!-- <i class="fa fa-download"></i> 导出-->
|
|
<!-- </a>-->
|
|
</div>
|
|
<div class="col-sm-12 select-table table-striped">
|
|
<table id="bootstrap-table"></table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<th:block th:include="include :: footer" />
|
|
<th:block th:include="include :: layout-latest-js" />
|
|
<th:block th:include="include :: ztree-js" />
|
|
<script th:inline="javascript">
|
|
var editFlag = [[${@permission.hasPermi('base:affairs:edit')}]];
|
|
var removeFlag = [[${@permission.hasPermi('base:affairs:remove')}]];
|
|
var prefix = ctx + "base/affairs";
|
|
|
|
$(document).ready(function () {
|
|
$.ajax({
|
|
type: "post",
|
|
url: ctx + "base/personnel/personnelList",
|
|
data: {
|
|
},
|
|
success: function(data) {
|
|
var opt = '<option value="">请选择</option>';
|
|
data.data.forEach(d=>{
|
|
opt += '<option value="'+d.id+'">'+d.name+'</option>';
|
|
})
|
|
$("#head")[0].innerHTML=opt;
|
|
$("#reviewed")[0].innerHTML=opt;
|
|
}
|
|
});
|
|
$.ajax({
|
|
type: "post",
|
|
url: ctx + "base/personnel/deptList",
|
|
data: {
|
|
},
|
|
success: function(data) {
|
|
var opt = '<option value="">请选择</option>';
|
|
data.data.forEach(d=>{
|
|
opt += '<option value="'+d.deptId+'">'+d.deptName+'</option>';
|
|
})
|
|
$("#deptId")[0].innerHTML=opt;
|
|
}
|
|
});
|
|
})
|
|
|
|
$(function() {
|
|
var panehHidden = false;
|
|
if ($(this).width() < 769) {
|
|
panehHidden = true;
|
|
}
|
|
$('body').layout({ initClosed: panehHidden, west__size: 185 });
|
|
// 回到顶部绑定
|
|
if ($.fn.toTop !== undefined) {
|
|
var opt = {
|
|
win:$('.ui-layout-center'),
|
|
doc:$('.ui-layout-center')
|
|
};
|
|
$('#scroll-up').toTop(opt);
|
|
}
|
|
var options = {
|
|
url: prefix + "/list",
|
|
createUrl: prefix + "/add",
|
|
updateUrl: prefix + "/edit/{id}",
|
|
removeUrl: prefix + "/remove",
|
|
exportUrl: prefix + "/export",
|
|
modalName: "党务",
|
|
columns: [{
|
|
checkbox: true
|
|
},
|
|
{
|
|
field: 'id',
|
|
title: '自增ID',
|
|
visible: false
|
|
},
|
|
{
|
|
field: 'branch',
|
|
title: '支部名称'
|
|
},
|
|
{
|
|
field: 'type',
|
|
title: '类型'
|
|
},
|
|
{
|
|
field: 'target',
|
|
title: '考核内容',
|
|
width:150,
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
return $.table.tooltip(value);
|
|
}
|
|
},
|
|
{
|
|
field: 'shotName',
|
|
title: '简写',
|
|
width:100,
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
return $.table.tooltip(value);
|
|
}
|
|
},
|
|
{
|
|
field: 'demand',
|
|
title: '考核目标',
|
|
width:180,
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
return $.table.tooltip(value);
|
|
}
|
|
},
|
|
{
|
|
field: 'method',
|
|
title: '标准要求',
|
|
width:180,
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
return $.table.tooltip(value);
|
|
}
|
|
},
|
|
{
|
|
field: 'detailed',
|
|
title: '评分办法',
|
|
width:180,
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
return $.table.tooltip(value);
|
|
}
|
|
},
|
|
{
|
|
field: 'score',
|
|
title: '分值'
|
|
},
|
|
{
|
|
field: 'nowScore',
|
|
title: '当前得分'
|
|
},
|
|
{
|
|
field: 'examineType',
|
|
title: '考核类别'
|
|
},
|
|
{
|
|
field: 'deptName',
|
|
title: '督办科室'
|
|
},
|
|
{
|
|
field: 'header',
|
|
title: '负责人'
|
|
},
|
|
{
|
|
field: 'reviewer',
|
|
title: '审核人'
|
|
},
|
|
{
|
|
field: 'finishDate',
|
|
title: '完成截止时间',
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
if (row.unit === '1'){
|
|
return '周'
|
|
}else if (row.unit === '2'){
|
|
return '月'
|
|
}else if (row.unit === '3'){
|
|
return '季度'
|
|
}else {
|
|
return row.finishDate
|
|
}
|
|
}
|
|
},
|
|
{
|
|
field: 'remark',
|
|
title: '备注'
|
|
},
|
|
{
|
|
field: 'degree',
|
|
title: '',
|
|
width:50,
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
if (row.degree === '0'){
|
|
return ''
|
|
}else {
|
|
return '<font style="color: red">重点</font>'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
title: '操作',
|
|
align: 'center',
|
|
formatter: function(value, row, index) {
|
|
var actions = [];
|
|
if (row.status === '1'){
|
|
actions.push('<a data-id="'+row.id+'" data-header="'+row.header+'" data-shotname="'+row.shotName+'" data-deptname="'+row.deptName+'" data-files="'+row.files+'" class="viewFiles912 btn btn-primary btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-picture-o"></i>上传附件</a> ');
|
|
}else if (row.status === '2'){
|
|
actions.push('<a class="btn btn-default btn-xs" href="javascript:void(0)">待审核</a> ');
|
|
actions.push('<a data-id="'+row.id+'" data-header="'+row.header+'" data-shotname="'+row.shotName+'" data-deptname="'+row.deptName+'" data-files="'+row.files+'" class="viewFiles912 btn btn-primary btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-picture-o"></i>上传附件</a> ');
|
|
}else if(row.status === '3'){
|
|
actions.push('<a class="btn btn-danger btn-xs" href="javascript:void(0)">已驳回</a> ');
|
|
actions.push('<a data-id="'+row.id+'" data-header="'+row.header+'" data-shotname="'+row.shotName+'" data-deptname="'+row.deptName+'" data-files="'+row.files+'" class="viewFiles912 btn btn-primary btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-picture-o"></i>重新上传附件</a> ');
|
|
}else if (row.status === '4'){
|
|
actions.push('<a class="btn btn-primary btn-xs" href="javascript:void(0)">已完成</a> ');
|
|
}
|
|
return actions.join('');
|
|
}
|
|
}]
|
|
};
|
|
$.table.init(options);
|
|
$("#bootstrap-table").on("click",".viewFiles912",function () {
|
|
let _id = $(this)[0].dataset.id;
|
|
let header = $(this)[0].dataset.header;
|
|
let deptName = $(this)[0].dataset.deptname;
|
|
let shotName = $(this)[0].dataset.shotname;
|
|
let _files = $(this)[0].dataset.files;
|
|
layer.open({
|
|
title:'上传附件',
|
|
area:['80%','90%'],
|
|
type:2,
|
|
content:'/base/affairs/viewFiles',
|
|
success(res,index){
|
|
parent.a_upload_obj = {
|
|
id:_id,
|
|
header:header,
|
|
deptName:deptName,
|
|
shotName:shotName,
|
|
files:_files,
|
|
url:'/base/affairs/commit'
|
|
}
|
|
parent.a_upload_index = index;
|
|
},
|
|
end(){
|
|
$.table.search()
|
|
}
|
|
})
|
|
})
|
|
queryDeptTree();
|
|
});
|
|
function queryDeptTree(){
|
|
var url = ctx + "base/affairs/deptTree";
|
|
// var url = ctx + "base/affairs/deptTree";
|
|
var options = {
|
|
url: url,
|
|
data:{
|
|
type:'季度考核指标'
|
|
},
|
|
expandLevel: 2,
|
|
onClick : zOnClick
|
|
};
|
|
$.tree.init(options);
|
|
|
|
function zOnClick(event, treeId, treeNode) {
|
|
console.log(treeNode)
|
|
$("#deptId").val(treeNode.id);
|
|
$("#type").val(treeNode.type);
|
|
$("#parentId").val(treeNode.pId);
|
|
$.table.search();
|
|
}
|
|
}
|
|
|
|
$('#btnExpand').click(function() {
|
|
$._tree.expandAll(true);
|
|
$(this).hide();
|
|
$('#btnCollapse').show();
|
|
});
|
|
|
|
$('#btnCollapse').click(function() {
|
|
$._tree.expandAll(false);
|
|
$(this).hide();
|
|
$('#btnExpand').show();
|
|
});
|
|
$('#btnRefresh').click(function() {
|
|
queryDeptTree();
|
|
});
|
|
|
|
/* 用户管理-部门 */
|
|
function dept() {
|
|
var url = ctx + "base/dept";
|
|
$.modal.openTab("部门管理", url);
|
|
}
|
|
|
|
/* 自定义重置-表单重置/隐藏框/树节点选择色/搜索 */
|
|
function resetPre() {
|
|
resetDate();
|
|
$("#formId")[0].reset();
|
|
$("#deptId").val("");
|
|
$("#parentId").val("");
|
|
$(".curSelectedNode").removeClass("curSelectedNode");
|
|
$.table.search();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |