You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ry_zhky/ruoyi-admin/src/main/resources/templates/system/filereceive/filereceive.html

179 lines
8.4 KiB

11 months ago
<!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>
<li>
<label>文件编号:</label>
<input type="text" name="fileId"/>
</li>
<li>
<label>接收单位:</label>
<input type="text" name="receiveDepartid"/>
</li>
<li>
<label>接收状态:</label>
<select name="receiveState" th:with="type=${@dict.getType('sys_file_receive')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label>接收人员:</label>
<input type="text" name="receiveUserid"/>
</li>
<li>
<label>接收日期:</label>
<input type="text" class="time-input" placeholder="请选择接收日期" name="receiveDate"/>
</li>
<li>
<label>提取状态:</label>
<select name="extractState" th:with="type=${@dict.getType('sys_file_extract')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label>提取单位:</label>
<input type="text" name="extractDepartid"/>
</li>
<li>
<label>提取人员:</label>
<input type="text" name="extractUserid"/>
</li>
<li>
<label>提取日期:</label>
<input type="text" class="time-input" placeholder="请选择提取日期" name="extractDate"/>
</li>
<li>
<label>销毁状态:</label>
<select name="destoryState" th:with="type=${@dict.getType('sys_destory_state')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</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>
<div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:filereceive:add">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:filereceive:edit">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:filereceive:remove">
<i class="fa fa-remove"></i> 删除
</a>
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:filereceive: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('system:filereceive:edit')}]];
var removeFlag = [[${@permission.hasPermi('system:filereceive:remove')}]];
var receiveStateDatas = [[${@dict.getType('sys_file_receive')}]];
var extractStateDatas = [[${@dict.getType('sys_file_extract')}]];
var destoryStateDatas = [[${@dict.getType('sys_destory_state')}]];
var prefix = ctx + "system/filereceive";
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "涉密文件接收",
columns: [{
checkbox: true
},
{
field: 'receiveId',
title: '接收编号',
visible: false
},
{
field: 'fileId',
title: '文件编号'
},
{
field: 'receiveDepartid',
title: '接收单位'
},
{
field: 'receiveState',
title: '接收状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(receiveStateDatas, value);
}
},
{
field: 'receiveUserid',
title: '接收人员'
},
{
field: 'receiveDate',
title: '接收日期'
},
{
field: 'extractState',
title: '提取状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(extractStateDatas, value);
}
},
{
field: 'extractDepartid',
title: '提取单位'
},
{
field: 'extractUserid',
title: '提取人员'
},
{
field: 'extractDate',
title: '提取日期'
},
{
field: 'destoryState',
title: '销毁状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(destoryStateDatas, value);
}
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.receiveId + '\')"><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.receiveId + '\')"><i class="fa fa-remove"></i>删除</a>');
return actions.join('');
}
}]
};
$.table.init(options);
});
</script>
</body>
</html>