fix:fix site info
Build and Deploy Vue3 / build (push) Successful in 1m8s
Build and Deploy Vue3 / deploy (push) Successful in 55s

This commit is contained in:
2025-09-28 00:24:23 +08:00
parent 7a3134ac0c
commit 2b4083c2f1
8 changed files with 765 additions and 217 deletions
+3 -3
View File
@@ -302,7 +302,7 @@
</el-tab-pane>
<!-- 数据卷信息 -->
<el-tab-pane label="数据卷信息" name="2">
<!-- <el-tab-pane label="数据卷信息" name="2">
<div class="tab-header">
<h3 class="tab-title">数据卷信息</h3>
</div>
@@ -321,7 +321,7 @@
</el-table>
<el-empty v-if="volumeInfoList.length === 0" description="暂无数据" />
</el-tab-pane>
</el-tab-pane> -->
</el-tabs>
@@ -705,7 +705,7 @@ const fetchNetworkList = async () => {
const fetchVolumeInfoList = async () => {
volumeInfoLoading.value = true;
try {
const res = await getVolumeList({instance_id:route.query.container_id});
const res = await getVolumeList({instance_id:route.query.container_id,page:1,count:10});
console.log("获取数据卷信息",res);
if(res.data.code == 200){
volumeInfoList.value = res.data.data;