|
@@ -247,7 +247,7 @@ export default {
|
|
|
dateFormat: 'YYYY-MM-DD',
|
|
|
// 查询条件
|
|
|
queryParam: {
|
|
|
-
|
|
|
+ pageSize:50,
|
|
|
},
|
|
|
apply:"",
|
|
|
dateFormat: 'YYYY-MM-DD',
|
|
@@ -274,7 +274,8 @@ export default {
|
|
|
this.ipagination = {
|
|
|
total: res.result.total,
|
|
|
current: res.result.current,
|
|
|
- pageSize: res.result.size
|
|
|
+ pageSize: res.result.size,
|
|
|
+ pageSizeOptions: ["50","100","150", "500"],
|
|
|
}
|
|
|
}else{
|
|
|
this.$message.error(res.message);
|
|
@@ -431,7 +432,9 @@ export default {
|
|
|
},
|
|
|
searchReset() {
|
|
|
this.queryParam.pageNo = ''
|
|
|
- this.queryParam = {}
|
|
|
+ this.queryParam = {
|
|
|
+ pageSize:50,
|
|
|
+ }
|
|
|
this.getCostList()
|
|
|
},
|
|
|
handleChange(value){
|