|
@@ -1,5 +1,5 @@
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
- import { h, onMounted, reactive, ref } from 'vue';
|
|
|
|
|
|
+ import { h, onMounted, onUnmounted, reactive, ref } from 'vue';
|
|
import { BasicTable, TableAction } from '@/components/Table';
|
|
import { BasicTable, TableAction } from '@/components/Table';
|
|
import { BasicForm, useForm } from '@/components/Form/index';
|
|
import { BasicForm, useForm } from '@/components/Form/index';
|
|
import { add, del, page as getPage } from '@/api/aigc/flow';
|
|
import { add, del, page as getPage } from '@/api/aigc/flow';
|
|
@@ -31,6 +31,9 @@
|
|
`,
|
|
`,
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
+ onUnmounted(() => {
|
|
|
|
+ notification.destroyAll();
|
|
|
|
+ });
|
|
|
|
|
|
const actionColumn = reactive({
|
|
const actionColumn = reactive({
|
|
width: 170,
|
|
width: 170,
|