shfw.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /**
  2. * @Description: 社会服务
  3. * @version:
  4. * @Author: 北京四维空间数码科技有限公司-fcWang
  5. * @Date: 2022-11-11 14:25:27
  6. * @LastEditors: 北京四维空间数码科技有限公司-fcWang
  7. * @LastEditTime: 2022-11-25 11:58:55
  8. */
  9. import Index from '@/views/shfw/Index.vue'
  10. export default {
  11. path: '/shfw',
  12. name: 'Shfw',
  13. component: Index,
  14. hidden: true,
  15. children: [{
  16. path: "index",
  17. name: "ShfwHome",
  18. component: () => import('@/views/shfw/home/Index.vue')
  19. },
  20. {
  21. path: "/",
  22. redirect: "/index"
  23. },
  24. {
  25. path: "/xinwen",
  26. name: "Xinwen",
  27. component: () => import('@/views/shfw/xinwen/Index.vue')
  28. },
  29. {
  30. path: "/gkgs",
  31. name: "Gkgs",
  32. component: () => import('@/views/shfw/gkgs/Index.vue')
  33. },
  34. {
  35. path: "/yjzx",
  36. name: "Yjzx",
  37. component: () => import('@/views/shfw/yjzx/Index.vue')
  38. },
  39. {
  40. path: "/gzjd",
  41. name: "Gzjd",
  42. component: () => import('@/views/shfw/gzjd/Index.vue')
  43. },
  44. {
  45. path: "/xinwen/xq/:id",
  46. name: "XinwenXq",
  47. component: () => import('@/views/shfw/xinwen/xq.vue')
  48. },
  49. {
  50. path: "/gkgs/xq/:id",
  51. name: "GkgsXq",
  52. component: () => import('@/views/shfw/gkgs/xq.vue')
  53. },
  54. {
  55. path: "/yjzx/xq/:id",
  56. name: "YjzxXq",
  57. component: () => import('@/views/shfw/yjzx/xq.vue')
  58. },
  59. {
  60. path: "/gzjd/xq/:id",
  61. name: "GzjdXq",
  62. component: () => import('@/views/shfw/gzjd/xq.vue')
  63. }
  64. ]
  65. }