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 }) }