fix: 优化npm 评分图表的刷新反馈

This commit is contained in:
chenjinsong
2022-09-06 15:24:40 +08:00
parent 5d2fa26ab6
commit b756bbbb8d

View File

@@ -216,12 +216,16 @@ export default {
}
})
this.tableData = tableData
}).finally(() => {
this.toggleLoading(false)
})
} else {
this.tableData = []
this.isNoData = true
this.toggleLoading(false)
}
}).finally(() => {
}).catch(e => {
console.error(e)
this.toggleLoading(false)
})
},