refactor(仪表板): 去掉预览加载时非必要的全局loading提示

This commit is contained in:
wangjiahao 2023-12-19 11:51:51 +08:00
parent 1340198c5a
commit 0f4e3bb62c
3 changed files with 4 additions and 3 deletions

View File

@ -26,7 +26,7 @@ export function queryTargetPanelJumpInfo(requestInfo) {
url: '/linkJump/queryTargetPanelJumpInfo',
method: 'post',
data: requestInfo,
loading: true
loading: false
})
}

View File

@ -20,6 +20,6 @@ export function getOuterParamsInfo(panelId) {
return request({
url: '/outerParams/getOuterParamsInfo/' + panelId,
method: 'get',
loading: true
loading: false
})
}

View File

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