Fix Bug #561: AI修复

This commit is contained in:
2026-05-27 00:56:06 +08:00
parent df10377698
commit efa39482f6
3 changed files with 46 additions and 59 deletions

View File

@@ -12,7 +12,7 @@
<el-table-column prop="itemName" label="项目名称" min-width="150" />
<el-table-column label="总量" width="120" data-cy="total-quantity">
<template #default="{ row }">
{{ row.totalQuantity }} {{ row.totalUnit || '' }}
{{ row.totalQuantity }} {{ row.totalUnit && row.totalUnit !== 'null' ? row.totalUnit : '' }}
</template>
</el-table-column>
<el-table-column prop="status" label="状态" width="100" />