config.js 724 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. *
  3. * container组件的配置文件
  4. *
  5. */
  6. // actions
  7. import MainAction from '../actions/main';
  8. import FormAction from '../actions/turnToFormPage';
  9. // 本节点组件
  10. import AddPage from '../components/AddPage';
  11. import FileManager from '../components/Uploader';
  12. // 公用组件
  13. import Layout from '../../../../hrpub/common/components/Layout';
  14. // 框架方法
  15. import {createPage, high} from 'nc-lightapp-front';
  16. import {render} from '../../../../hrpub/common/frame';
  17. export default {
  18. actions: {
  19. mainAct: MainAction,
  20. formAct: FormAction,
  21. },
  22. components: {
  23. AddPage,
  24. FileManager,
  25. Layout
  26. },
  27. methods: {
  28. createPage,
  29. high,
  30. render
  31. }
  32. }