预验收库查询bug修复

prod
郑明梁 2 years ago
parent 66635561bc
commit b2d6395a37

@ -195,6 +195,7 @@ export default {
getList() {
this.loading = true;
this.invPreProductDetailQuery.relId = this.inputQuery.relId;
this.invPreProductDetailQuery.invSpaceCode = this.inputQuery.invSpaceCode;
this.invPreProductDetailQuery.supId = this.inputQuery.supId;
this.invPreProductDetailQuery.batchNo = this.inputQuery.batchNo;
this.invPreProductDetailQuery.deptCode = this.inputQuery.deptCode;

@ -240,6 +240,7 @@ export default {
page: 1,
limit: 10,
},
invSpaceCode:null,
list: [],
total: 0,
invList: [],
@ -273,6 +274,7 @@ export default {
this.$router.push({
path: "",
});
this.invSpaceCode=null
this.filterQuery = {
nameCode: null,
cpmctymc: null,
@ -289,6 +291,7 @@ export default {
},
onSubmit() {
this.filterQuery.page = 1;
this.invSpaceCode=this.filterQuery.invSpaceCode,
this.getList();
},
hideSearch() {
@ -369,6 +372,7 @@ export default {
},
detailDialog(row) {
this.detailDialogVisible = true;
debugger
this.inputQuery = {
relId: row.relIdFk,
cpmctymc: row.cpmctymc,
@ -379,7 +383,8 @@ export default {
expireDate: row.expireDate,
supId: row.supId,
deptCode: row.deptCode,
invCode: row.invCode
invCode: row.invCode,
invSpaceCode: this.invSpaceCode
}
},
closeDetailDialog() {

Loading…
Cancel
Save