diff --git a/src/views/product/components/TopicManage.vue b/src/views/product/components/TopicManage.vue index f0a7eeca..ad849cb4 100644 --- a/src/views/product/components/TopicManage.vue +++ b/src/views/product/components/TopicManage.vue @@ -2,7 +2,7 @@ import { Alert, Segmented } from 'ant-design-vue' import { computed, ref, watch } from 'vue' import { useRoute } from 'vue-router' -import { PlusOutlined } from '@ant-design/icons-vue' +import { PlusOutlined, SyncOutlined } from '@ant-design/icons-vue' import TopicFormModal from './TopicFormModal.vue' import type { Topic } from '@/api/product/types' import { TopicType } from '@/api/product/types' @@ -97,9 +97,13 @@ async function handleDelete(id: string) {
-