Commit e1f27186 authored by tanjunxin's avatar tanjunxin

fix: 工作中心搜索失效修复; 生产报工增加虚拟报工字段展示

parent 7478da72
......@@ -12,7 +12,7 @@
<el-col :span="6">
<el-form-item label="工厂" prop="factory">
<el-select
v-model="form.factoryCode"
v-model="queryParams.factoryCode"
class="form-item"
clearable
placeholder="请选择工厂"
......
......@@ -77,6 +77,11 @@
<el-table-column label="工作单元" width="120" align="center" prop="workunitName" />
<el-table-column label="外协单号" width="150" align="center" prop="assistProcessCode" />
<el-table-column label="生产工单编号" width="150" align="center" prop="workorderCode" />
<el-table-column label="虚拟报工" align="center" prop="virtualFlag">
<template slot-scope="{ row }">
{{ row.virtualFlag ? '是' : '否' }}
</template>
</el-table-column>
<el-table-column label="任务数量" width="100" align="center" prop="quantity" />
<el-table-column label="工单数量" width="100" align="center" prop="woQuantity" />
<el-table-column label="报工数量" align="center" prop="feedbackTime" width="180">
......
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