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] =?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 }) }