index.ts 926 B

123456789101112131415161718192021222324252627
  1. import { PageListController } from "@queenjs/controllers";
  2. import { ModuleRoot } from "queenjs";
  3. import { designAction } from "./module/actions/design";
  4. import { initAction } from "./module/actions/init";
  5. import { sourceAction } from "./module/actions/source";
  6. import { helper } from "./module/helper";
  7. import { https } from "./module/http";
  8. import { sourceStore } from "./module/stores/source";
  9. export class CollocationModule extends ModuleRoot {
  10. config = this.setConfig({});
  11. https = this.createHttps([https]);
  12. store = this.createStore(sourceStore);
  13. helper = this.createHelper(helper);
  14. actions = this.createActions([initAction, sourceAction, designAction]);
  15. controls = {
  16. listCtrl: new PageListController(this.config?.httpConfig),
  17. };
  18. onReady() {
  19. this.controls.listCtrl.setCrudPrefix("/match/style");
  20. }
  21. }
  22. export const { initCollocation, useCollocation } =
  23. CollocationModule.hook("Collocation");