From e9557f23210b5fae2f06ada798ec693e85bb2205 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Wed, 4 Jan 2023 17:23:18 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E5=9C=A8?= =?UTF-8?q?=E7=AC=AC=E4=B8=89=E6=96=B9=E5=B9=B3=E5=8F=B0=E5=86=85=E7=A6=81?= =?UTF-8?q?=E6=AD=A2=E4=BD=BF=E7=94=A8=E6=96=B0Tab=E9=A2=84=E8=A7=88?= =?UTF-8?q?=E4=BB=A5=E5=8F=8A=E5=85=A8=E5=B1=8F=E9=A2=84=E8=A7=88=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/canvas/components/Toolbar.vue | 10 ++++++++-- .../src/views/panel/list/PanelViewShow.vue | 20 ++++++++++++------- 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/frontend/src/components/canvas/components/Toolbar.vue b/frontend/src/components/canvas/components/Toolbar.vue index 994cbac5d7..2900b4b022 100644 --- a/frontend/src/components/canvas/components/Toolbar.vue +++ b/frontend/src/components/canvas/components/Toolbar.vue @@ -71,7 +71,10 @@ @click="redo" /> - +
- +
- + - + @@ -388,7 +391,7 @@ import PanelDetailInfo from '@/views/panel/list/common/PanelDetailInfo' import AppExportForm from '@/views/panel/list/AppExportForm' import GrantAuth from '../grantAuth' import msgCfm from '@/components/msgCfm/index' - +import { inOtherPlatform } from '@/utils/index' export default { name: 'PanelViewShow', components: { AppExportForm, PanelDetailInfo, Preview, SaveToTemplate, PDFPreExport, ShareHead, GrantAuth }, @@ -446,6 +449,9 @@ export default { panelInfo() { return this.$store.state.panel.panelInfo }, + isOtherPlatform() { + return inOtherPlatform() + }, ...mapState([ 'componentData', 'canvasStyleData',