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.

41 lines
1.7 KiB

5 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: '/mdp/arc/aq',
  9. component: Layout,
  10. name: '咨询中心',
  11. meta: {
  12. title: '咨询中心',
  13. icon: 'example'
  14. },
  15. iconCls: 'fa el-icon-menu',
  16. //leaf: true,//只有一个节点
  17. children: [
  18. { path: 'aqQuestion/AqQuestionMng', name: 'AqQuestionMng', meta: { title: '咨询信息管理' ,openTab:true,outUrl:'${curlDomain}/arc/'+process.env.VERSION+'/#/mdp/arc/aq/aqQuestion/AqQuestionMng',menu:false} },
  19. { path: 'aqQuestion/AqQuestionAdd', name: 'AqQuestionAdd', meta: { title: '发起咨询' ,openTab:true,outUrl:'${curlDomain}/arc/'+process.env.VERSION+'/#/mdp/arc/aq/aqQuestion/AqQuestionAdd',menu:false} },
  20. { path: 'aqFaq/AqFaqMng', name: 'AqFaqMng', meta: { title: '常见缺陷管理' ,openTab:true,outUrl:'${curlDomain}/arc/'+process.env.VERSION+'/#/mdp/arc/aq/aqFaq/AqFaqMng',menu:false}},
  21. ]
  22. },
  23. {
  24. path: '/mdp/arc/mate',
  25. component: Layout,
  26. name: '论坛',
  27. meta: {
  28. title: '论坛',
  29. icon: 'example'
  30. },
  31. iconCls: 'fa el-icon-menu',
  32. //leaf: true,//只有一个节点
  33. children: [
  34. { path: 'archive/ArchiveMng', name: 'ArchiveMng', meta: { title: '文章管理' ,openTab:true,outUrl:'${curlDomain}/arc/'+process.env.VERSION+'/#/mdp/arc/mate/archive/ArchiveMng',menu:false} },
  35. { path: 'archive/ArchiveAdd', name: 'ArchiveAdd', meta: { title: '发表文章' ,openTab:true,outUrl:'${curlDomain}/arc/'+process.env.VERSION+'/#/mdp/arc/mate/archive/ArchiveAdd',menu:false} },
  36. ]
  37. },
  38. ]
  39. }