零件报废查询

This commit is contained in:
Vergil
2020-05-19 14:52:39 +08:00
parent bb3800f1f3
commit e5b04f94b8

View File

@@ -45,6 +45,16 @@
{{ scope.row.零件名称 }} {{ scope.row.零件名称 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="投产数" width="70px">
<template slot-scope="scope">
{{ scope.row.投产数 }}
</template>
</el-table-column>
<el-table-column align="center" label="加工数" width="70px">
<template slot-scope="scope">
{{ scope.row.加工数 }}
</template>
</el-table-column>
<el-table-column align="center" label="报废数" width="70px"> <el-table-column align="center" label="报废数" width="70px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.报废数量 }} {{ scope.row.报废数量 }}
@@ -90,6 +100,11 @@
{{ scope.row.报废工时 }} {{ scope.row.报废工时 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="补投数" width="70px">
<template slot-scope="scope">
{{ scope.row.补投数量 }}
</template>
</el-table-column>
<el-table-column align="center" label="补投时间" width="85px"> <el-table-column align="center" label="补投时间" width="85px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.补投时间 ? scope.row.补投时间.split(' ')[0] : '' }} {{ scope.row.补投时间 ? scope.row.补投时间.split(' ')[0] : '' }}