15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
import { action, observable } from "mobx";
|
|
import { WeaForm, WeaTableNew } from "comsMobx";
|
|
|
|
const { TableStore } = WeaTableNew;
|
|
|
|
export class IntelligentStore {
|
|
@observable form = new WeaForm(); //流量使用记录查询form实例
|
|
@observable remindObjform = new WeaForm(); //流量使用记录查询form实例
|
|
@observable tableStore = new TableStore();
|
|
|
|
@action("...")
|
|
Init = () => {
|
|
};
|
|
}
|