xiaoshouxingqing

This commit is contained in:
shilixia 2022-03-11 15:28:37 +08:00
parent 469e95594b
commit 9c8cfd4731
1 changed files with 13 additions and 0 deletions

View File

@ -49,6 +49,9 @@
</el-table-column> </el-table-column>
<el-table-column label="生产数量" > <el-table-column label="生产数量" >
<template slot-scope="scope">{{ scope.row.count }}</template> <template slot-scope="scope">{{ scope.row.count }}</template>
</el-table-column>
<el-table-column label="状态" width="110">
<template slot-scope="scope">{{ state_[scope.row.state] }}</template>
</el-table-column> </el-table-column>
<el-table-column label="计划开工时间" > <el-table-column label="计划开工时间" >
<template slot-scope="scope">{{ scope.row.start_date }}</template> <template slot-scope="scope">{{ scope.row.start_date }}</template>
@ -88,6 +91,16 @@ export default {
productionplan:"", productionplan:"",
orderdetail:"", orderdetail:"",
state_: {
10: "制定中",
20: "已下达",
30: "已接受",
40: "生产中",
50: "已完成",
60: "军检完成",
70: "暂停",
80: "终止",
},
}; };
}, },