diff --git a/ant-design-vue-jeecg/src/views/system/stocktaking/modules/CycleCountDetailModal.vue b/ant-design-vue-jeecg/src/views/system/stocktaking/modules/CycleCountDetailModal.vue index 49e05ff..17dac10 100644 --- a/ant-design-vue-jeecg/src/views/system/stocktaking/modules/CycleCountDetailModal.vue +++ b/ant-design-vue-jeecg/src/views/system/stocktaking/modules/CycleCountDetailModal.vue @@ -251,7 +251,7 @@ export default { this.isorter.order = "ascend" == sorter.order ? "asc" : "desc" } this.detailIpagination = pagination; - this.getDetailDataSource(); + this.getDetailDataSource(this.detailIpagination.current); }, customRowFn(record) { return { @@ -277,8 +277,11 @@ export default { this.selectedTable.dataSource.splice(this.selectedTable.dataSource.indexOf(record), 1) this.getDetailDataSource(); }, - getDetailDataSource() { + getDetailDataSource(current) { this.loading = true; + if (current == undefined) { + this.detailIpagination.current = 1; + } let params = { inventoryHeaderIds: this.selectedRowIds.join(","), pageNo: this.detailIpagination.current,