pg_adapter
dshclm 6 months ago
parent 6286db120d
commit 9e9cebf019

@ -0,0 +1,177 @@
<!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" id="app">
<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="carrierName"/>
</li>
<li>
<label>密级:</label>
<select name="carrierSecret" 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>
<label>载体类型:</label>
<select name="carrierLevel" th:with="type=${@dict.getType('sys_provide_level')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label>所属市州:</label>
<select id="City" name="areaCity" v-model="City">
<option value="">请选择</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
{{ option.name }}
</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="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:destoryIssued:edit')}]];
var removeFlag = [[${@permission.hasPermi('system:destoryIssued:remove')}]];
var detailFlag = [[${@permission.hasPermi('system:destoryIssued:detail')}]];
var carrierLevelDatas = [[${@dict.getType('sys_provide_level')}]];
var fileSecretDatas = [[${@dict.getType('sys_file_miji')}]];
var carrierExtentDatas = [[${@dict.getType('sys_file_jinjichengdu')}]];
var prefix = ctx + "system/destoryIssued";
let datas = []
$.ajax({
url: ctx + "system/area/getAllList",
type: 'GET',
data:{parentId:''} ,
success:((res)=>{
datas = res.data
}) ,
});
$(function() {
var options = {
url: prefix + "/list",
updateUrl: prefix + "/edit/{id}",
modalName: "国家秘密载体维修",
columns: [
{
field: 'id',
title: 'id',
visible: false
},
{
field: 'areaCity',
title: '所属市州',
formatter: function(value, row, index) {
return getCity(datas, value)
}
},
{
field: 'carrierName',
title: '载体名称'
},
{
field: 'carrierLevel',
title: '载体类型',
formatter: function(value, row, index) {
return $.table.selectDictLabel(carrierLevelDatas, value);
}
},
{
field: 'carrierExtent',
title: '紧急程度',
formatter: function(value, row, index) {
return $.table.selectDictLabel(carrierExtentDatas, value);
}
},
{
field: 'carrierSecret',
title: '密级',
formatter: function(value, row, index) {
return $.table.selectDictLabel(fileSecretDatas, value);
}
},
{
field: 'carrierTerm',
title: '保密期限'
},
{
field: 'createTime',
title: '创建时间',
sortable: true
},
{
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="edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>销毁</a> ');
return actions.join('');
}
}]
};
$.table.init(options);
});
function edit(id) {
table.set();
if ($.common.isEmpty(id) && table.options.type == table_type.bootstrapTreeTable) {
var row = $("#" + table.options.id).bootstrapTreeTable('getSelections')[0];
if ($.common.isEmpty(row)) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
var url = table.options.updateUrl.replace("{id}", row[table.options.uniqueId]);
$.modal.open(table.options.modalName, url, 800, 500);
} else {
$.modal.open(table.options.modalName, $.operate.editUrl(id), 800, 500);
}
}
var app = new Vue({
el: '#app',
data: {
CityList: [],
City:'',
params:{
parentId:'',
}
},
mounted(){
// 初始化地市列表
this.getCityList();
},
methods:{
getCityList(){
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
}) ,
});
},
}
})
</script>
</body>
</html>

@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('新增载体制作')" />
<th:block th:include="include :: select2-css" />
<th:block th:include="include :: bootstrap-select-css" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
<form class="form-horizontal m" id="form-fileprovide-add" th:object="${tdCarrierIssued}">
<input name="id" th:field="*{id}" type="hidden">
<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 name="destoryDepart" th:field="*{destoryDepart}" placeholder="请输入销毁部门" required class="form-control" type="text">
</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 name="destoryUser" th:field="*{destoryUser}" placeholder="请输入销毁人员" required class="form-control" 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">
<div class="input-group date">
<input name="destoryDate" th:value="${#dates.format(tdCarrierIssued.destoryDate, 'yyyy-MM-dd')}" required class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</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 name="destoryManner" th:field="*{destoryManner}" placeholder="请输入销毁方式" required class="form-control" 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 name="destoryStand" th:field="*{destoryStand}" placeholder="请输入旁站人员" required class="form-control" type="text">
</div>
</div>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: select2-js" />
<th:block th:include="include :: bootstrap-select-js" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/destoryIssued"
$("#form-fileprovide-add").validate({
focusCleanup: true
});
$("input[name='destoryDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/edit", $('#form-fileprovide-add').serialize());
}
}
</script>
</body>
</html>

@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('新增载体制作')" />
<th:block th:include="include :: select2-css" />
<th:block th:include="include :: bootstrap-select-css" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
<form class="form-horizontal m" id="form-fileprovide-add" th:object="${tdCarrierIssued}">
<input name="id" th:field="*{id}" type="hidden">
<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 name="maintainDepart" th:field="*{maintainDepart}" placeholder="请输入维护部门" required class="form-control" type="text">
</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 name="maintainUser" th:field="*{maintainUser}" placeholder="请输入维护人员" required class="form-control" 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">
<div class="input-group date">
<input name="maintainDate" th:value="${#dates.format(tdCarrierIssued.maintainDate, 'yyyy-MM-dd')}" required class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</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 name="maintainStand" th:field="*{maintainStand}" placeholder="请输入旁站人员" required class="form-control" type="text">
</div>
</div>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: select2-js" />
<th:block th:include="include :: bootstrap-select-js" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/maintainIssued"
$("#form-fileprovide-add").validate({
focusCleanup: true
});
$("input[name='maintainDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/edit", $('#form-fileprovide-add').serialize());
}
}
</script>
</body>
</html>

@ -0,0 +1,179 @@
<!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" id="app">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<input type="hidden" name="status" th:value="5"/>
<li>
<label>载体名称:</label>
<input type="text" name="carrierName"/>
</li>
<li>
<label>密级:</label>
<select name="carrierSecret" 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>
<label>载体类型:</label>
<select name="carrierLevel" th:with="type=${@dict.getType('sys_provide_level')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label>所属市州:</label>
<select id="City" name="areaCity" v-model="City">
<option value="">请选择</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
{{ option.name }}
</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="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:maintainIssued:edit')}]];
var removeFlag = [[${@permission.hasPermi('system:maintainIssued:remove')}]];
var detailFlag = [[${@permission.hasPermi('system:maintainIssued:detail')}]];
var carrierLevelDatas = [[${@dict.getType('sys_provide_level')}]];
var fileSecretDatas = [[${@dict.getType('sys_file_miji')}]];
var carrierExtentDatas = [[${@dict.getType('sys_file_jinjichengdu')}]];
var prefix = ctx + "system/maintainIssued";
let datas = []
$.ajax({
url: ctx + "system/area/getAllList",
type: 'GET',
data:{parentId:''} ,
success:((res)=>{
datas = res.data
}) ,
});
$(function() {
var options = {
url: prefix + "/list",
updateUrl: prefix + "/edit/{id}",
modalName: "国家秘密载体维修",
columns: [
{
field: 'id',
title: 'id',
visible: false
},
{
field: 'areaCity',
title: '所属市州',
formatter: function(value, row, index) {
return getCity(datas, value)
}
},
{
field: 'carrierName',
title: '载体名称'
},
{
field: 'carrierLevel',
title: '载体类型',
formatter: function(value, row, index) {
return $.table.selectDictLabel(carrierLevelDatas, value);
}
},
{
field: 'carrierExtent',
title: '紧急程度',
formatter: function(value, row, index) {
return $.table.selectDictLabel(carrierExtentDatas, value);
}
},
{
field: 'carrierSecret',
title: '密级',
formatter: function(value, row, index) {
return $.table.selectDictLabel(fileSecretDatas, value);
}
},
{
field: 'carrierTerm',
title: '保密期限'
},
{
field: 'createTime',
title: '创建时间',
sortable: true
},
{
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="edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>维修</a> ');
return actions.join('');
}
}]
};
$.table.init(options);
});
function edit(id) {
table.set();
if ($.common.isEmpty(id) && table.options.type == table_type.bootstrapTreeTable) {
var row = $("#" + table.options.id).bootstrapTreeTable('getSelections')[0];
if ($.common.isEmpty(row)) {
$.modal.alertWarning("请至少选择一条记录");
return;
}
var url = table.options.updateUrl.replace("{id}", row[table.options.uniqueId]);
$.modal.open(table.options.modalName, url, 800, 500);
} else {
$.modal.open(table.options.modalName, $.operate.editUrl(id), 800, 500);
}
}
var app = new Vue({
el: '#app',
data: {
CityList: [],
City:'',
params:{
parentId:'',
}
},
mounted(){
// 初始化地市列表
this.getCityList();
},
methods:{
getCityList(){
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
}) ,
});
},
}
})
</script>
</body>
</html>
Loading…
Cancel
Save