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; } }, };