Browse Source

修复在库订单详情翻页问题

pre-production
马远东 4 months ago
parent
commit
4f80b0d6ce
  1. 6
      src/views/distribution/inventory/distributionStockArticleDetails.vue

6
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -189,7 +189,7 @@
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-sizes="[10, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
@ -1232,11 +1232,11 @@ export default {
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoadOwn(this.page);
this.package()
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoadOwn(this.page);
this.package()
},
onLoad(page, params = {}) {
try {

Loading…
Cancel
Save