🎨优化一下

This commit is contained in:
coward 2024-08-09 16:24:31 +08:00
parent b4ffcdb05a
commit 95b3b7ee17

View File

@ -190,7 +190,6 @@ async function getLogsList() {
tableData.value.data = res.data.data.records;
paginate.itemCount = res.data.data.total;
paginate.pageCount = res.data.data.totalPage;
connectionList()
}
}catch (error) {
return error
@ -232,6 +231,12 @@ async function getClientConnections() {
}
}
const initFunc = debounce(() => {
getClientConnections()
dailyPoe()
// connectionList()
},500)
getLogsList()
dailyPoe()
initFunc()
</script>