|
|
@@ -348,7 +348,7 @@
|
|
|
min-width="200"
|
|
|
:show-overflow-tooltip="true"
|
|
|
></el-table-column>
|
|
|
- <!-- <el-table-column
|
|
|
+ <el-table-column
|
|
|
fixed="right"
|
|
|
label="操作"
|
|
|
align="center"
|
|
|
@@ -363,7 +363,7 @@
|
|
|
</el-link>
|
|
|
</el-popconfirm>
|
|
|
</template>
|
|
|
- </el-table-column> -->
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<header-title class="mt20" title="包装清单"></header-title>
|
|
|
@@ -1158,8 +1158,10 @@
|
|
|
},
|
|
|
//
|
|
|
handleDeleteClick(row, index) {
|
|
|
- console.log('删除', row);
|
|
|
+ console.log('删除', row.id);
|
|
|
this.productList.splice(index, 1);
|
|
|
+ console.log('删除后', this.packingList);
|
|
|
+ this.packingList = this.packingList.filter((item) => item.outInDetailId !== row.id);
|
|
|
|
|
|
},
|
|
|
handleBizSceneChange() {
|