载体字段名称修改

pg_adapter
20918 8 months ago
parent c6792a34d1
commit 1467ecd3bd

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head> <head>
<th:block th:include="include :: header('修改涉密文件接收')" /> <th:block th:include="include :: header('涉密载体销毁详情')" />
<th:block th:include="include :: datetimepicker-css" /> <th:block th:include="include :: datetimepicker-css" />
</head> </head>
<body class="white-bg"> <body class="white-bg">
@ -39,7 +39,7 @@
<div class="row"> <div class="row">
<div class="col-sm-6"> <div class="col-sm-6">
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">文件标题</label> <label class="col-sm-3 control-label">载体名称</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text"> <input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text">
</div> </div>
@ -47,7 +47,7 @@
</div> </div>
<div class="col-sm-6"> <div class="col-sm-6">
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">号:</label> <label class="col-sm-3 control-label">号:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="fileNum" readonly th:field="*{fileNum}" class="form-control" type="text"> <input name="fileNum" readonly th:field="*{fileNum}" class="form-control" type="text">
</div> </div>
@ -58,7 +58,7 @@
<div class="row"> <div class="row">
<div class="col-sm-6"> <div class="col-sm-6">
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">密级:</label> <label class="col-sm-3 control-label">载体密级:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<select name="fileSecret" disabled class="form-control m-b" th:with="type=${@dict.getType('sys_file_miji')}"> <select name="fileSecret" disabled class="form-control m-b" th:with="type=${@dict.getType('sys_file_miji')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{fileSecret}"></option> <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{fileSecret}"></option>
@ -113,7 +113,7 @@
$(function() { $(function() {
var options = { var options = {
url: prefix + "/list", url: prefix + "/list",
modalName: "涉密文件接收", modalName: "涉密载体详情",
pagination:false, pagination:false,
showSearch: false, showSearch: false,
showPageGo: false, showPageGo: false,
@ -123,7 +123,7 @@
columns: [ columns: [
{ {
field: 'fileId', field: 'fileId',
title: '文件编号', title: '载体编码',
}, },
{ {
field: 'destoryDepart', field: 'destoryDepart',
@ -131,7 +131,7 @@
}, },
{ {
field: 'destoryCount', field: 'destoryCount',
title: '销毁数' title: '销毁数'
}, },
{ {
field: 'destoryUsername', field: 'destoryUsername',

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head> <head>
<th:block th:include="include :: header('修改涉密文件接收')" /> <th:block th:include="include :: header('修改涉密载体销毁')" />
<th:block th:include="include :: datetimepicker-css" /> <th:block th:include="include :: datetimepicker-css" />
</head> </head>
<body class="white-bg"> <body class="white-bg">
@ -13,7 +13,7 @@
<input name="destoryUsername" th:value="${user.userName}" type="hidden"> <input name="destoryUsername" th:value="${user.userName}" type="hidden">
<input name="destoryDate" type="hidden"> <input name="destoryDate" type="hidden">
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">文件标题</label> <label class="col-sm-3 control-label">载体名称</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="fileName" disabled th:field="*{fileName}" class="form-control" type="text"> <input name="fileName" disabled th:field="*{fileName}" class="form-control" type="text">
</div> </div>
@ -25,7 +25,7 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">文件密级:</label> <label class="col-sm-3 control-label">载体密级:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<div class="radio-box" th:each="dict : ${@dict.getType('sys_file_miji')}"> <div class="radio-box" th:each="dict : ${@dict.getType('sys_file_miji')}">
<input type="radio" disabled th:id="${dict.dictCode}" name="fileSecret" th:value="${dict.dictValue}" th:field="${tdFileProvide.fileSecret}"> <input type="radio" disabled th:id="${dict.dictCode}" name="fileSecret" th:value="${dict.dictValue}" th:field="${tdFileProvide.fileSecret}">
@ -34,7 +34,7 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">号:</label> <label class="col-sm-3 control-label">号:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="provideDepart" readonly th:value="${tdFileProvide.fileNum}" class="form-control" type="text"> <input name="provideDepart" readonly th:value="${tdFileProvide.fileNum}" class="form-control" type="text">
</div> </div>

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head> <head>
<th:block th:include="include :: header('涉密文件接收列表')" /> <th:block th:include="include :: header('涉密载体接收列表')" />
</head> </head>
<body class="gray-bg"> <body class="gray-bg">
<div class="container-div"> <div class="container-div">
@ -12,11 +12,11 @@
<ul> <ul>
<li> <li>
<label>文件名称:</label> <label>载体名称:</label>
<input type="text" name="fileName"/> <input type="text" name="fileName"/>
</li> </li>
<li> <li>
<label>单位:</label> <label>发单位:</label>
<input type="text" name="provideDepart"/> <input type="text" name="provideDepart"/>
</li> </li>
<li> <li>
@ -61,7 +61,7 @@
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
detailUrl:prefix + "/detail/{id}", detailUrl:prefix + "/detail/{id}",
exportUrl: prefix + "/export", exportUrl: prefix + "/export",
modalName: "涉密文件接收", modalName: "涉密载体销毁",
columns: [ columns: [
{ {
field: 'receiveId', field: 'receiveId',
@ -70,11 +70,11 @@
}, },
{ {
field: 'fileName', field: 'fileName',
title: '文件名称' title: '载体名称'
}, },
{ {
field: 'provideDepart', field: 'provideDepart',
title: '发单位' title: '发单位'
}, },
{ {
field: 'extractDepartid', field: 'extractDepartid',

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head> <head>
<th:block th:include="include :: header('涉密文件提取')" /> <th:block th:include="include :: header('涉密载体提取')" />
<th:block th:include="include :: datetimepicker-css" /> <th:block th:include="include :: datetimepicker-css" />
</head> </head>
<body class="white-bg"> <body class="white-bg">
@ -10,25 +10,25 @@
<input name="receiveId" th:field="*{receiveId}" type="hidden"> <input name="receiveId" th:field="*{receiveId}" type="hidden">
<input name="extractState" th:value="'1'" class="form-control" type="hidden"> <input name="extractState" th:value="'1'" class="form-control" type="hidden">
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">文件编号</label> <label class="col-sm-3 control-label">载体编码</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="fileId" readonly th:field="*{fileId}" class="form-control" type="text"> <input name="fileId" readonly th:field="*{fileId}" class="form-control" type="text">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">文件名称:</label> <label class="col-sm-3 control-label">载体名称:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text"> <input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">单位:</label> <label class="col-sm-3 control-label">发单位:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="provideDepart" readonly th:field="*{provideDepart}" class="form-control" type="text"> <input name="provideDepart" readonly th:field="*{provideDepart}" class="form-control" type="text">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">日期:</label> <label class="col-sm-3 control-label">发日期:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="provideDate" readonly th:value="${#dates.format(tdFileReceive.provideDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text"> <input name="provideDate" readonly th:value="${#dates.format(tdFileReceive.provideDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
</div> </div>

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head> <head>
<th:block th:include="include :: header('涉密文件提取列表')" /> <th:block th:include="include :: header('涉密载体提取列表')" />
</head> </head>
<body class="gray-bg"> <body class="gray-bg">
<div class="container-div"> <div class="container-div">
@ -11,15 +11,15 @@
<div class="select-list"> <div class="select-list">
<ul> <ul>
<li> <li>
<label>文件编号</label> <label>载体编码</label>
<input type="text" name="fileId"/> <input type="text" name="fileId"/>
</li> </li>
<li> <li>
<label>文件名称:</label> <label>载体名称:</label>
<input type="text" name="fileName"/> <input type="text" name="fileName"/>
</li> </li>
<li> <li>
<label>单位:</label> <label>发单位:</label>
<input type="text" name="provideDepart"/> <input type="text" name="provideDepart"/>
</li> </li>
<li> <li>
@ -64,7 +64,7 @@
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove", removeUrl: prefix + "/remove",
exportUrl: prefix + "/export", exportUrl: prefix + "/export",
modalName: "涉密文件提取", modalName: "涉密载体提取",
columns: [ columns: [
{ {
field: 'receiveId', field: 'receiveId',
@ -73,19 +73,19 @@
}, },
{ {
field: 'fileId', field: 'fileId',
title: '文件编号' title: '载体编码'
}, },
{ {
field: 'fileName', field: 'fileName',
title: '文件名称' title: '载体名称'
}, },
{ {
field: 'provideDepart', field: 'provideDepart',
title: '发单位' title: '发单位'
}, },
{ {
field: 'provideDate', field: 'provideDate',
title: '发日期' title: '发日期'
}, },
{ {
field: 'receiveDepartid', field: 'receiveDepartid',

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head> <head>
<th:block th:include="include :: header('涉密文件接收')" /> <th:block th:include="include :: header('涉密载体接收')" />
<th:block th:include="include :: datetimepicker-css" /> <th:block th:include="include :: datetimepicker-css" />
</head> </head>
<body class="white-bg"> <body class="white-bg">
@ -10,25 +10,25 @@
<input name="receiveId" th:field="*{receiveId}" type="hidden"> <input name="receiveId" th:field="*{receiveId}" type="hidden">
<input name="receiveState" th:value="'1'" class="form-control" type="hidden"> <input name="receiveState" th:value="'1'" class="form-control" type="hidden">
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">文件编号</label> <label class="col-sm-3 control-label">载体编码</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="fileId" readonly th:field="*{fileId}" class="form-control" type="text"> <input name="fileId" readonly th:field="*{fileId}" class="form-control" type="text">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">文件名称:</label> <label class="col-sm-3 control-label">载体名称:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text"> <input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">单位:</label> <label class="col-sm-3 control-label">发单位:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="provideDepart" readonly th:field="*{provideDepart}" class="form-control" type="text"> <input name="provideDepart" readonly th:field="*{provideDepart}" class="form-control" type="text">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">日期:</label> <label class="col-sm-3 control-label">发日期:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="provideDate" readonly th:value="${#dates.format(tdFileReceive.provideDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text"> <input name="provideDate" readonly th:value="${#dates.format(tdFileReceive.provideDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
</div> </div>

@ -11,15 +11,15 @@
<div class="select-list"> <div class="select-list">
<ul> <ul>
<li> <li>
<label>文件编号</label> <label>载体编码</label>
<input type="text" name="fileId"/> <input type="text" name="fileId"/>
</li> </li>
<li> <li>
<label>文件名称:</label> <label>载体名称:</label>
<input type="text" name="fileName"/> <input type="text" name="fileName"/>
</li> </li>
<li> <li>
<label>单位:</label> <label>发单位:</label>
<input type="text" name="provideDepart"/> <input type="text" name="provideDepart"/>
</li> </li>
<li> <li>
@ -64,7 +64,7 @@
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove", removeUrl: prefix + "/remove",
exportUrl: prefix + "/export", exportUrl: prefix + "/export",
modalName: "涉密文件接收", modalName: "涉密载体接收",
columns: [ columns: [
{ {
field: 'receiveId', field: 'receiveId',
@ -73,19 +73,19 @@
}, },
{ {
field: 'fileId', field: 'fileId',
title: '文件编号' title: '载体编码'
}, },
{ {
field: 'fileName', field: 'fileName',
title: '文件名称' title: '载体名称'
}, },
{ {
field: 'provideDepart', field: 'provideDepart',
title: '发单位' title: '发单位'
}, },
{ {
field: 'provideDate', field: 'provideDate',
title: '发日期' title: '发日期'
}, },
{ {
field: 'receiveDepartid', field: 'receiveDepartid',

Loading…
Cancel
Save