|
@@ -104,9 +104,11 @@ export default {
|
|
|
dataList: [],
|
|
|
loading: false,
|
|
|
detailData: {},
|
|
|
- page: {
|
|
|
- pageSize: 10,
|
|
|
- currentPage: 1
|
|
|
+ page: {
|
|
|
+ pageSize: 20,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0,
|
|
|
+ pageSizes: [10,20,30,40,50, 100, 200, 300, 400, 500]
|
|
|
},
|
|
|
option: {
|
|
|
searchShow: true,
|
|
@@ -340,9 +342,9 @@ export default {
|
|
|
},
|
|
|
searchCriteriaSwitch(type) {
|
|
|
if (type) {
|
|
|
- this.option.height = this.option.height - 51;
|
|
|
+ this.option.height = this.option.height - 46;
|
|
|
} else {
|
|
|
- this.option.height = this.option.height + 51;
|
|
|
+ this.option.height = this.option.height + 46;
|
|
|
}
|
|
|
this.$refs.crud.getTableHeight();
|
|
|
},
|