fix: 提交修改
This commit is contained in:
@@ -315,7 +315,11 @@
|
||||
class="data-table"
|
||||
>
|
||||
<el-table-column prop="id" label="ID" width="80" />
|
||||
<el-table-column prop="size" label="空间大小(MB)" width="140" />
|
||||
<el-table-column prop="size" label="空间大小(MB)" width="140">
|
||||
<template #default="{ row }">
|
||||
{{ row.size != null && row.size !== '' ? `${row.size} MB` : '-' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="mount_path" label="挂载路径" min-width="200" />
|
||||
<el-table-column prop="created_at" label="创建时间" min-width="160" />
|
||||
</el-table>
|
||||
|
||||
Reference in New Issue
Block a user