字典缓存

This commit is contained in:
仲么了
2023-12-28 11:27:03 +08:00
parent afeadbe26a
commit c1b08dabd4
7 changed files with 102 additions and 20 deletions

View File

@@ -7,6 +7,7 @@
:border="true"
v-loading="tableStore.table.loading"
stripe
size="small"
@checkbox-change="onSelectionChange"
v-bind="$attrs"
:column-config="{resizable: true}"
@@ -95,8 +96,8 @@ const pageSizes = computed(() => {
/*
* 记录选择的项
*/
const onSelectionChange = (selection: TableRow[]) => {
tableStore.onTableAction('selection-change', selection)
const onSelectionChange = (selection: any) => {
// tableStore.onTableAction('selection-change', selection)
}
const getRef = () => {