index.js 995 Bytes
Newer Older
zenghuan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
import Api from "~/service/Api";
import moment from "moment";

export default {
    methods: {
        async handleSearch() {

        },
        async handleReset() {
            this.model.rcvp.sffx = "";
            this.model.rcvp.rcvdatsta = new Date();
            this.model.rcvp.rcvdatend = new Date();
            this.model.rcvp.sndbic = "";
            this.model.rcvp.rcvbic = "";
            this.model.rcvp.msgid = "";
            this.model.rcvp.sta = "";
            this.model.rcvp.subtyp = "";
            this.model.rcvp.bnsscn = "";
        },
        // pageSize改变
        handleSizeChange(val) {
            this.pagination.pageNum = 1;
            this.pagination.pageSize = val;
            this.handleSearch();
        },
        // 页码改变
        handleCurrentChange(val) {
            this.pagination.pageNum = val;
            this.handleSearch();
        },
        handleSelectionChange(val){
            this.multipleSelection = val;
        }
    },
};