parent
b5eb3377ce
commit
991bb95fec
@ -1,10 +1,139 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<th:block th:include="include :: header('新增定密事项')" />
|
||||
<th:block th:include="include :: datetimepicker-css" />
|
||||
<th:block th:include="include :: jasny-bootstrap-css" />
|
||||
</head>
|
||||
<body>
|
||||
<body class="white-bg">
|
||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
|
||||
<form class="form-horizontal m" id="form-meeting-add">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label is-required">定密依据:</label>
|
||||
<div class="col-sm-10">
|
||||
<input name="basis" required placeholder="请输入定密依据" class="form-control m-b" type="text">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">定密责任人:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control m-b" required placeholder="请输入定密责任人" name="responsible"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label">知悉范围:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" required class="form-control m-b" placeholder="请输入知悉范围" name="scope"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">密级:</label>
|
||||
<div class="col-sm-8">
|
||||
<select name="secretDegree" required class="form-control m-b" th:with="type=${@dict.getType('sys_file_miji')}">
|
||||
<option value="">---请选择---</option>
|
||||
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">保密期限:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" required class="form-control m-b" placeholder="请输入保密期限" name="term"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">上传文件:</label>
|
||||
<div class="fileinput fileinput-new col-sm-10" data-provides="fileinput">
|
||||
<span class="btn btn-white btn-file">
|
||||
<span class="fileinput-new">选择文件</span>
|
||||
<span class="fileinput-exists">更改</span>
|
||||
<input type="file" id="fileUrlId" name="..." >
|
||||
<input type="hidden" id="fileUrl" name="fileUrl">
|
||||
<input type="hidden" id="fileName" name="fileName">
|
||||
</span>
|
||||
<span class="fileinput-filename"></span>
|
||||
<a href="#" class="close fileinput-exists" data-dismiss="fileinput" style="float: none">×</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">保密要点:</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea name="keyPoint" required placeholder="请输入保密要点" class="form-control"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<th:block th:include="include :: datetimepicker-js" />
|
||||
<th:block th:include="include :: jasny-bootstrap-js" />
|
||||
<script th:inline="javascript">
|
||||
var prefix = ctx + "system/secreting"
|
||||
$("#form-meeting-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/add", $('#form-meeting-add').serialize());
|
||||
}
|
||||
}
|
||||
$("input[name='meetingTime']").datetimepicker({
|
||||
format: "yyyy-mm-dd",
|
||||
minView: "month",
|
||||
autoclose: true
|
||||
});
|
||||
//文件上传
|
||||
$('#fileUrlId').on('change.bs.fileinput ', function (e) {
|
||||
// 处理自己的业务
|
||||
var file = e.target.files[0];
|
||||
var data = new FormData();
|
||||
data.append("file", file);
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: ctx + "common/upload",
|
||||
data: data,
|
||||
cache: false,
|
||||
contentType: false,
|
||||
processData: false,
|
||||
dataType: 'json',
|
||||
success: function(result) {
|
||||
if (result.code == web_status.SUCCESS) {
|
||||
$("#fileUrl").val(result.url);
|
||||
$("#fileName").val(result.originalFilename);
|
||||
} else {
|
||||
$("#fileUrl").val("");
|
||||
$("#fileName").val("");
|
||||
}
|
||||
},
|
||||
error: function(error) {
|
||||
$.modal.alertWarning("文件上传失败。");
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -1,10 +1,107 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<th:block th:include="include :: header('新增涉密会议')" />
|
||||
<th:block th:include="include :: datetimepicker-css" />
|
||||
<th:block th:include="include :: jasny-bootstrap-css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<body class="white-bg">
|
||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
|
||||
<form class="form-horizontal m" id="form-meeting-add" th:object="${tdSecreting}">
|
||||
<input name="userId" type="hidden" th:field="*{id}" />
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label is-required">定密依据:</label>
|
||||
<div class="col-sm-10">
|
||||
<input name="basis" disabled required placeholder="请输入定密依据" th:field="*{basis}" class="form-control m-b" type="text">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">定密责任人:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" disabled class="form-control m-b" required placeholder="请输入定密责任人" th:field="*{responsible}" name="responsible"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label">知悉范围:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" disabled class="form-control m-b" placeholder="请输入知悉范围" th:field="*{scope}" name="scope"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">密级:</label>
|
||||
<div class="col-sm-8">
|
||||
<select disabled name="secretDegree" required class="form-control m-b" th:with="type=${@dict.getType('sys_file_miji')}">
|
||||
<option value="">---请选择---</option>
|
||||
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{secretDegree}"></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">保密期限:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" disabled required class="form-control m-b" th:field="*{term}" placeholder="请输入保密期限" name="term"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">上传文件:</label>
|
||||
<div class="col-sm-8">
|
||||
<span class="btn btn-white btn-file">
|
||||
<span class="fileinput-filename" onclick="downloadFile()">文件下载</span>
|
||||
<input type="hidden" id="fileUrl" name="confAgreement" th:field="*{fileUrl}" >
|
||||
</span>
|
||||
<span class="fileinput-filename">[[*{fileName}]]</span>
|
||||
<a href="#" class="close fileinput-exists" data-dismiss="fileinput" style="float: none"> </a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">保密要点:</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea name="keyPoint" disabled required placeholder="请输入保密要点" th:field="*{keyPoint}" class="form-control"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<th:block th:include="include :: datetimepicker-js" />
|
||||
<th:block th:include="include :: jasny-bootstrap-js" />
|
||||
<script th:inline="javascript">
|
||||
var prefix = ctx + "system/secreting"
|
||||
$("#form-meeting-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/edit", $('#form-meeting-add').serialize());
|
||||
}
|
||||
}
|
||||
function downloadFile(){
|
||||
var fileUrl = $("#fileUrl").val();
|
||||
window.location.href = ctx + "common/download/resource?resource=" + encodeURI(fileUrl) ;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -1,10 +1,135 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<th:block th:include="include :: header('新增涉密会议')" />
|
||||
<th:block th:include="include :: datetimepicker-css" />
|
||||
<th:block th:include="include :: jasny-bootstrap-css" />
|
||||
</head>
|
||||
<body>
|
||||
<body class="white-bg">
|
||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
|
||||
<form class="form-horizontal m" id="form-meeting-add" th:object="${tdSecreting}">
|
||||
<input name="userId" type="hidden" th:field="*{id}" />
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label is-required">定密依据:</label>
|
||||
<div class="col-sm-10">
|
||||
<input name="basis" maxlength="50" required placeholder="请输入定密依据" th:field="*{basis}" class="form-control m-b" type="text">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">定密责任人:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control m-b" required placeholder="请输入定密责任人" th:field="*{responsible}" name="responsible"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label">知悉范围:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control m-b" placeholder="请输入知悉范围" th:field="*{scope}" name="scope"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">密级:</label>
|
||||
<div class="col-sm-8">
|
||||
<select name="secretDegree" required class="form-control m-b" th:with="type=${@dict.getType('sys_file_miji')}">
|
||||
<option value="">---请选择---</option>
|
||||
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{secretDegree}"></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label is-required">保密期限:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" required class="form-control m-b" th:field="*{term}" placeholder="请输入保密期限" name="term"></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">上传文件:</label>
|
||||
<div class="fileinput fileinput-new col-sm-10" data-provides="fileinput">
|
||||
<span class="btn btn-white btn-file">
|
||||
<span class="fileinput-new">选择文件</span>
|
||||
<span class="fileinput-exists">更改</span>
|
||||
<input type="file" id="fileUrlId" name="...">
|
||||
<input type="hidden" id="fileUrl" name="fileUrl" th:field="*{fileUrl}">
|
||||
<input type="hidden" id="fileName" name="fileName" th:field="*{fileName}">
|
||||
</span>
|
||||
<span class="fileinput-filename">[[*{fileName}]]</span>
|
||||
<a href="#" class="close fileinput-exists" data-dismiss="fileinput" style="float: none">×</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">保密要点:</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea name="keyPoint" required placeholder="请输入保密要点" th:field="*{keyPoint}" class="form-control"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<th:block th:include="include :: datetimepicker-js" />
|
||||
<th:block th:include="include :: jasny-bootstrap-js" />
|
||||
<script th:inline="javascript">
|
||||
var prefix = ctx + "system/secreting"
|
||||
$("#form-meeting-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/edit", $('#form-meeting-add').serialize());
|
||||
}
|
||||
}
|
||||
//文件上传
|
||||
$('#fileUrlId').on('change.bs.fileinput ', function (e) {
|
||||
// 处理自己的业务
|
||||
var file = e.target.files[0];
|
||||
var data = new FormData();
|
||||
data.append("file", file);
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: ctx + "common/upload",
|
||||
data: data,
|
||||
cache: false,
|
||||
contentType: false,
|
||||
processData: false,
|
||||
dataType: 'json',
|
||||
success: function(result) {
|
||||
if (result.code == web_status.SUCCESS) {
|
||||
$("#fileUrl").val(result.url);
|
||||
$("#fileName").val(result.originalFilename);
|
||||
} else {
|
||||
$("#fileUrl").val("");
|
||||
$("#fileName").val("");
|
||||
}
|
||||
},
|
||||
error: function(error) {
|
||||
$.modal.alertWarning("文件上传失败。");
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -1,10 +1,117 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<th:block th:include="include :: header('涉密会议登记')" />
|
||||
</head>
|
||||
<body>
|
||||
1
|
||||
<body class="gray-bg">
|
||||
<div class="container-div" id="app">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 search-collapse">
|
||||
<form id="formId">
|
||||
<div class="select-list">
|
||||
<ul>
|
||||
<li>
|
||||
<label style="width: 81px">定密责任人:</label>
|
||||
<input type="text" name="responsible"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>密级:</label>
|
||||
<select name="secretDegree" th:with="type=${@dict.getType('sys_file_miji')}">
|
||||
<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> 搜索</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="system:tdmeeting:add">
|
||||
<i class="fa fa-plus"></i> 记录
|
||||
</a>
|
||||
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:tdmeeting:edit">
|
||||
<i class="fa fa-edit"></i> 修改
|
||||
</a>
|
||||
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:tdmeeting:remove">
|
||||
<i class="fa fa-remove"></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 detailFlag = [[${@permission.hasPermi('system:secreting:detail')}]];
|
||||
var editFlag = [[${@permission.hasPermi('system:secreting:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('system:secreting:remove')}]];
|
||||
var mijiState = [[${@dict.getType('sys_file_miji')}]];
|
||||
var meetingType = [[${@dict.getType('sys_meeting_type')}]];
|
||||
var prefix = ctx + "system/secreting";
|
||||
$(function() {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
createUrl: prefix + "/add",
|
||||
updateUrl: prefix + "/edit/{id}",
|
||||
detailUrl: prefix + "/detail/{id}",
|
||||
removeUrl: prefix + "/remove",
|
||||
exportUrl: prefix + "/export",
|
||||
modalName: "定密事项管理",
|
||||
columns: [{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'id',
|
||||
title: 'ID',
|
||||
visible: false
|
||||
},
|
||||
{
|
||||
field: 'basis',
|
||||
title: '定密依据',
|
||||
},
|
||||
{
|
||||
field: 'responsible',
|
||||
title: '定密责任人',
|
||||
},
|
||||
{
|
||||
field: 'scope',
|
||||
title: '知悉范围',
|
||||
},
|
||||
{
|
||||
field: 'secretDegree',
|
||||
title: '密级',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(mijiState, value);
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'term',
|
||||
title: '保密期限',
|
||||
},
|
||||
{
|
||||
field: 'keyPoint',
|
||||
title: '保密要点',
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.id + '\')"><i class="fa fa-search"></i>详细</a> ');
|
||||
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>');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue