123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- import {
- createRouter,
- createWebHistory,
- createWebHashHistory,
- } from "vue-router";
- import Home from "../pages/Home.vue";
- import store from "@/store";
- import { getCookie } from "@/utils/auth"; // getToken from cookie
- const routes = [
- { path: "/", redirect: "/safe/realwaring" },
- {
- path: "/",
- name: "Home",
- redirect: "/safe/realwaring",
- // redirect: '/firstPage',
- component: Home,
- children: [
- // {
- // icon: "el-icon-s-home",
- // path: "/firstPage",
- // name: "shouye",
- // meta: {
- // title: "系统首页",
- // },
- // component: () => import("../pages/firstPage.vue"),
- // },
- // {
- // icon: "el-icon-s-home",
- // path: "/dashboard",
- // name: "dashboard",
- // meta: {
- // title: "系统首页",
- // },
- // component: () =>
- // import(
- // /* webpackChunkName: "dashboard" */
- // "../pages/Dashboard.vue"
- // ),
- // },
- {
- icon: "iconfont iconfengji",
- path: "/safe",
- name: "safe",
- redirect: "/safe/realwaring",
- meta: {
- title: "安全运行",
- },
- component: () => import("../pages/routerView.vue"),
- children: [
- {
- path: "/safe/realwaring",
- name: "saferealwaring",
- isshow: "super_admin,common",
- meta: {
- title: "实时报警",
- keepAlive: true, //需要被缓存的组件
- },
- component: () =>
- import(
- /* webpackChunkName: "form" */
- "../pages/safe/realwaring.vue"
- ),
- },
- {
- path: "/safe/historywaring/:deviceId?/:alarmId?",
- name: "safehistorywaring",
- isshow: "super_admin,common",
- meta: {
- title: "报警记录",
- },
- component: () =>
- import(
- /* webpackChunkName: "form" */
- "../pages/safe/historywaring.vue"
- ),
- },
- {
- path: "/safe/dataSearch",
- name: "safedataSearch",
- isshow: "super_admin,common",
- meta: {
- title: "数据查询",
- },
- component: () =>
- import(
- /* webpackChunkName: "form" */
- "../pages/safe/datasearch.vue"
- ),
- },
- ],
- },
- {
- icon: "iconfont iconguzhangzhenduan",
- path: "/faultDiagnosis",
- name: "faultDiagnosis",
- isshow: "super_admin,common",
- redirect: "/faultDiagnosis/warning",
- meta: {
- title: "状态检修",
- permission: true,
- },
- component: () =>
- import(
- /* webpackChunkName: "permission" */
- "../pages/routerView.vue"
- ),
- children: [
- // {
- // icon: 'el-icon-s-home',
- // path: '/faultDiagnosis/record',
- // name: 'faultDiagnosissrecord',
- // meta: {
- // title: '预警记录',
- // },
- // component: () =>
- // import (
- // /* webpackChunkName: "form" */
- // '../pages/faultDiagnosis/record.vue'
- // ),
- // },
- // {
- // icon: "el-icon-s-home",
- // path: "/faultDiagnosis/warning",
- // name: "faultDiagnosiswarning",
- // meta: {
- // title: "预警分析",
- // },
- // component: () =>
- // import(
- // /* webpackChunkName: "form" */
- // "../pages/faultDiagnosis/warning.vue"
- // ),
- // },
- // {
- // icon: "el-icon-s-home",
- // path: "/faultDiagnosis/statistics",
- // name: "faultDiagnosisstatistics",
- // meta: {
- // title: "预警统计",
- // },
- // component: () =>
- // import(
- // /* webpackChunkName: "form" */
- // "../pages/faultDiagnosis/statistics.vue"
- // ),
- // },
- {
- icon: "el-icon-s-home",
- path: "/basedata/FanDataStatisticTable",
- name: "FanDataStatisticTable",
- isshow: "super_admin,common",
- meta: {
- title: "原始报警分析",
- keepAlive: true,
- },
- component: () =>
- import("../pages/baseData/FanDataStatisticTable.vue"),
- },
- // {
- // icon: "el-icon-s-home",
- // path: "/basedata/FanDataStatisticTable",
- // name: "FanDataStatisticTable",
- // meta: {
- // title: "原始报警统计",
- // keepAlive: true,
- // },
- // component: () =>
- // import("../pages/baseData/FanDataStatisticTable.vue"),
- // },
- // {
- // icon: "el-icon-s-home",
- // path: "/faultDiagnosis/report",
- // name: "faultDiagnosisreport",
- // meta: {
- // title: "隐患报告",
- // },
- // component: () => import("../pages/faultDiagnosis/report.vue"),
- // },
- // {
- // icon: "el-icon-s-home",
- // path: "/faultDiagnosis/dangerReportReview",
- // name: "dangerReportReview",
- // meta: {
- // title: "报告评审",
- // },
- // component: () =>
- // import("../pages/faultDiagnosis/dangerReportReview.vue"),
- // },
- // {
- // icon: "el-icon-s-home",
- // path: "/faultDiagnosis/patrolInspectionPlan",
- // name: "patrolInspectionPlan",
- // meta: {
- // title: "巡检计划",
- // },
- // component: () =>
- // import("../pages/faultDiagnosis/patrolInspectionPlan.vue"),
- // },
- // {
- // icon: "el-icon-s-home",
- // path: "/faultDiagnosis/Recommend",
- // name: "faultDiagnosisRecommend",
- // meta: {
- // title: "诊断报告",
- // },
- // component: () =>
- // import(
- // /* webpackChunkName: "form" */
- // "../pages/faultDiagnosis/Recommend.vue"
- // ),
- // },
- // {
- // icon: 'el-icon-s-home',
- // path: '/faultDiagnosis/fault',
- // name: 'faultDiagnosisfault',
- // meta: {
- // title: '故障诊断',
- // },
- // component: () =>
- // import (
- // /* webpackChunkName: "form" */
- // '../pages/faultDiagnosis/fault.vue'
- // ),
- // },
- // {
- // icon: 'el-icon-s-home',
- // path: '/faultDiagnosis/cluster',
- // name: 'faultDiagnosiscluster',
- // meta: {
- // title: '聚类分析',
- // },
- // component: () =>
- // import (
- // /* webpackChunkName: "form" */
- // '../pages/faultDiagnosis/cluster.vue'
- // ),
- // },
- ],
- },
- {
- icon: "iconfont iconbaojingpeizhi",
- path: "/alarmconfig",
- name: "alarmconfig",
- isshow: "super_admin,common",
- redirect: "/alarmconfig/station",
- meta: {
- title: "预警配置",
- },
- component: () =>
- import(
- /* webpackChunkName: "tabs" */
- "../pages/routerView.vue"
- ),
- children: [
- {
- icon: "el-icon-s-home",
- path: "/alarmConfig/custom",
- isshow: "super_admin,common",
- name: "alarmConfigcustom",
- meta: {
- title: "自定义预警",
- },
- component: () =>
- import(
- /* webpackChunkName: "form" */
- "../pages/alarmConfig/bj_custom/custom.vue"
- ),
- },
- {
- icon: "el-icon-s-home",
- path: "/alarmConfig/fan",
- isshow: "super_admin,common",
- name: "alarmConfigfan",
- meta: {
- title: "报警配置",
- },
- component: () =>
- import(
- /* webpackChunkName: "form" */
- "../pages/alarmConfig/bj_windturbine/windturbine.vue"
- ),
- },
- {
- icon: "el-icon-s-home",
- path: "/alarmConfig/Logs",
- isshow: "super_admin,common",
- name: "alarmConfigLogs",
- meta: {
- title: "规则修改日志",
- },
- component: () =>
- import(
- /* webpackChunkName: "form" */
- "../pages/alarmConfig/Logs.vue"
- ),
- },
- ],
- },
- {
- icon: "iconfont iconjichushuju",
- path: "/basedata",
- name: "basedata",
- isshow: "super_admin",
- redirect: "/basedata/station",
- meta: {
- title: "基础数据",
- },
- component: () =>
- import(
- /* webpackChunkName: "home" */
- "../pages/routerView.vue"
- ),
- children: [
- // {
- // icon: "el-icon-s-home",
- // path: "/basedata/device",
- // name: "basedatadevice",
- // meta: {
- // title: "设备模型",
- // keepAlive: true,
- // },
- // component: () =>
- // import(
- // /* webpackChunkName: "form" */
- // "../pages/baseData/device.vue"
- // ),
- // },
- {
- icon: "el-icon-s-home",
- path: "/basedata/dictionary",
- isshow: "super_admin",
- name: "basedatadictionary",
- meta: {
- title: "字典维护",
- keepAlive: true,
- },
- component: () =>
- import(
- /* webpackChunkName: "form" */
- "../pages/baseData/dictionary.vue"
- ),
- },
- ],
- },
- // {
- // icon: "el-icon-user-solid",
- // path: "/userManage",
- // name: "userManage",
- // isshow: "admin",
- // meta: {
- // title: "用户管理",
- // },
- // component: () => import("../pages/userManage/userManage.vue"),
- // },
- {
- icon: "iconfont iconxitongcaidan",
- path: "/systemManage",
- isshow: "super_admin",
- name: "systemManage",
- meta: {
- title: "系统管理",
- },
- component: () => import("../pages/systemManage/systemManage.vue"),
- },
- ],
- },
- {
- path: "/login",
- name: "Login",
- meta: {
- title: "登录",
- },
- component: () =>
- import(
- /* webpackChunkName: "login" */
- "../pages/Login.vue"
- ),
- },
- {
- icon: "iconfont iconxitongcaidan",
- path: "/check",
- // isshow: "admin",
- name: "check",
- meta: {
- title: "单点登录",
- },
- component: () => import("@/pages/check/check.vue"),
- },
- ];
- const constantRoutes = [];
- const router = createRouter({
- history: createWebHashHistory(""),
- routes,
- });
- export default router;
|