fix: 10车间mlog列表显示产出物

This commit is contained in:
caoqianming 2024-03-04 16:53:36 +08:00
parent 8a2d2d39ff
commit f1c6c409b0
1 changed files with 9 additions and 5 deletions

View File

@ -108,12 +108,16 @@
<el-table-column label="规格" prop="mlogb" width="300"> <el-table-column label="规格" prop="mlogb" width="300">
<template #default="scope"> <template #default="scope">
<div v-for="item in scope.row.mlogb" :key="item" class="cateItem" <div v-if="scope.row.mlogb.length > 0">
style=""> <div v-for="item in scope.row.mlogb" :key="item" class="cateItem"
<span>{{ item.material_out_name }}|</span> style="">
<span style="color:darkblue; font-weight: bold;">{{ item.count_ok <span>{{ item.material_out_name }}|</span>
}}</span> <span style="color:darkblue; font-weight: bold;">{{
item.count_ok
}}</span>
</div>
</div> </div>
<div v-else>{{ scope.row.material_out_name }}</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="合格总数" prop="count_ok"> <el-table-column label="合格总数" prop="count_ok">