|
@@ -28,7 +28,7 @@
|
|
|
<th width="10%">当前可用库存数量</th>
|
|
|
</tr>
|
|
|
<!-- 空调滤清器 -->
|
|
|
- <tr v-for="(item,index) in itemData.airConditionerFilter" :key="index">
|
|
|
+ <tr v-for="(item,index) in itemData.airConditionerFilter" :key="item.productSn">
|
|
|
<td v-if="index==0" colSpan="1" :rowSpan="itemData.airConditionerFilter.length">空调滤清器</td>
|
|
|
<td>{{ item.productCode|| '--' }}</td>
|
|
|
<td>{{ item.productName|| '--' }}</td>
|
|
@@ -37,7 +37,7 @@
|
|
|
<td>{{ (item.qty||item.qty==0) ? item.qty :'--' }}</td>
|
|
|
</tr>
|
|
|
<!-- 空气滤清器 -->
|
|
|
- <tr v-for="(item,index) in itemData.airFilterFlag" :key="index">
|
|
|
+ <tr v-for="(item,index) in itemData.airFilterFlag" :key="item.productSn">
|
|
|
<td v-if="index==0" colSpan="1" :rowSpan="itemData.airFilterFlag.length">空气滤清器</td>
|
|
|
<td>{{ item.productCode|| '--' }}</td>
|
|
|
<td>{{ item.productName|| '--' }}</td>
|
|
@@ -46,7 +46,7 @@
|
|
|
<td>{{ (item.qty||item.qty==0) ? item.qty :'--' }}</td>
|
|
|
</tr>
|
|
|
<!-- 机油滤清器 -->
|
|
|
- <tr v-for="(item,index) in itemData.engineOilFilterFlag" :key="index">
|
|
|
+ <tr v-for="(item,index) in itemData.engineOilFilterFlag" :key="item.productSn">
|
|
|
<td v-if="index==0" colSpan="1" :rowSpan="itemData.engineOilFilterFlag.length">机油滤清器</td>
|
|
|
<td>{{ item.productCode|| '--' }}</td>
|
|
|
<td>{{ item.productName|| '--' }}</td>
|
|
@@ -89,9 +89,10 @@ export default {
|
|
|
isShow (newValue, oldValue) {
|
|
|
if (!newValue) {
|
|
|
this.$emit('close')
|
|
|
- } else {
|
|
|
- this.getDetailList()
|
|
|
}
|
|
|
+ // else {
|
|
|
+ // this.getDetailList()
|
|
|
+ // }
|
|
|
}
|
|
|
}
|
|
|
}
|