/** * @Description: 社会服务 * @version: * @Author: 北京四维空间数码科技有限公司-fcWang * @Date: 2022-11-11 14:25:27 * @LastEditors: 北京四维空间数码科技有限公司-fcWang * @LastEditTime: 2022-11-25 11:58:55 */ import Index from '@/views/shfw/Index.vue' export default { path: '/shfw', name: 'Shfw', component: Index, hidden: true, children: [{ path: "index", name: "ShfwHome", component: () => import('@/views/shfw/home/Index.vue') }, { path: "/", redirect: "/index" }, { path: "/xinwen", name: "Xinwen", component: () => import('@/views/shfw/xinwen/Index.vue') }, { path: "/gkgs", name: "Gkgs", component: () => import('@/views/shfw/gkgs/Index.vue') }, { path: "/yjzx", name: "Yjzx", component: () => import('@/views/shfw/yjzx/Index.vue') }, { path: "/gzjd", name: "Gzjd", component: () => import('@/views/shfw/gzjd/Index.vue') }, { path: "/xinwen/xq/:id", name: "XinwenXq", component: () => import('@/views/shfw/xinwen/xq.vue') }, { path: "/gkgs/xq/:id", name: "GkgsXq", component: () => import('@/views/shfw/gkgs/xq.vue') }, { path: "/yjzx/xq/:id", name: "YjzxXq", component: () => import('@/views/shfw/yjzx/xq.vue') }, { path: "/gzjd/xq/:id", name: "GzjdXq", component: () => import('@/views/shfw/gzjd/xq.vue') } ] }