From d2ae4bdb7e31c4b5a0ec2dd8a46007966f3d133e Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Mon, 25 Mar 2024 18:54:11 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E5=88=87?= =?UTF-8?q?=E6=8D=A2=E5=88=B0=E7=A7=BB=E5=8A=A8=E7=AB=AF=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E5=85=88=E6=A3=80=E6=9F=A5=E4=BB=AA=E8=A1=A8=E6=9D=BF=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/components/dashboard/DbToolbar.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/core-frontend/src/components/dashboard/DbToolbar.vue b/core/core-frontend/src/components/dashboard/DbToolbar.vue index 5033410eeb..40a7d2f7de 100644 --- a/core/core-frontend/src/components/dashboard/DbToolbar.vue +++ b/core/core-frontend/src/components/dashboard/DbToolbar.vue @@ -197,6 +197,10 @@ const openDataBoardSetting = () => { } const openMobileSetting = () => { + if (!dvInfo.value.id) { + ElMessage.warning('请先保存当前页面') + return + } useEmitt().emitter.emit('mobileConfig') }