fix:字段类型修改

ln_ry20250512
wangxy 3 weeks ago
parent 8669466ea9
commit ef457f5c7f

@ -56,6 +56,7 @@
var editFlag = [[${@permission.hasPermi('system:apply:edit')}]];
var detailFlag = [[${@permission.hasPermi('system:apply:editFile')}]]
var removeFlag = [[${@permission.hasPermi('system:apply:remove')}]];
var applyState = [[${@dict.getType('sys_user_apply_status')}]];
var prefix = ctx + "system/applyList";
$(function() {
var options = {
@ -107,6 +108,14 @@
field: 'smGrade',
title: '涉密等级',
},
{
title: '状态',
align: 'center',
field: 'applyStatus',
formatter: function(value, row, index) {
return $.table.selectDictLabel(applyState, value);
}
},
{
field: 'createTime',
title: '创建时间',

@ -45,6 +45,7 @@
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var detailFlag = [[${@permission.hasPermi('system:audit:editAudit')}]]
var applyState = [[${@dict.getType('sys_user_apply_status')}]];
var prefix = ctx + "system/auditList";
$(function() {
var options = {
@ -90,6 +91,14 @@
field: 'smGrade',
title: '涉密等级',
},
{
title: '状态',
align: 'center',
field: 'applyStatus',
formatter: function(value, row, index) {
return $.table.selectDictLabel(applyState, value);
}
},
{
field: 'createTime',
title: '创建时间',

Loading…
Cancel
Save