index.ts 1.78 KB
import { createRouter, createWebHashHistory } from 'vue-router'
import Fee from './modules/fee'
import Event from './modules/event'
import Repair from './modules/repair'
import Notify from './modules/notify'
import System from './modules/system'
import Permission from './modules/permission'
import Role from "./modules/role" 
import User from "./modules/user"
import Property from "./modules/property"
import Community from "./modules/community"
import OwnerManagement from "./modules/ownerManagement"
import Housekeeper from "./modules/housekeeper"
import Serviceman from "./modules/serviceman"
import Maintain from "./modules/maintain"
import Layout from '@/layout/enter.vue'
const routes: Array<any> = [
  {
    path: '/login',
    name: 'Login',
    component: () => import(/* webpackChunkName: "About" */ '@/views/user/login.vue')
  },
  {
    path: '/enter',
    name: 'Enter',
    component: () => import(/* webpackChunkName: "About" */ '@/views/user/cnlive_login.vue')
  },
  { path: '/', redirect: { path: '/dashboard' } },
  {
    path: '/',
    component: Layout,
    name: 'Dashboard',
    children: [{
      path: 'dashboard',
      name: 'dashboard',
      component: () => import(/* webpackChunkName: "About" */ '@/views/dashboard/index.vue'),
      meta: { title: '欢迎访问' }
    }]
  },
  Fee,
  Event,
  Repair,
  Notify,
  System,
  Permission,
  Role,
  User,
  Property,
  Community,
  OwnerManagement,
  Housekeeper,
  Serviceman,
  Maintain,
  {
    path: '/404',
    name: 'Error',
    component: () => import(/* webpackChunkName: "Error" */ '@/views/error/404.vue'),
    hidden: true
  },
  {
    path: '/:pathMatch(.*)*',
    redirect: '/404'
  },
  
]

const router = createRouter({
  scrollBehavior: () => ({ y: 0 }),
  history: createWebHashHistory(),
  routes
})

export default router