fix:工艺路线编辑时展示追踪方式
This commit is contained in:
parent
71af6a5fe0
commit
d769ae239b
|
@ -134,6 +134,11 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="输出" prop="material_out_name">
|
||||
</el-table-column>
|
||||
<el-table-column label="追踪方式">
|
||||
<template #default="scope">
|
||||
<span>{{ tracking_[scope.row.material_out_tracking] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="出材率" prop="out_rate">
|
||||
</el-table-column>
|
||||
<el-table-column label="工时" prop="hour_work">
|
||||
|
@ -230,6 +235,10 @@ export default {
|
|||
rules: {
|
||||
name: [{ required: true, message: "请输入" }],
|
||||
},
|
||||
tracking_:{
|
||||
10:"批次",
|
||||
20:"单个",
|
||||
},
|
||||
nodes:[],
|
||||
edges:[],
|
||||
routepack: "",
|
||||
|
|
Loading…
Reference in New Issue