|
|
@@ -391,6 +391,16 @@
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
|
|
|
+ <template v-slot:reelSpecification="{ row, $index }">
|
|
|
+ <el-form-item>
|
|
|
+ <el-input
|
|
|
+ :ref="'reelSpecification' + $index"
|
|
|
+ v-model="row.reelSpecification"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template v-slot:detailProductionDate="{ row, $index }">
|
|
|
<template v-if="row.isSave">
|
|
|
{{ row.detailProductionDate }}
|
|
|
@@ -1259,7 +1269,7 @@
|
|
|
headerSlot: 'headerWarehouseName'
|
|
|
},
|
|
|
{
|
|
|
- minWidth: 300,
|
|
|
+ minWidth: 200,
|
|
|
prop: 'modelKey',
|
|
|
showOverflowTooltip: true,
|
|
|
label: '机型',
|
|
|
@@ -1267,13 +1277,21 @@
|
|
|
align: 'center'
|
|
|
},
|
|
|
{
|
|
|
- minWidth: 300,
|
|
|
+ minWidth: 200,
|
|
|
prop: 'colorKey',
|
|
|
showOverflowTooltip: true,
|
|
|
label: '颜色',
|
|
|
slot: 'colorKey',
|
|
|
align: 'center'
|
|
|
},
|
|
|
+ {
|
|
|
+ minWidth: 200,
|
|
|
+ prop: 'reelSpecification',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ label: '盘具',
|
|
|
+ slot: 'reelSpecification',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
{
|
|
|
label: '采购原因',
|
|
|
prop: 'purpose',
|
|
|
@@ -1487,6 +1505,7 @@
|
|
|
this.productList.length + productIndex, // 物品索引
|
|
|
categoryName: productItem.categoryName,
|
|
|
categoryCode: productItem.categoryCode,
|
|
|
+ reelSpecification: productItem.reelSpecification,
|
|
|
materialDetailList:
|
|
|
packingItem.materialDetailList.map(
|
|
|
(materialItem, materialIndex) => {
|