Browse Source

fix: 发料任务 补料任务分页查询根据来源库位正序排列

hella_online_20240829
songguoqiang 6 months ago
parent
commit
d127d63f6d
  1. 4
      src/pages/issue/job/issueJob.vue
  2. 4
      src/pages/repleinsh/job/repleinshJob.vue

4
src/pages/issue/job/issueJob.vue

@ -159,6 +159,8 @@
filters: filters,
pageNo: this.pageNo,
pageSize: this.pageSize,
sort: 'fromLocationCode',
by: 'asc'
}
getIssueJobList(params).then(res => {
uni.hideLoading();
@ -304,6 +306,8 @@
filters: filters,
pageNo: 1,
pageSize: 100,
sort: 'fromLocationCode',
by: 'asc'
}
getIssueJobList(params).then(res => {
uni.hideLoading();

4
src/pages/repleinsh/job/repleinshJob.vue

@ -146,6 +146,8 @@
filters: filters,
pageNo: this.pageNo,
pageSize: this.pageSize,
sort: 'fromLocationCode',
by: 'asc'
}
getRepleinshJobList(params).then(res => {
@ -258,6 +260,8 @@
filters: filters,
pageNo: 1,
pageSize: 100,
sort: 'fromLocationCode',
by: 'asc'
}
getRepleinshJobList(params).then(res => {
uni.hideLoading();

Loading…
Cancel
Save