修改国内外政策的序号

This commit is contained in:
zhoulingpo
2023-12-07 17:41:47 +08:00
parent 06d2df4c15
commit c0fe749140
@@ -100,7 +100,10 @@ export default {
configStandDrawer configStandDrawer
}, },
data () { data () {
const lawsStandInfoSearch = {} const lawsStandInfoSearch = {
page:1,
pageSize: this.$store.getters.userInfo.configContent,
}
return { return {
lawsStandInfoSearch, // 分页查询过程中用到的对象 lawsStandInfoSearch, // 分页查询过程中用到的对象
dict: {}, dict: {},
@@ -126,7 +129,9 @@ export default {
selectMoreBtn () { selectMoreBtn () {
this.$set(this, 'lawsStandInfoSearch', { this.$set(this, 'lawsStandInfoSearch', {
commentCycleStart: '', commentCycleStart: '',
commentCycleEnd: '' commentCycleEnd: '',
pageSize: this.$store.getters.userInfo.configContent,
page:1
}) })
this.$refs.advancedSearchRef.open() this.$refs.advancedSearchRef.open()
}, },
@@ -144,18 +149,22 @@ export default {
treeClickGetBussionStandTable (menuId) { treeClickGetBussionStandTable (menuId) {
this.$set(this.lawsStandInfoSearch, 'menuId', menuId) this.$set(this.lawsStandInfoSearch, 'menuId', menuId)
this.$set(this.lawsStandInfoSearch, 'page', 1) this.$set(this.lawsStandInfoSearch, 'page', 1)
this.$set(this.lawsStandInfoSearch, 'pageSize', this.$store.getters.userInfo.configContent)
this.$refs.mainTableRef.getBussionStandTable(this.lawsStandInfoSearch, menuId) this.$refs.mainTableRef.getBussionStandTable(this.lawsStandInfoSearch, menuId)
}, },
// 普通搜索 // 普通搜索
getBussionStandTableBtn () { getBussionStandTableBtn () {
this.$set(this.lawsStandInfoSearch, 'page', 1) this.$set(this.lawsStandInfoSearch, 'page', 1)
this.$set(this.lawsStandInfoSearch, 'pageSize', this.$store.getters.userInfo.configContent)
this.$refs.mainTableRef.getBussionStandTable() this.$refs.mainTableRef.getBussionStandTable()
}, },
// 高级搜索 // 高级搜索
advancedSearch () { advancedSearch () {
this.$set(this.lawsStandInfoSearch, 'page', 1) this.$set(this.lawsStandInfoSearch, 'page', 1)
this.$set(this.lawsStandInfoSearch, 'pageSize', this.$store.getters.userInfo.configContent)
this.lawsStandInfoSearch = { ...this.lawsStandInfoSearch } this.lawsStandInfoSearch = { ...this.lawsStandInfoSearch }
this.$refs.mainTableRef.getBussionStandTable(this.lawsStandInfoSearch, '', 'sel') this.$refs.mainTableRef.getBussionStandTable(this.lawsStandInfoSearch, '', 'sel')
}, },