Merge pull request #7219 from dataease/pr@dev@refactor_loading

refactor: 去掉非必要loading提示
This commit is contained in:
王嘉豪
2023-12-20 10:21:14 +08:00
committed by GitHub
2 changed files with 2 additions and 3 deletions

View File

@@ -953,7 +953,6 @@ export default {
this.isFirstLoad = false
return true
}).finally(() => {
console.log('finally')
this.getDataLoading = false
})
}

View File

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