import Api from "~/service/Api"; import Oftdtl from "../model" export default { methods: { async handleSearch() { }, async handleReset() { this.model = new Oftdtl().data; }, // 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; } }, };