修改国内外政策的序号

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
},
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')
},