config.js 525 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. *
  3. *
  4. * 编辑页面配置文件
  5. *
  6. */
  7. // actions
  8. import MainAction from './actions/main';
  9. import FormAction from '../../actions/turnToFormPage';
  10. // 方法
  11. import {render, connect} from '../../../../../hrpub/common/frame';
  12. // 组件
  13. import Layout from '../../../../../hrpub/common/components/Layout';
  14. export default {
  15. actions: {
  16. mainAct: MainAction,
  17. formAct: FormAction,
  18. },
  19. methods: {
  20. render,
  21. connect
  22. },
  23. components: {
  24. Layout
  25. }
  26. }