Merge branch 'dev-3.7' of https://git.mesalab.cn/nezha/nezha-fronted into dev-3.7

This commit is contained in:
zhangyu
2023-04-07 11:28:10 +08:00

View File

@@ -83,9 +83,7 @@ export default {
}
},
created () {
this.$nextTick(() => {
this.getAssetList()
})
this.token = localStorage.getItem('nz-token')
axios.get('/healthy').then(response => {
const url = response.request.responseURL
@@ -107,10 +105,10 @@ export default {
if (response.code === 200) {
this.assetList = response.data.list
if (this.assetList && this.assetList.length > 0) {
// setTimeout(() => {
this.$nextTick(() => {
this.assetId = String(this.assetList[0].id)
this.loadFinish = true
// }, 100)
})
}
}
})