diff --git a/src/pages/policyRegulation/policy/components/policyTable.vue b/src/pages/policyRegulation/policy/components/policyTable.vue index da77867f3..b3118bd0b 100644 --- a/src/pages/policyRegulation/policy/components/policyTable.vue +++ b/src/pages/policyRegulation/policy/components/policyTable.vue @@ -100,7 +100,10 @@ export default { configStandDrawer }, data () { - const lawsStandInfoSearch = {} + const lawsStandInfoSearch = { + page:1, + pageSize: this.$store.getters.userInfo.configContent, + } return { lawsStandInfoSearch, // 分页查询过程中用到的对象 dict: {}, @@ -126,7 +129,9 @@ export default { selectMoreBtn () { this.$set(this, 'lawsStandInfoSearch', { commentCycleStart: '', - commentCycleEnd: '' + commentCycleEnd: '', + pageSize: this.$store.getters.userInfo.configContent, + page:1 }) this.$refs.advancedSearchRef.open() }, @@ -144,18 +149,22 @@ export default { treeClickGetBussionStandTable (menuId) { this.$set(this.lawsStandInfoSearch, 'menuId', menuId) this.$set(this.lawsStandInfoSearch, 'page', 1) + this.$set(this.lawsStandInfoSearch, 'pageSize', this.$store.getters.userInfo.configContent) + this.$refs.mainTableRef.getBussionStandTable(this.lawsStandInfoSearch, menuId) }, // 普通搜索 getBussionStandTableBtn () { this.$set(this.lawsStandInfoSearch, 'page', 1) + this.$set(this.lawsStandInfoSearch, 'pageSize', this.$store.getters.userInfo.configContent) this.$refs.mainTableRef.getBussionStandTable() }, // 高级搜索 advancedSearch () { this.$set(this.lawsStandInfoSearch, 'page', 1) + this.$set(this.lawsStandInfoSearch, 'pageSize', this.$store.getters.userInfo.configContent) this.lawsStandInfoSearch = { ...this.lawsStandInfoSearch } this.$refs.mainTableRef.getBussionStandTable(this.lawsStandInfoSearch, '', 'sel') },