From ad601b1d3b468d1a2da02982d4fda290cbdbb652 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Thu, 15 Aug 2024 09:09:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=9C=BA=E6=89=80=E5=87=BA=E5=85=A5?= =?UTF-8?q?=E7=99=BB=E8=AE=B0=E6=8E=A5=E5=8F=A3=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/templates/system/case/case.html | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) 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); }