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