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 this.isFirstLoad = false
return true return true
}).finally(() => { }).finally(() => {
console.log('finally')
this.getDataLoading = false this.getDataLoading = false
}) })
} }

View File

@ -66,7 +66,7 @@ export function starStatus(panelId) {
return request({ return request({
url: '/api/store/status/' + panelId, url: '/api/store/status/' + panelId,
method: 'post', method: 'post',
loading: true loading: false
}) })
} }
@ -74,7 +74,7 @@ export function viewPanelLog(data) {
return request({ return request({
url: 'panel/group/viewLog', url: 'panel/group/viewLog',
method: 'post', method: 'post',
loading: true, loading: false,
data data
}) })
} }