Browse Source

物料隔离任务,PDA增加物料号查询功能

ljc_0803
wangyufei 1 month ago
parent
commit
ca3dc72b15
  1. 4
      src/pages/inventoryMove/coms/comMoveJob.vue

4
src/pages/inventoryMove/coms/comMoveJob.vue

@ -212,14 +212,14 @@
uni.stopPullDownRefresh();
}
var list = res.data.list;
let list = res.data.list;
this.totalCount = res.data.total
this.loadingType = "loadmore";
this.jobList = type === "refresh" ? list : this.jobList.concat(list);
if (list == null || list.length == 0) {
this.loadingType = "nomore";
return;
}
this.jobList = type === "refresh" ? list : this.jobList.concat(list);
this.pageNo++;
this.updateTitle();
}).catch(error => {

Loading…
Cancel
Save