From 32d30596ede1fa4457e7c26a58b26ba42c4363dd Mon Sep 17 00:00:00 2001 From: cc500 <2014434568@qq.com> Date: Thu, 27 Feb 2025 17:27:12 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=A6=81=E6=AD=A2=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E9=9D=9E=E8=87=AA=E5=B7=B1=E5=88=9B=E5=BB=BA=E5=BA=94=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/app/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/app/index.vue b/src/views/app/index.vue index 0a3bea88..598c3b08 100644 --- a/src/views/app/index.vue +++ b/src/views/app/index.vue @@ -67,7 +67,7 @@
@{{ appItem.author }}
-
+
编辑 删除
@@ -107,6 +107,8 @@ import { api } from 'src/apis'; import { ElMessage, ElMessageBox } from 'element-plus'; import { IconAlarm } from '@computing/opendesign-icons'; import RobotIcon from '../../assets/svgs/robot_icon.svg' +import { storeToRefs } from 'pinia'; +import { useAccountStore } from 'src/store'; const publishStatus = ref('未发布'); const router = useRouter(); const appType = ref('my'); @@ -117,6 +119,7 @@ const pagination = ref({ pageSizes: [16, 32, 64], layout: 'total,sizes,prev,pager,next,jumper', }); +const { userinfo } = storeToRefs(useAccountStore()); const currentPage = ref(1); const totalCount = ref(0); const currentPageSize = ref(pagination.value.pageSizes[0]); -- Gitee From 74172fc9f0a4277ff7512f4af473cafed927ec87 Mon Sep 17 00:00:00 2001 From: cc500 <2014434568@qq.com> Date: Thu, 27 Feb 2025 17:20:57 +0800 Subject: [PATCH 2/2] =?UTF-8?q?undifined=20=E9=97=AE=E9=A2=98=E5=AE=9A?= =?UTF-8?q?=E4=BD=8D,=E5=9C=A8=E8=B7=B3=E8=BD=AC=E4=B9=8B=E5=89=8D?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E6=95=B0=E6=8D=AE=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dialogue/Copilot.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/dialogue/Copilot.vue b/src/views/dialogue/Copilot.vue index 2f612d67..b3fa8227 100644 --- a/src/views/dialogue/Copilot.vue +++ b/src/views/dialogue/Copilot.vue @@ -70,6 +70,11 @@ watch( }; } }); + }else{ + app.value.appId=""; + app.value.name=""; + app.value.selectedAppId=""; + return; } }, { deep: true, immediate: true }, -- Gitee