UNPKG
mutants-appfx
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
appfx module
mutants-appfx
/
src
/
controllers
/
ReportController.js
23 lines
(15 loc)
•
288 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import
BaseController
from
'./BaseController'
import
{ action }
from
'mobx'
;
export
default
class
ReportController
extends
BaseController
{
// 查询
@action
async
search
(
) { }
// 上一页
@action
async
pageUp
(
) { }
// 下一页
@action
async
pageDown
(
) { } }