From cfa2446797d2b418560dde46300d05326b0feab5 Mon Sep 17 00:00:00 2001 From: K <1175047471@qq.com> Date: Fri, 1 Mar 2024 15:27:36 +0800 Subject: [PATCH] =?UTF-8?q?refactor(product):=20topic=20=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E5=88=87=E6=8D=A2=E4=B8=BA=20button?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/product/components/TopicManage.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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) {
-