“dzb”
2022-10-21 a598d935a61fea27312fc57becd80e23bf09f788
src/views/operate/message/myIndex/index.vue
@@ -107,7 +107,7 @@
                    <div class="pagination">
                        <el-pagination background :current-page="currentPage" layout="prev, pager, next"
                            :total="totalNum" :page-size="pageSize" @current-change="changeCurrentPage"
                            @prev-click="handlePrev" @next-click="handleNext">
                            >
                        </el-pagination>
                    </div>
                </div>
@@ -231,15 +231,15 @@
                data: {
                    body: "",
                    channelCode: "",
                    createUser: 0,
                    createUser: '',
                    current: currentPage,
                    head: "",
                    messageType: 0,
                    messageType: "",
                    pageSize: pageSize,
                    randomCode: "",
                    remark: "",
                    sendTime: "",
                    status: 0,
                    status: '',
                    targetFrom: "",
                    targetTo: ""
                }
@@ -334,18 +334,18 @@
        // 当前页改变触发事件
        changeCurrentPage(page) {
            this.currentPage = page;
            this.search();
            this.setTableData();
        },
        // 上一页点击事件
        handlePrev(page) {
            this.currentPage = page;
            this.search();
        },
        // 下一页点击事件
        handleNext(page) {
            this.currentPage = page;
            this.search();
        },
        // // 上一页点击事件
        // handlePrev(page) {
        //     this.currentPage = page;
        //     this.search();
        // },
        // // 下一页点击事件
        // handleNext(page) {
        //     this.currentPage = page;
        //     this.search();
        // },
        // 关闭弹窗
        handleClose(done) {
            done();