|
@@ -340,6 +340,7 @@ export default {
|
|
}).then(res => {
|
|
}).then(res => {
|
|
this.manageData = res.data.content;
|
|
this.manageData = res.data.content;
|
|
this.totalNumber = parseInt(res.data.totalElements);
|
|
this.totalNumber = parseInt(res.data.totalElements);
|
|
|
|
+ this.pageNo = val;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
tableRowClassName({ row, rowIndex }) {
|
|
tableRowClassName({ row, rowIndex }) {
|
|
@@ -396,6 +397,7 @@ export default {
|
|
},
|
|
},
|
|
// 提交新增
|
|
// 提交新增
|
|
submitForm(formName) {
|
|
submitForm(formName) {
|
|
|
|
+ console.log(this.pageNo)
|
|
//验证表单
|
|
//验证表单
|
|
this.$refs[formName].validate((valid, value) => {
|
|
this.$refs[formName].validate((valid, value) => {
|
|
if (valid) {
|
|
if (valid) {
|
|
@@ -408,7 +410,7 @@ export default {
|
|
//获取经营列表
|
|
//获取经营列表
|
|
getManageList({
|
|
getManageList({
|
|
type: "INCOME",
|
|
type: "INCOME",
|
|
- pageNo: 1,
|
|
|
|
|
|
+ pageNo: this.pageNo,
|
|
pageSize: 50,
|
|
pageSize: 50,
|
|
isEntry: true
|
|
isEntry: true
|
|
}).then(res => {
|
|
}).then(res => {
|
|
@@ -427,7 +429,7 @@ export default {
|
|
//获取经营列表
|
|
//获取经营列表
|
|
getManageList({
|
|
getManageList({
|
|
type: "INCOME",
|
|
type: "INCOME",
|
|
- pageNo: 1,
|
|
|
|
|
|
+ pageNo: this.pageNo,
|
|
pageSize: 50,
|
|
pageSize: 50,
|
|
startTime: this.searchFlag ? this.searchForm.startTime : null,
|
|
startTime: this.searchFlag ? this.searchForm.startTime : null,
|
|
endTime: this.searchFlag ? this.searchForm.endTime : null,
|
|
endTime: this.searchFlag ? this.searchForm.endTime : null,
|