更新
This commit is contained in:
@@ -65,11 +65,6 @@
|
||||
{{ scope.row.加工数量 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="准结(分)" align="center" prop="修补工时" width="110">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.修补工时 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="单件加工工时(分)" align="center" prop="加工工时" width="140">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.修补单件工时 }}
|
||||
@@ -80,6 +75,11 @@
|
||||
{{ scope.row.完成工时 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="准结(分)" align="center" prop="修补工时" width="110">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.修补工时 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="扫码工时(分)" align="center" prop="扫码工时" width="110">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.扫码工时 }}
|
||||
@@ -185,7 +185,7 @@ export default {
|
||||
加工工时: response.data.result[i].设备工时,
|
||||
扫码工时: response.data.result[i].扫码工时,
|
||||
辅助工时: response.data.result[i].辅助工时,
|
||||
工时比值: Number(response.data.result[i].计划工时) === 0 ? 0 : Math.round(response.data.result[i].完成工时 / Number(response.data.result[i].计划工时) * 100) / 100.00,
|
||||
工时比值: Number(response.data.result[i].计划工时) === 0 ? 0 : Math.round((response.data.result[i].完成工时 + response.data.result[i].修补工时) / Number(response.data.result[i].计划工时) * 100) / 100.00,
|
||||
加工日期: response.data.result[i].操作时间,
|
||||
图号及规格: response.data.result[i].零件图号_零件工艺计划,
|
||||
修补工时: response.data.result[i].修补工时,
|
||||
|
||||
Reference in New Issue
Block a user