提交修改

master
dsh 12 months ago
parent 1d0ca34108
commit 0d200af198

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('涉密人员培训详情')" />
<th:block th:include="include :: jsonview-css" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m-t" id="signupForm">
<div class="form-group">
<label class="col-sm-2 control-label">操作模块:</label>
<div class="form-control-static" th:text="${tdTrain}">
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: jsonview-js" />
<th:block th:include="include :: datetimepicker-css" />
<script th:inline="javascript">
$(function() {
var operParam = [[${operLog.operParam}]];
if ($.common.isNotEmpty(operParam) && operParam.length < 2000) {
$("#operParam").JSONView(operParam);
} else {
$("#operParam").text(operParam);
}
var jsonResult = [[${operLog.jsonResult}]];
if ($.common.isNotEmpty(jsonResult) && jsonResult.length < 2000) {
$("#jsonResult").JSONView(jsonResult);
} else {
$("#jsonResult").text(jsonResult);
}
});
</script>
</body>
</html>

@ -74,6 +74,7 @@
url: prefix + "/list", url: prefix + "/list",
createUrl: prefix + "/add", createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
detailUrl: prefix + "/detail/{id}",
removeUrl: prefix + "/remove", removeUrl: prefix + "/remove",
exportUrl: prefix + "/export", exportUrl: prefix + "/export",
modalName: "涉密人员培训", modalName: "涉密人员培训",
@ -81,7 +82,7 @@
checkbox: true checkbox: true
}, },
{ {
field: 'ID', field: 'id',
title: 'ID', title: 'ID',
visible: false visible: false
}, },
@ -158,7 +159,7 @@
}, },
{ {
field: 'updateStaffid', field: 'updateStaffid',
title: '审核人员' title: '审核人员'//
}, },
{ {
field: 'updateDate', field: 'updateDate',
@ -167,7 +168,7 @@
}, },
{ {
field: 'trainState', field: 'trainState',
title: '培训状态', title: '培训状态',//
formatter: function(value, row, index) { formatter: function(value, row, index) {
return $.table.selectDictLabel(trainStateDatas, value); return $.table.selectDictLabel(trainStateDatas, value);
} }
@ -179,7 +180,7 @@
}, },
{ {
field: 'TRAININFO', field: 'TRAININFO',
title: '培训评价', title: '培训评价',//
visible: false visible: false
}, },
{ {

Loading…
Cancel
Save