diff --git a/src/views/cost/accounting.vue b/src/views/cost/accounting.vue
index 9c57e00..6c1ee62 100644
--- a/src/views/cost/accounting.vue
+++ b/src/views/cost/accounting.vue
@@ -1,7 +1,7 @@
@@ -30,12 +30,12 @@
-
-
@@ -101,8 +101,8 @@ export default {
// selectedValues: [],
options,
listQuery: {
- // size: 10,
- // current: 1,
+ pageSize: 20,
+ pageNo: 1,
total: 0,
center: undefined,
start: undefined,
@@ -509,8 +509,8 @@ export default {
this.listQuery.reportTime = val.reportTime ? val.reportTime : undefined;
switch (val.btnName) {
case 'search':
- this.listQuery.current = 1;
- this.listQuery.size = 10;
+ this.listQuery.pageNo = 1;
+ this.listQuery.pageSize = 10;
this.getDataList();
break;
case 'export':
@@ -523,8 +523,8 @@ export default {
/** 导出按钮操作 */
handleExport() {
const queryParams = this.listQuery;
- queryParams.current = 1
- queryParams.size = 999
+ // queryParams.current = 1
+ // queryParams.size = 999
// if (this.facType === 0) {
this.$modal.confirm('是否确认导出所有数据项?').then(() => {
this.exportLoading = true;
diff --git a/src/views/warehouse/index.vue b/src/views/warehouse/index.vue
index f6e8bf4..bae2be3 100644
--- a/src/views/warehouse/index.vue
+++ b/src/views/warehouse/index.vue
@@ -1,7 +1,7 @@
@@ -54,12 +54,12 @@
-
-
@@ -100,8 +100,8 @@ export default {
start: undefined,
end: undefined,
listQuery: {
- size: 10,
- current: 1,
+ pageSize: 20,
+ pageNo: 1,
total: 0,
mDType:0,
wDType: 0,
@@ -299,8 +299,8 @@ export default {
this.listQuery.reportTime = val.reportTime ? val.reportTime : undefined;
switch (val.btnName) {
case 'search':
- this.listQuery.current = 1;
- this.listQuery.size = 10;
+ this.listQuery.pageNo = 1;
+ this.listQuery.pageSize = 10;
this.getDataList();
break;
case 'export':
@@ -313,8 +313,6 @@ export default {
/** 导出按钮操作 */
handleExport() {
const queryParams = this.listQuery;
- queryParams.current = 1
- queryParams.size = 999
// if (this.facType === 0) {
this.$modal.confirm('是否确认导出所有数据项?').then(() => {
this.exportLoading = true;