feat: 退火显示完整物料名称

This commit is contained in:
caoqianming 2024-01-20 22:30:48 +08:00
parent f1a65e94d0
commit 0a47b93517
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
<el-table-column label="物料名" prop="material_out_name">
<template #default="scope">
<span v-if="scope.row.material_out_">
{{ scope.row.material_out_.name }}
{{ scope.row.material_out_.full_name }}
</span>
</template>
</el-table-column>
@ -67,7 +67,7 @@
<el-table-column label="产物" prop="material" show-overflow-tooltip>
<template #default="scope">
<span v-if="scope.row.material_out_">
{{ scope.row.material_out_.name }}
{{ scope.row.material_out_.full_name }}
</span>
</template>
</el-table-column>