diff --git a/ruoyi-admin/src/main/resources/templates/system/case/case.html b/ruoyi-admin/src/main/resources/templates/system/case/case.html index 44c2e3c..f0659ec 100644 --- a/ruoyi-admin/src/main/resources/templates/system/case/case.html +++ b/ruoyi-admin/src/main/resources/templates/system/case/case.html @@ -87,14 +87,15 @@ { field: 'caseName', title: '案件名称', - }, - { - field: 'caseAssum', - title: '案件编号', + width: '40', + widthUnit: '%', + align: "left" }, { field: 'caseType', title: '案件类型', + width: '15', + widthUnit: '%', formatter: function(value, row, index) { return $.table.selectDictLabel(caseType, value); } @@ -102,6 +103,8 @@ { field: 'caseGrade', title: '案件涉密等级', + width: '10', + widthUnit: '%', formatter: function(value, row, index) { return $.table.selectDictLabel(caseGrade, value); } @@ -109,6 +112,8 @@ { field: 'caseTime', title: '案件发生时间', + width: '10', + widthUnit: '%', formatter: function(value, row, index) { if (value !== null){ var date = new Date(value); @@ -121,13 +126,11 @@ } } }, - { - field: 'caseAddress', - title: '案件发生地点', - }, { field: 'state', title: '案件状态', + width: '10', + widthUnit: '%', formatter: function(value, row, index) { return $.table.selectDictLabel(caseStatus, value); }