按钮样式调整

This commit is contained in:
‘huanghaiixia’
2025-12-15 14:10:53 +08:00
parent 231dc1d936
commit e5a9545c55
18 changed files with 51 additions and 33 deletions

View File

@ -91,7 +91,7 @@
schemaIdComputedRef.value = currentRoute.value.meta.schemaId
const [registerModal, { openModal }] = useModal();
const formName='评价体系';
const [registerTable, { reload, }] = useTable({
const [registerTable, { reload, clearSelectedRowKeys }] = useTable({
title: '' || (formName + '列表'),
api: getLngGradeSystemPage,
rowKey: 'id',
@ -108,6 +108,7 @@
return { ...params, FormId: formIdComputedRef.value, PK: 'id' };
},
afterFetch: (res) => {
clearSelectedRowKeys()
tableRef.value.setToolBarWidth();
},