refactor: 去掉非必要loading提示

This commit is contained in:
wangjiahao 2023-12-20 10:04:00 +08:00
parent 2c7a5c623a
commit a2eef83d0f
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
})
}