From 476648f58b0d35031194006e11e82864911714a6 Mon Sep 17 00:00:00 2001 From: dujie Date: Fri, 7 Apr 2023 14:57:56 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90fix=20bug=E3=80=9167868=20JTable?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=8B=96=E6=8B=BD=E6=9F=90=E4=BA=9B=E5=88=97?= =?UTF-8?q?=E4=B8=8D=E8=83=BD=E7=94=A8=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/views/demo/list/JTableList.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jero-web/src/views/demo/list/JTableList.vue b/jero-web/src/views/demo/list/JTableList.vue index e69e2f6b..dc4fca60 100644 --- a/jero-web/src/views/demo/list/JTableList.vue +++ b/jero-web/src/views/demo/list/JTableList.vue @@ -82,16 +82,21 @@ export default { // 标题使用插槽使用这个代替title(用于设置里显示列名) columnTitle: 'Name', dataIndex: 'name', + resizable: true, // 可拖拽属性 + // fixed: true, key: 'name', minWidth: 100, + width: 150, slots: { title: 'customTitle' }, scopedSlots: { customRender: 'name' } }, { + resizable: true, // 可拖拽属性 title: 'Tags', key: 'tags', dataIndex: 'tags', minWidth: 200, + width: 200, scopedSlots: { customRender: 'tags' } }, { @@ -102,6 +107,7 @@ export default { width: 100 }, { + resizable: true, // 可拖拽属性 title: 'Type', dataIndex: 'type', width: 100