pg_adapter
parent
ad496f468f
commit
e55a9ef800
@ -0,0 +1,51 @@
|
||||
<!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-carrierlssued-add" th:object="${tdCarrierIssued}">
|
||||
<input name="id" th:field="*{id}" type="hidden">
|
||||
<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="saveLocation" th:field="*{saveLocation}" placeholder="请输入保存地点" required class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<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">
|
||||
<textarea name="locationRequire" rows="4" th:field="*{locationRequire}" placeholder="请输入地点要求" required class="form-control" type="text"></textarea>
|
||||
</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/saveIssued"
|
||||
$("#form-carrierlssued-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/edit", $('#form-carrierlssued-add').serialize());
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,193 @@
|
||||
<!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('国家秘密载体保存')" />
|
||||
<th:block th:include="include :: datetimepicker-css" />
|
||||
</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> 搜索</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="col-sm-12 select-table table-striped">
|
||||
<table id="bootstrap-table"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<th:block th:include="include :: datetimepicker-js" />
|
||||
<script th:inline="javascript">
|
||||
var editFlag = [[${@permission.hasPermi('system:saveIssued:edit')}]];
|
||||
var carrierLevelDatas = [[${@dict.getType('sys_provide_level')}]];
|
||||
var fileSecretDatas = [[${@dict.getType('sys_file_miji')}]];
|
||||
var carrierExtentDatas = [[${@dict.getType('sys_file_jinjichengdu')}]];
|
||||
var stateDatas = [[${@dict.getType('carrier_issued_status')}]];
|
||||
var prefix = ctx + "system/saveIssued";
|
||||
let datas = []
|
||||
$.ajax({
|
||||
url: ctx + "system/area/getAllList",
|
||||
type: 'GET',
|
||||
data:{parentId:''} ,
|
||||
success:((res)=>{
|
||||
datas = res.data
|
||||
}) ,
|
||||
});
|
||||
$(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: '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
|
||||
},
|
||||
{
|
||||
field: 'status',
|
||||
title: '状态',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(stateDatas, 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="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…
Reference in new issue