机床工时统计

This commit is contained in:
Vergil
2020-03-25 11:26:41 +08:00
parent 58da90ee19
commit 804829faf6
2 changed files with 6 additions and 6 deletions

View File

@@ -35,12 +35,12 @@
{{ scope.row.工序名 }} {{ scope.row.工序名 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="投产数" align="center" width="80"> <el-table-column label="投产数" align="center" prop="计划数量" width="80">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.计划数量 }} {{ scope.row.计划数量 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="计划准结(分)" align="center" width="110"> <el-table-column label="计划准结(分)" align="center" prop="计划准备工时" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.计划准备工时 }} {{ scope.row.计划准备工时 }}
</template> </template>
@@ -60,12 +60,12 @@
{{ scope.row.计划加工日期 }} {{ scope.row.计划加工日期 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="加工件数" align="center" width="80"> <el-table-column label="加工件数" align="center" prop="加工数量" width="80">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.加工数量 }} {{ scope.row.加工数量 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="准结(分)" align="center" width="110"> <el-table-column label="准结(分)" align="center" prop="修补工时" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.修补工时 }} {{ scope.row.修补工时 }}
</template> </template>
@@ -75,7 +75,7 @@
{{ scope.row.修补单件工时 }} {{ scope.row.修补单件工时 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="加工工时(分)" align="center" prop="加工工时" width="110"> <el-table-column label="加工工时(分)" align="center" prop="完成工时" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.完成工时 }} {{ scope.row.完成工时 }}
</template> </template>

View File

@@ -29,7 +29,7 @@
{{ scope.row.计划工时 }} {{ scope.row.计划工时 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="录入工时(分)" align="center"> <el-table-column label="加工工时(分)" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.录入工时 }} {{ scope.row.录入工时 }}
</template> </template>