1.修复库存查询未重置分页参数导致无数据的问题

2.删除无用的调试代码
fengcang
x_z 3 years ago
parent 057f316e14
commit 3ba46795c2

@ -959,7 +959,6 @@ export default {
handleDetail(row) { handleDetail(row) {
this.editQuery = row; this.editQuery = row;
console.log(row);
}, },
selectVersion() { selectVersion() {
this.selectVersionVisible = true; this.selectVersionVisible = true;
@ -1125,7 +1124,6 @@ export default {
this.relId = val.id; this.relId = val.id;
this.isImportUdi = true; this.isImportUdi = true;
this.thisData = val; this.thisData = val;
console.log("-----" + this.uuid + "-2222--" + this.relId);
this.selectLocalVisible = true; this.selectLocalVisible = true;
}, },
@ -1137,7 +1135,6 @@ export default {
handleSelectionChange(val) { handleSelectionChange(val) {
console.log("----" + val);
this.multipleSelection = val; this.multipleSelection = val;
}, },
@ -1170,7 +1167,6 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}; };
console.log("this.editQuery.isUseDy = " + this.editQuery.isUseDy);
this.getDetailList(ttquery); this.getDetailList(ttquery);
this.getThirdSysDetail(); this.getThirdSysDetail();

@ -265,6 +265,7 @@ export default {
}, },
getList() { getList() {
this.loading = true; this.loading = true;
this.filterQuery.page = 1;
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
filterProducts(this.filterQuery) filterProducts(this.filterQuery)
.then((response) => { .then((response) => {

Loading…
Cancel
Save