KpiDrillParam.js 560 B

12345678910111213141516171819202122232425262728293031
  1. import {BaseClass} from "./BaseClass";
  2. /*
  3. * 默认搜索条件
  4. * */
  5. export class SearchForm extends BaseClass {
  6. constructor(extra={}) {
  7. super()
  8. // 分页
  9. this.pageSize = 10
  10. // 当前页
  11. this.page = 1
  12. // 排序字段
  13. this.sort = 'createTime'
  14. // 排序方式
  15. this.order = 'desc'
  16. this.update(extra)
  17. }
  18. setPage(res){
  19. if(res.code == 1){
  20. if(res.hasOwnProperty('page')){
  21. this.page = res.page
  22. }
  23. if(res.hasOwnProperty('pageSize')){
  24. this.pageSize = res.pageSize
  25. }
  26. }
  27. }
  28. };