From 0f4e3bb62cbd086ef93dd1d884a6ab95324b82f7 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 19 Dec 2023 11:51:51 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?= =?UTF-8?q?=E5=8E=BB=E6=8E=89=E9=A2=84=E8=A7=88=E5=8A=A0=E8=BD=BD=E6=97=B6?= =?UTF-8?q?=E9=9D=9E=E5=BF=85=E8=A6=81=E7=9A=84=E5=85=A8=E5=B1=80loading?= =?UTF-8?q?=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/frontend/src/api/panel/linkJump.js | 2 +- core/frontend/src/api/panel/outerParams.js | 2 +- core/frontend/src/api/panel/panelView.js | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/core/frontend/src/api/panel/linkJump.js b/core/frontend/src/api/panel/linkJump.js index e5d98dce45..23bf47628b 100644 --- a/core/frontend/src/api/panel/linkJump.js +++ b/core/frontend/src/api/panel/linkJump.js @@ -26,7 +26,7 @@ export function queryTargetPanelJumpInfo(requestInfo) { url: '/linkJump/queryTargetPanelJumpInfo', method: 'post', data: requestInfo, - loading: true + loading: false }) } diff --git a/core/frontend/src/api/panel/outerParams.js b/core/frontend/src/api/panel/outerParams.js index 31d2a7890b..3b5bf2022e 100644 --- a/core/frontend/src/api/panel/outerParams.js +++ b/core/frontend/src/api/panel/outerParams.js @@ -20,6 +20,6 @@ export function getOuterParamsInfo(panelId) { return request({ url: '/outerParams/getOuterParamsInfo/' + panelId, method: 'get', - loading: true + loading: false }) } diff --git a/core/frontend/src/api/panel/panelView.js b/core/frontend/src/api/panel/panelView.js index c1a2fe1cfd..3edd4c93de 100644 --- a/core/frontend/src/api/panel/panelView.js +++ b/core/frontend/src/api/panel/panelView.js @@ -3,6 +3,7 @@ import request from '@/utils/request' export function detailList(panelId) { return request({ url: '/panel/view/detailList/' + panelId, - method: 'get' + method: 'get', + loading: false }) }