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

220 lines
9.3 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">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
2023-08-24 14:15:28 +08:00
<input type="hidden" name="type" value="党风廉政建设"/>
<!-- <li>-->
<!-- <label>单位名称:</label>-->
<!-- <input type="text" name="unit"/>-->
<!-- </li>-->
2023-08-24 09:43:00 +08:00
<li>
<label>责任类别:</label>
<input type="text" name="target"/>
</li>
2023-08-24 14:15:28 +08:00
<!-- <li>-->
<!-- <label>考核方式:</label>-->
<!-- <input type="text" name="method"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>负责人:</label>-->
<!-- <input type="text" name="head"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>审核人:</label>-->
<!-- <input type="text" name="reviewed"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>完成截止时间:</label>-->
<!-- <input type="text" class="time-input" placeholder="请选择完成截止时间" name="finishDate"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>操作人员ID</label>-->
<!-- <input type="text" name="perId"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>部门ID</label>-->
<!-- <input type="text" name="deptId"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>支部ID</label>-->
<!-- <input type="text" name="branchId"/>-->
<!-- </li>-->
2023-08-24 09:43:00 +08:00
<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>
<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>
<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";
$(function() {
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: '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-28 17:07:11 +08:00
title: '责任类别',
width:200,
align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value);
}
},
{
field: 'shotName',
title: '简写'
2023-08-24 09:43:00 +08:00
},
{
field: 'demand',
title: '目标要求',
width:200,
align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value);
}
},
{
field: 'detailed',
title: '指标明细',
width:200,
align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value);
}
},
{
field: 'score',
title: '总分值'
},
{
field: 'method',
title: '考核要求',
width:200,
align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value);
}
},
{
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-25 16:18:59 +08:00
actions.push('<a data-id="'+row.id+'" class="openUpload btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)"><i class="fa fa-edit"></i>上传附件</a> ');
2023-08-28 17:07:11 +08:00
actions.push('<a class="btn btn-default btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>查看详情</a> ');
2023-08-25 11:09:37 +08:00
// 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> ');
// 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>');
2023-08-24 09:43:00 +08:00
return actions.join('');
}
}]
};
$.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-24 09:43:00 +08:00
});
</script>
</body>
</html>