|
|
@ -519,11 +519,11 @@ |
|
|
:row-style="getRowStyle" |
|
|
:row-style="getRowStyle" |
|
|
highlight-current-row |
|
|
highlight-current-row |
|
|
style="width: 100%"> |
|
|
style="width: 100%"> |
|
|
<el-table-column prop="partNo" label="物料编号" min-width="80"></el-table-column> |
|
|
|
|
|
|
|
|
<el-table-column prop="partNo" label="物料编号" sortable min-width="80"></el-table-column> |
|
|
<el-table-column prop="requiredQty" label="需求数量" min-width="80" align="right"></el-table-column> |
|
|
<el-table-column prop="requiredQty" label="需求数量" min-width="80" align="right"></el-table-column> |
|
|
<el-table-column prop="productionOrderNo" label="发货单" min-width="100"></el-table-column> |
|
|
|
|
|
|
|
|
<el-table-column prop="productionOrderNo" label="发货单" sortable min-width="100"></el-table-column> |
|
|
<el-table-column prop="bomLineNo" label="行号" min-width="60"></el-table-column> |
|
|
<el-table-column prop="bomLineNo" label="行号" min-width="60"></el-table-column> |
|
|
<el-table-column label="是否满足" min-width="80" align="center"> |
|
|
|
|
|
|
|
|
<el-table-column label="是否满足" sortable min-width="80" align="center"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span :style="{color: scope.row.isWarehouseSatisfied === 'Y' ? '#67C23A' : '#F56C6C'}"> |
|
|
<span :style="{color: scope.row.isWarehouseSatisfied === 'Y' ? '#67C23A' : '#F56C6C'}"> |
|
|
{{ scope.row.isWarehouseSatisfied === 'Y' ? '满足' : '不满足' }} |
|
|
{{ scope.row.isWarehouseSatisfied === 'Y' ? '满足' : '不满足' }} |
|
|
|