Showing
1 changed file
with
1 additions
and
6 deletions
... | ... | @@ -68,7 +68,7 @@ |
68 | 68 | </template> |
69 | 69 | |
70 | 70 | <script lang="ts"> |
71 | - import { defineComponent, reactive, ref, nextTick } from 'vue'; | |
71 | + import { defineComponent, reactive, nextTick } from 'vue'; | |
72 | 72 | import { BasicTable, useTable, TableAction } from '/@/components/Table'; |
73 | 73 | import { PageWrapper } from '/@/components/Page'; |
74 | 74 | import { useDrawer } from '/@/components/Drawer'; |
... | ... | @@ -95,11 +95,6 @@ |
95 | 95 | }, |
96 | 96 | setup() { |
97 | 97 | const { VITE_GLOB_CONFIGURATION } = getAppEnvConfig(); |
98 | - let selectedRowIds = ref<string[]>([]); | |
99 | - // 复选框事件 | |
100 | - const onSelectRowChange = (selectedRowKeys: string[]) => { | |
101 | - selectedRowIds.value = selectedRowKeys; | |
102 | - }; | |
103 | 98 | const searchInfo = reactive<Recordable>({}); |
104 | 99 | const { organizationIdTreeRef, resetFn } = useResetOrganizationTree(searchInfo); |
105 | 100 | // 表格hooks | ... | ... |