Commit 11b687bd authored by 沈翠玲's avatar 沈翠玲

修复bug

parent c8c01439
......@@ -50,6 +50,16 @@
</el-select>
</template>
</el-table-column>
<el-table-column label="工序编码" prop="processCode" align="center" width="140">
<template slot-scope="scope">
<el-input
v-model="scope.row.processCode"
placeholder=""
disabled
clearable
/>
</template>
</el-table-column>
<el-table-column label="工作中心" prop="workstationId" align="center" width="140">
<template slot-scope="scope">
<el-select v-model="scope.row.workstationId" :disabled="mode == 'info'" placeholder="" filterable @change="(v) => chooseworkstationName(v, scope.row, scope.$index)">
......@@ -62,6 +72,16 @@
</el-select>
</template>
</el-table-column>
<el-table-column label="工作中心编码" prop="workstationCode" align="center" width="130">
<template slot-scope="scope">
<el-input
v-model="scope.row.workstationCode"
placeholder=""
disabled
clearable
/>
</template>
</el-table-column>
<el-table-column label="标准工时" prop="stdWorkingTime" align="center" >
<template slot-scope="scope">
<el-input
......
......@@ -170,7 +170,6 @@
<el-table-column label="排产数量" align="center" prop="quantity" />
<el-table-column label="可加工数量" align="center" prop="quantityWait"/>
<el-table-column label="已完成数量" align="center" prop="quantityQualify" />
<el-table-column label="编排人员" align="center" prop="arrangeUsername" />
<el-table-column label="工单编码" align="center" prop="workorderCode" />
<el-table-column
label="工作中心"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment