From fdbda6957bc51334778f64e2e0468e0e6d74d926 Mon Sep 17 00:00:00 2001 From: fengchenchen Date: Wed, 26 Jul 2023 17:39:37 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90update=E3=80=91-=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=AD=97=E5=85=B8=E6=A0=B7=E5=BC=8F=E7=9A=84=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/DictList.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/system/DictList.vue b/src/views/system/DictList.vue index 9b31b2d..1f0a6f5 100644 --- a/src/views/system/DictList.vue +++ b/src/views/system/DictList.vue @@ -110,7 +110,7 @@ export default { title: '序号', dataIndex: '', key: 'rowIndex', - width: 120, + width: 60, align: 'center', customRender: function (t, r, index) { return parseInt(index) + 1 @@ -119,18 +119,21 @@ export default { { title: '字典名称', align: 'left', + width: 120, dataIndex: 'dictName', scopedSlots: { customRender: 'text' } }, { title: '字典编号', align: 'left', + width: 120, dataIndex: 'dictCode', scopedSlots: { customRender: 'text' } }, { title: '描述', align: 'left', + width: 300, dataIndex: 'description', scopedSlots: { customRender: 'text' } }, @@ -138,6 +141,7 @@ export default { title: '操作', dataIndex: 'action', align: 'center', + width: 200, scopedSlots: { customRender: 'action' } } ],