cyx-ament-pc/cyx-admin/src/main/resources/templates/base/affairs/year.html

273 lines
11 KiB
HTML
Raw Normal View History

2023-08-24 09:43:00 +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">
2023-08-24 14:15:28 +08:00
<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" name="unit"/>-->
<!-- </li>-->
<li>
<label>考核内容:</label>
<input type="text" name="target"/>
</li>
<li>
<label>考核目标:</label>
2023-08-25 14:10:31 +08:00
<input type="text" name="demand"/>
2023-08-24 14:15:28 +08:00
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
2023-08-24 09:43:00 +08:00
2023-08-24 14:15:28 +08:00
<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>
2023-08-24 09:43:00 +08:00
</div>
</div>
2023-08-24 14:15:28 +08:00
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('base:affairs:edit')}]];
var removeFlag = [[${@permission.hasPermi('base:affairs:remove')}]];
var prefix = ctx + "base/affairs";
2023-08-24 09:43:00 +08:00
2023-08-24 14:15:28 +08:00
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "党务",
columns: [{
checkbox: true
},
2023-08-24 09:43:00 +08:00
{
field: 'id',
title: '自增ID',
visible: false
},
// {
// field: 'type',
// title: '作用于附件'
// },
2023-08-25 11:09:37 +08:00
// {
// field: 'unit',
// title: '单位名称'
// },
2023-08-24 09:43:00 +08:00
{
field: 'type',
title: '类型'
},
{
field: 'target',
2023-08-24 14:15:28 +08:00
title: '考核内容'
2023-08-24 09:43:00 +08:00
},
2023-08-28 17:07:11 +08:00
{
field: 'shotName',
title: '简写'
},
2023-08-24 09:43:00 +08:00
{
field: 'demand',
2023-08-24 14:15:28 +08:00
title: '考核目标',
2023-08-24 09:43:00 +08:00
width:200,
align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value);
}
},
{
2023-08-24 14:15:28 +08:00
field: 'method',
title: '标准要求',
2023-08-24 09:43:00 +08:00
width:200,
align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value);
}
},
{
2023-08-24 14:15:28 +08:00
field: 'detailed',
title: '评分办法',
2023-08-24 09:43:00 +08:00
width:200,
align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value);
}
},
2023-08-24 14:15:28 +08:00
{
field: 'score',
title: '分值'
},
{
field: 'type',
title: '考核类别'
},
{
field: 'type',
title: '督办科室'
},
2023-08-24 09:43:00 +08:00
{
2023-08-25 11:09:37 +08:00
field: 'header',
2023-08-24 09:43:00 +08:00
title: '负责人'
},
{
2023-08-25 11:09:37 +08:00
field: 'reviewer',
2023-08-24 09:43:00 +08:00
title: '审核人'
},
{
field: 'finishDate',
title: '完成截止时间'
},
{
2023-08-25 11:09:37 +08:00
field: 'oprator',
title: '操作人员'
2023-08-24 09:43:00 +08:00
},
{
2023-08-25 11:09:37 +08:00
field: 'deptName',
title: '部门'
2023-08-24 09:43:00 +08:00
},
{
2023-08-25 11:09:37 +08:00
field: 'branch',
title: '支部'
2023-08-24 09:43:00 +08:00
},
{
field: 'remark',
title: '备注'
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
2023-08-28 17:53:51 +08:00
if (row.status === '1'){
actions.push('<a data-id="'+row.id+'" data-header="'+row.header+'" data-shotname="'+row.shotName+'" data-deptname="'+row.deptName+'" class="openUpload btn btn-primary btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-upload"></i>上传附件</a> ');
}else if (row.status === '2'){
actions.push('<a class="btn btn-default btn-xs" href="javascript:void(0)">待审核</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+'" class="openUpload btn btn-primary btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-upload"></i>重新上传附件</a> ');
}else if (row.status === '4'){
actions.push('<a class="btn btn-primary btn-xs" href="javascript:void(0)">已完成</a> ');
}
if (row.files && row.status !=='3'){
actions.push('<a data-files="'+row.files+'" data-type="1" class="viewFiles0828 btn btn-primary btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-picture-o"></i>查看图片</a> ');
actions.push('<a data-files="'+row.files+'" data-type="2" class="viewFiles0828 btn btn-primary btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-download"></i>下载附件</a> ');
}
2023-08-24 09:43:00 +08:00
return actions.join('');
}
}]
2023-08-24 14:15:28 +08:00
};
$.table.init(options);
2023-08-25 16:18:59 +08:00
$("#bootstrap-table").on('click','.openUpload',function () {
let _id = $(this)[0].dataset.id;
layer.open({
title:'上传附件',
area:['80%','80%'],
type:2,
content:'/base/affairs/upload',
success(res,index){
//传值
parent.a_upload_id = _id;
2023-08-25 16:40:57 +08:00
parent.a_upload_index = index;
parent.a_upload_type = "1";
2023-08-25 16:18:59 +08:00
},
end(){
$.table.search()
}
})
2023-08-28 15:01:53 +08:00
});
$("#bootstrap-table").on('click',".openUpload",function () {
let _id = $(this)[0].dataset.id;
layer.open({
title:'上传附件',
area:['80%','80%'],
type:2,
content:'/base/affairs/upload',
success(res,index){
//传值
parent.a_upload_id = _id;
parent.a_upload_index = index;
parent.a_upload_type = "1";
},
end(){
$.table.search()
}
})
2023-08-25 16:18:59 +08:00
})
2023-08-28 15:01:53 +08:00
$("#bootstrap-table").on("click",".viewFiles0828",function () {
let _files = $(this)[0].dataset.files.split(',');
let _type = $(this)[0].dataset.type;
let _dataImg = [];
let _downData = [];
_files.forEach((item,index) => {
if(item.indexOf(".jpg")>-1 || item.indexOf(".png")>-1){
_dataImg.push({
"alt": "",
"pid": index, //图片id
"src": window.location.origin+item, //原图地址
"thumb": window.location.origin+item //缩略图地址
})
}else if(item.indexOf(".docx")> -1 || item.indexOf(".doc") > -1 || item.indexOf(".xlsx") > -1 || item.indexOf(".xls") > -1 || item.indexOf(".pdf") > -1){
_downData.push(item);
}
})
if(_type === '1'){ //查看图片
let json = {
"title": "查看图片", //相册标题
"id": 123, //相册id
"start": 0, //初始显示的图片序号默认0
"data": _dataImg
};
layer.photos({
photos: json,
closeBtn: 0, //右上角按钮可通过配置1和2来展示如果不显示则closeBtn: 0
anim: 5 //0-6的选择指定弹出图片动画类型默认随机请注意3.0之前的版本用shift参数
});
}else{ //下载附件
if(_downData.length === 0){
$.modal.msgError('暂无文件!')
return false;
}
_downData.forEach(item => {
let _lastNum = item.lastIndexOf('/')+1;
let _title = item.substr(_lastNum,item.length-1);
const a = document.createElement('a');
a.style.display = 'none';
a.download = _title;
a.href = window.location.origin+item;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
})
}
});
2023-08-24 14:15:28 +08:00
});
</script>
2023-08-24 09:43:00 +08:00
</body>
</html>