fix:光芯车间库存分批操作时触发方法传参变动
This commit is contained in:
parent
d74ab186d2
commit
d8e2665bc4
|
|
@ -70,7 +70,7 @@
|
||||||
min-width="120"
|
min-width="120"
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-link @click="rowClick(scope.row.batch)" type="primary">{{scope.row.batch}}</el-link>
|
<el-link @click="rowClick(scope.row)" type="primary">{{scope.row.batch}}</el-link>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|
@ -320,15 +320,15 @@ export default {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
//分批
|
//分批mtype:20
|
||||||
rowClick(val){
|
rowClick(row){
|
||||||
this.dialog.handover = true;
|
this.dialog.handover = true;
|
||||||
this.type = 10;
|
this.type = 10;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.handoverDialog.open("add",val,20);
|
this.$refs.handoverDialog.open("add",row,20);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//合批
|
//合批mtype:30
|
||||||
batchConcat(){
|
batchConcat(){
|
||||||
this.changebatch = true;
|
this.changebatch = true;
|
||||||
let handoverb = [];
|
let handoverb = [];
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@
|
||||||
min-width="120"
|
min-width="120"
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-link @click="rowClick(scope.row.batch)" type="primary">{{scope.row.batch}}</el-link>
|
<el-link @click="rowClick(scope.row)" type="primary">{{scope.row.batch}}</el-link>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|
@ -311,11 +311,11 @@ export default {
|
||||||
this.$refs.saveDialog.open(mode);
|
this.$refs.saveDialog.open(mode);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
rowClick(val){
|
rowClick(row){
|
||||||
this.dialog.handover = true;
|
this.dialog.handover = true;
|
||||||
this.type = 10;
|
this.type = 10;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.handoverDialog.open("add",val,20);
|
this.$refs.handoverDialog.open("add",row,20);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//获取当前批次车间物料的检验记录
|
//获取当前批次车间物料的检验记录
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue