You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
570 B

5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
  1. import Vue from 'vue'
  2. /* Layout */
  3. import Layout from '../views/layout/Layout'
  4. const _import = require('./_import_' + process.env.NODE_ENV)
  5. export default {
  6. routes: [
  7. {
  8. path: '/oa/zp',
  9. component: Layout,
  10. name: '招聘管理',
  11. iconCls: 'fa el-icon-menu',
  12. meta: {
  13. title: '招聘管理',
  14. icon: 'record'
  15. },
  16. hidden: true,
  17. // leaf: true,//只有一个节点
  18. children: [
  19. { path: 'ZpDemandApply', component: _import('oa/zp/ZpDemandApply'), name: 'ZpDemandApply', meta: { title: '招聘需求申请' }, hidden: true, },
  20. ]
  21. },
  22. ]
  23. }