fix: bug#11226

This commit is contained in:
leiqiaochu 2023-03-30 15:55:57 +08:00
parent 2bccd21378
commit ea4cb2492b
1 changed files with 4 additions and 4 deletions

View File

@ -129,7 +129,7 @@ let params = ref();
*/
const handleSearch = (e: any) => {
params.value = e;
expandedRowKeys.value = []
expandedRowKeys.value = [];
};
/**
* 操作栏按钮
@ -210,21 +210,20 @@ const table = reactive({
dataIndex: 'name',
key: 'name',
ellipsis: true,
width: 600,
width: 500,
},
{
title: '排序',
dataIndex: 'sortIndex',
key: 'sortIndex',
scopedSlots: true,
width: 200,
width: 100,
},
{
title: '说明',
dataIndex: 'description',
key: 'description',
ellipsis: true,
width: 700,
},
{
title: '操作',
@ -232,6 +231,7 @@ const table = reactive({
fixed: 'right',
ellipsis: true,
scopedSlots: true,
width: 120,
},
],
/**