From a2eef83d0fe881ae0bc4e1f0cacd723abc7826a2 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Wed, 20 Dec 2023 10:04:00 +0800 Subject: [PATCH 1/2] =?UTF-8?q?refactor:=20=E5=8E=BB=E6=8E=89=E9=9D=9E?= =?UTF-8?q?=E5=BF=85=E8=A6=81loading=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/canvas/customComponent/UserView.vue | 1 - core/mobile/src/api/panel.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/core/frontend/src/components/canvas/customComponent/UserView.vue b/core/frontend/src/components/canvas/customComponent/UserView.vue index ec35d4732b..860fb9d68d 100644 --- a/core/frontend/src/components/canvas/customComponent/UserView.vue +++ b/core/frontend/src/components/canvas/customComponent/UserView.vue @@ -953,7 +953,6 @@ export default { this.isFirstLoad = false return true }).finally(() => { - console.log('finally') this.getDataLoading = false }) } diff --git a/core/mobile/src/api/panel.js b/core/mobile/src/api/panel.js index 4c81310a8b..fa621fd673 100644 --- a/core/mobile/src/api/panel.js +++ b/core/mobile/src/api/panel.js @@ -66,7 +66,7 @@ export function starStatus(panelId) { return request({ url: '/api/store/status/' + panelId, method: 'post', - loading: true + loading: false }) } @@ -74,7 +74,7 @@ export function viewPanelLog(data) { return request({ url: 'panel/group/viewLog', method: 'post', - loading: true, + loading: false, data }) } From 6bc734bd8ede09b4a8e154b63998f72e3c467369 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Wed, 20 Dec 2023 11:03:03 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feat(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?= =?UTF-8?q?=E4=BB=AA=E8=A1=A8=E6=9D=BF=E5=85=AC=E5=85=B1=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=85=A8=E5=B1=8F=E5=88=87=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../canvas/components/editor/CanvasOptBar.vue | 43 ++++++++++++++++++- .../src/icons/svg/public_fullscreen.svg | 1 + .../src/icons/svg/public_fullscreen_exit.svg | 1 + core/frontend/src/lang/en.js | 1 + core/frontend/src/lang/tw.js | 1 + core/frontend/src/lang/zh.js | 1 + 6 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 core/frontend/src/icons/svg/public_fullscreen.svg create mode 100644 core/frontend/src/icons/svg/public_fullscreen_exit.svg diff --git a/core/frontend/src/components/canvas/components/editor/CanvasOptBar.vue b/core/frontend/src/components/canvas/components/editor/CanvasOptBar.vue index 2b991acc10..ba6ef5d785 100644 --- a/core/frontend/src/components/canvas/components/editor/CanvasOptBar.vue +++ b/core/frontend/src/components/canvas/components/editor/CanvasOptBar.vue @@ -1,6 +1,7 @@