xiaoshouxingqing
This commit is contained in:
parent
469e95594b
commit
9c8cfd4731
|
@ -49,6 +49,9 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="生产数量" >
|
||||
<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 label="计划开工时间" >
|
||||
<template slot-scope="scope">{{ scope.row.start_date }}</template>
|
||||
|
@ -88,6 +91,16 @@ export default {
|
|||
|
||||
productionplan:"",
|
||||
orderdetail:"",
|
||||
state_: {
|
||||
10: "制定中",
|
||||
20: "已下达",
|
||||
30: "已接受",
|
||||
40: "生产中",
|
||||
50: "已完成",
|
||||
60: "军检完成",
|
||||
70: "暂停",
|
||||
80: "终止",
|
||||
},
|
||||
|
||||
};
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue