预览首页统计修复,123盘大文件长度取值错误问题

This commit is contained in:
QAIU
2023-08-28 17:54:39 +08:00
parent cdeb63e225
commit e1c61fb51a
2 changed files with 3 additions and 5 deletions

View File

@@ -121,8 +121,6 @@ export default {
],
getLink: '',
getLink2: '',
node1Ip: 'http://140.249.188.241:8400/',
node2Ip: 'http://47.93.26.218:6400/',
node1Info: {},
node2Info: {},
}
@@ -170,13 +168,13 @@ export default {
},
getInfo() {
// 初始化统计信息
axios.get(this.node1Ip + 'v2/statisticsInfo').then(
axios.get('/n1/statisticsInfo').then(
response => {
if (response.data.success) {
this.node1Info = response.data.data
}
})
axios.get(this.node2Ip + 'v2/statisticsInfo').then(
axios.get('/n2/statisticsInfo').then(
response => {
if (response.data.success) {
this.node2Info = response.data.data