Commit a95b14d9 authored by 沈翠玲's avatar 沈翠玲

生产排产增加排产次数

parent 43fd2e4e
......@@ -185,6 +185,12 @@
<el-table v-loading="loading" :data="maintenanceList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column :label="$t('工单编码')" align="center" prop="workorderCode" />
<el-table-column :label="$t('排产次数')" align="center" prop="taskBatch" >
<template slot-scope="scope">
{{scope.row.taskBatch.split('-').length > 1 ? scope.row.taskBatch.split('-')[scope.row.taskBatch.split('-').length - 1]: ''}}
</template>
</el-table-column>
<el-table-column :label="$t('任务单编码')" width="120" prop="taskCode">
<template slot-scope="scope">
<el-button
......@@ -205,7 +211,6 @@
<el-table-column :label="$t('排产数量')" align="center" prop="quantity" />
<el-table-column :label="$t('可加工数量')" align="center" prop="quantityWait"/>
<el-table-column :label="$t('已完成数量')" align="center" prop="quantityQualify" />
<el-table-column :label="$t('工单编码')" align="center" prop="workorderCode" />
<el-table-column
:label="$t('common.workstation')"
align="center"
......
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