shuishen
2024-05-07 20a8596be7f9da45cd640e434460b42e83b4b1ad
矛盾纠纷分页异常修复
1 files modified
18 ■■■■ changed files
src/views/contradictionEventShow/index.vue 18 ●●●● patch | view | raw | blame | history
src/views/contradictionEventShow/index.vue
@@ -97,7 +97,7 @@
            tableData: [],
            boxShow: false,
            pages: {
                current: 1,
                currentPage: 1,
                total: 0,
                pageSize: 22,
                count: 0,
@@ -155,7 +155,7 @@
    methods: {
        // 统计
        getStatistic(){
            var that = this;
            var that = this
            getStatistic({
                disputeType: this.typeValue,
                searchKey: this.searchKey
@@ -291,7 +291,7 @@
        },
        // 切换登记类型
        typeChange() {
            this.pages.current = 1
            this.pages.currentPage = 1
            this.getList()
            this.getStatistic()
        },
@@ -303,7 +303,7 @@
                disputeType: this.typeValue,
                searchKey: this.searchKey,
                size: this.pages.pageSize,
                current: this.pages.current
                current: this.pages.currentPage
            }
            this.getDisputeRecordList(params)
@@ -326,7 +326,7 @@
        // 搜索按钮
        searchBtn() {
            this.pages.current = 1
            this.pages.currentPage = 1
            this.getList()
            this.getStatistic()
        },
@@ -334,9 +334,9 @@
        // 清空按钮
        resetBtn() {
            this.searchKey = ''
            this.typeValue = null;
            this.handleResult = null;
            this.pages.current = 1
            this.typeValue = null
            this.handleResult = null
            this.pages.currentPage = 1
            this.getList()
            this.getStatistic()
            this.$EventBus.$emit('mapClearLayer', {
@@ -351,7 +351,7 @@
        // 分页处理
        handleCurrentChange(currentPage) {
            this.pages.current = currentPage
            this.pages.currentPage = currentPage
            this.getList()
            this.getStatistic()
        },