Showing
2 changed files
with
2 additions
and
3 deletions
... | ... | @@ -9,9 +9,7 @@ |
9 | 9 | import { useMessage } from '/@/hooks/web/useMessage'; |
10 | 10 | import { PlayProtocol } from '../manage/config.data'; |
11 | 11 | |
12 | - const emit = defineEmits({ | |
13 | - success: null, | |
14 | - }); | |
12 | + const emit = defineEmits(['success','register']); | |
15 | 13 | |
16 | 14 | const createFlag = ref(false); |
17 | 15 | ... | ... |
... | ... | @@ -15,6 +15,7 @@ |
15 | 15 | import { ref } from 'vue'; |
16 | 16 | import { useMessage } from '/@/hooks/web/useMessage'; |
17 | 17 | import { Popconfirm } from 'ant-design-vue'; |
18 | + import { Authority } from '/@/components/Authority'; | |
18 | 19 | |
19 | 20 | const enabledBatchDelete = ref(true); |
20 | 21 | const [register, { reload, getSelectRowKeys }] = useTable({ | ... | ... |