|
|
|
@ -50,7 +50,7 @@
|
|
|
|
|
<el-table-column label="包装单位" prop="packUnit" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="180px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.native.stop="singleDiEdit">编辑</el-button>
|
|
|
|
|
<el-button type="text" @click.native.stop="singleDiEdit(scope.row)">编辑</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -534,8 +534,9 @@ export default {
|
|
|
|
|
cancelDialog() {
|
|
|
|
|
this.editSingleDiDialogVisible = false;
|
|
|
|
|
},
|
|
|
|
|
singleDiEdit() {
|
|
|
|
|
let temp = JSON.parse(JSON.stringify(this.editQuery));
|
|
|
|
|
singleDiEdit(val) {
|
|
|
|
|
debugger
|
|
|
|
|
let temp = val;
|
|
|
|
|
this.editSingleFormat.uuid = temp.uuid;
|
|
|
|
|
this.editSingleFormat.id = temp.id;
|
|
|
|
|
this.editSingleFormat.sptm = temp.sptm;
|
|
|
|
|