weaver_trunk_cli/pc4mobx/prj/stores/util/pagination.js

13 lines
327 B
JavaScript
Raw Normal View History

2023-03-08 15:22:38 +08:00
import { observable, action } from "mobx";
export default class PaginationStore {
@observable pageSize = 10;
@observable current = 1;
@observable total = 0;
@action
onChange = (current = this.current, pageSize = this.pageSize) => {
this.current = current;
this.pageSize = pageSize;
}
}