fix: serverIP实体列表参数修正

This commit is contained in:
chenjinsong
2021-08-26 18:33:49 +08:00
parent c5f4139f2f
commit 6e3960fa4e
3 changed files with 6 additions and 3 deletions

View File

@@ -71,10 +71,13 @@ export default {
} else {
this.$message.error(this.$t('tip.unknownError'))
}
this.loading = false
this.blockOperation.query = false
}
).finally(() => {
).catch(e => {
this.loading = false
this.blockOperation.query = false
this.$message.error(this.$t('tip.unknownError'))
})
}
}