|
|
@@ -348,6 +348,22 @@
|
|
|
min-width="200"
|
|
|
:show-overflow-tooltip="true"
|
|
|
></el-table-column>
|
|
|
+ <!-- <el-table-column
|
|
|
+ fixed="right"
|
|
|
+ label="操作"
|
|
|
+ align="center"
|
|
|
+ width="70">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-popconfirm
|
|
|
+ title="确定删除吗?"
|
|
|
+ @confirm="handleDeleteClick(scope.row, scope.$index)"
|
|
|
+ >
|
|
|
+ <el-link slot="reference" type="danger" :underline="false" icon="el-icon-delete">
|
|
|
+ 删除
|
|
|
+ </el-link>
|
|
|
+ </el-popconfirm>
|
|
|
+ </template>
|
|
|
+ </el-table-column> -->
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<header-title class="mt20" title="包装清单"></header-title>
|
|
|
@@ -1140,6 +1156,12 @@
|
|
|
|
|
|
this.$refs.assetsDialogRef.open(this.productList);
|
|
|
},
|
|
|
+ //
|
|
|
+ handleDeleteClick(row, index) {
|
|
|
+ console.log('删除', row);
|
|
|
+ this.productList.splice(index, 1);
|
|
|
+
|
|
|
+ },
|
|
|
handleBizSceneChange() {
|
|
|
if (this.formData.extInfo.assetType == 7) {
|
|
|
this.formData.extInfo.sourceBizNo = '';
|