index.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. import {
  2. createRouter,
  3. createWebHistory,
  4. createWebHashHistory,
  5. } from "vue-router";
  6. import Home from "../pages/Home.vue";
  7. import store from "@/store";
  8. import { getCookie } from "@/utils/auth"; // getToken from cookie
  9. const routes = [
  10. { path: "/", redirect: "/safe/realwaring" },
  11. {
  12. path: "/",
  13. name: "Home",
  14. redirect: "/safe/realwaring",
  15. // redirect: '/firstPage',
  16. component: Home,
  17. children: [
  18. // {
  19. // icon: "el-icon-s-home",
  20. // path: "/firstPage",
  21. // name: "shouye",
  22. // meta: {
  23. // title: "系统首页",
  24. // },
  25. // component: () => import("../pages/firstPage.vue"),
  26. // },
  27. // {
  28. // icon: "el-icon-s-home",
  29. // path: "/dashboard",
  30. // name: "dashboard",
  31. // meta: {
  32. // title: "系统首页",
  33. // },
  34. // component: () =>
  35. // import(
  36. // /* webpackChunkName: "dashboard" */
  37. // "../pages/Dashboard.vue"
  38. // ),
  39. // },
  40. {
  41. icon: "iconfont iconfengji",
  42. path: "/safe",
  43. name: "safe",
  44. redirect: "/safe/realwaring",
  45. meta: {
  46. title: "安全运行",
  47. },
  48. component: () => import("../pages/routerView.vue"),
  49. children: [
  50. {
  51. path: "/safe/realwaring",
  52. name: "saferealwaring",
  53. isshow: "super_admin,common",
  54. meta: {
  55. title: "实时报警",
  56. keepAlive: true, //需要被缓存的组件
  57. },
  58. component: () =>
  59. import(
  60. /* webpackChunkName: "form" */
  61. "../pages/safe/realwaring.vue"
  62. ),
  63. },
  64. {
  65. path: "/safe/historywaring/:deviceId?/:alarmId?",
  66. name: "safehistorywaring",
  67. isshow: "super_admin,common",
  68. meta: {
  69. title: "报警记录",
  70. },
  71. component: () =>
  72. import(
  73. /* webpackChunkName: "form" */
  74. "../pages/safe/historywaring.vue"
  75. ),
  76. },
  77. {
  78. path: "/safe/dataSearch",
  79. name: "safedataSearch",
  80. isshow: "super_admin,common",
  81. meta: {
  82. title: "数据查询",
  83. },
  84. component: () =>
  85. import(
  86. /* webpackChunkName: "form" */
  87. "../pages/safe/datasearch.vue"
  88. ),
  89. },
  90. ],
  91. },
  92. {
  93. icon: "iconfont iconguzhangzhenduan",
  94. path: "/faultDiagnosis",
  95. name: "faultDiagnosis",
  96. isshow: "super_admin,common",
  97. redirect: "/faultDiagnosis/warning",
  98. meta: {
  99. title: "状态检修",
  100. permission: true,
  101. },
  102. component: () =>
  103. import(
  104. /* webpackChunkName: "permission" */
  105. "../pages/routerView.vue"
  106. ),
  107. children: [
  108. // {
  109. // icon: 'el-icon-s-home',
  110. // path: '/faultDiagnosis/record',
  111. // name: 'faultDiagnosissrecord',
  112. // meta: {
  113. // title: '预警记录',
  114. // },
  115. // component: () =>
  116. // import (
  117. // /* webpackChunkName: "form" */
  118. // '../pages/faultDiagnosis/record.vue'
  119. // ),
  120. // },
  121. // {
  122. // icon: "el-icon-s-home",
  123. // path: "/faultDiagnosis/warning",
  124. // name: "faultDiagnosiswarning",
  125. // meta: {
  126. // title: "预警分析",
  127. // },
  128. // component: () =>
  129. // import(
  130. // /* webpackChunkName: "form" */
  131. // "../pages/faultDiagnosis/warning.vue"
  132. // ),
  133. // },
  134. // {
  135. // icon: "el-icon-s-home",
  136. // path: "/faultDiagnosis/statistics",
  137. // name: "faultDiagnosisstatistics",
  138. // meta: {
  139. // title: "预警统计",
  140. // },
  141. // component: () =>
  142. // import(
  143. // /* webpackChunkName: "form" */
  144. // "../pages/faultDiagnosis/statistics.vue"
  145. // ),
  146. // },
  147. {
  148. icon: "el-icon-s-home",
  149. path: "/basedata/FanDataStatisticTable",
  150. name: "FanDataStatisticTable",
  151. isshow: "super_admin,common",
  152. meta: {
  153. title: "原始报警分析",
  154. keepAlive: true,
  155. },
  156. component: () =>
  157. import("../pages/baseData/FanDataStatisticTable.vue"),
  158. },
  159. // {
  160. // icon: "el-icon-s-home",
  161. // path: "/basedata/FanDataStatisticTable",
  162. // name: "FanDataStatisticTable",
  163. // meta: {
  164. // title: "原始报警统计",
  165. // keepAlive: true,
  166. // },
  167. // component: () =>
  168. // import("../pages/baseData/FanDataStatisticTable.vue"),
  169. // },
  170. // {
  171. // icon: "el-icon-s-home",
  172. // path: "/faultDiagnosis/report",
  173. // name: "faultDiagnosisreport",
  174. // meta: {
  175. // title: "隐患报告",
  176. // },
  177. // component: () => import("../pages/faultDiagnosis/report.vue"),
  178. // },
  179. // {
  180. // icon: "el-icon-s-home",
  181. // path: "/faultDiagnosis/dangerReportReview",
  182. // name: "dangerReportReview",
  183. // meta: {
  184. // title: "报告评审",
  185. // },
  186. // component: () =>
  187. // import("../pages/faultDiagnosis/dangerReportReview.vue"),
  188. // },
  189. // {
  190. // icon: "el-icon-s-home",
  191. // path: "/faultDiagnosis/patrolInspectionPlan",
  192. // name: "patrolInspectionPlan",
  193. // meta: {
  194. // title: "巡检计划",
  195. // },
  196. // component: () =>
  197. // import("../pages/faultDiagnosis/patrolInspectionPlan.vue"),
  198. // },
  199. // {
  200. // icon: "el-icon-s-home",
  201. // path: "/faultDiagnosis/Recommend",
  202. // name: "faultDiagnosisRecommend",
  203. // meta: {
  204. // title: "诊断报告",
  205. // },
  206. // component: () =>
  207. // import(
  208. // /* webpackChunkName: "form" */
  209. // "../pages/faultDiagnosis/Recommend.vue"
  210. // ),
  211. // },
  212. // {
  213. // icon: 'el-icon-s-home',
  214. // path: '/faultDiagnosis/fault',
  215. // name: 'faultDiagnosisfault',
  216. // meta: {
  217. // title: '故障诊断',
  218. // },
  219. // component: () =>
  220. // import (
  221. // /* webpackChunkName: "form" */
  222. // '../pages/faultDiagnosis/fault.vue'
  223. // ),
  224. // },
  225. // {
  226. // icon: 'el-icon-s-home',
  227. // path: '/faultDiagnosis/cluster',
  228. // name: 'faultDiagnosiscluster',
  229. // meta: {
  230. // title: '聚类分析',
  231. // },
  232. // component: () =>
  233. // import (
  234. // /* webpackChunkName: "form" */
  235. // '../pages/faultDiagnosis/cluster.vue'
  236. // ),
  237. // },
  238. ],
  239. },
  240. {
  241. icon: "iconfont iconbaojingpeizhi",
  242. path: "/alarmconfig",
  243. name: "alarmconfig",
  244. isshow: "super_admin,common",
  245. redirect: "/alarmconfig/station",
  246. meta: {
  247. title: "预警配置",
  248. },
  249. component: () =>
  250. import(
  251. /* webpackChunkName: "tabs" */
  252. "../pages/routerView.vue"
  253. ),
  254. children: [
  255. {
  256. icon: "el-icon-s-home",
  257. path: "/alarmConfig/custom",
  258. isshow: "super_admin,common",
  259. name: "alarmConfigcustom",
  260. meta: {
  261. title: "自定义预警",
  262. },
  263. component: () =>
  264. import(
  265. /* webpackChunkName: "form" */
  266. "../pages/alarmConfig/bj_custom/custom.vue"
  267. ),
  268. },
  269. {
  270. icon: "el-icon-s-home",
  271. path: "/alarmConfig/fan",
  272. isshow: "super_admin,common",
  273. name: "alarmConfigfan",
  274. meta: {
  275. title: "报警配置",
  276. },
  277. component: () =>
  278. import(
  279. /* webpackChunkName: "form" */
  280. "../pages/alarmConfig/bj_windturbine/windturbine.vue"
  281. ),
  282. },
  283. {
  284. icon: "el-icon-s-home",
  285. path: "/alarmConfig/Logs",
  286. isshow: "super_admin,common",
  287. name: "alarmConfigLogs",
  288. meta: {
  289. title: "规则修改日志",
  290. },
  291. component: () =>
  292. import(
  293. /* webpackChunkName: "form" */
  294. "../pages/alarmConfig/Logs.vue"
  295. ),
  296. },
  297. ],
  298. },
  299. {
  300. icon: "iconfont iconjichushuju",
  301. path: "/basedata",
  302. name: "basedata",
  303. isshow: "super_admin",
  304. redirect: "/basedata/station",
  305. meta: {
  306. title: "基础数据",
  307. },
  308. component: () =>
  309. import(
  310. /* webpackChunkName: "home" */
  311. "../pages/routerView.vue"
  312. ),
  313. children: [
  314. // {
  315. // icon: "el-icon-s-home",
  316. // path: "/basedata/device",
  317. // name: "basedatadevice",
  318. // meta: {
  319. // title: "设备模型",
  320. // keepAlive: true,
  321. // },
  322. // component: () =>
  323. // import(
  324. // /* webpackChunkName: "form" */
  325. // "../pages/baseData/device.vue"
  326. // ),
  327. // },
  328. {
  329. icon: "el-icon-s-home",
  330. path: "/basedata/dictionary",
  331. isshow: "super_admin",
  332. name: "basedatadictionary",
  333. meta: {
  334. title: "字典维护",
  335. keepAlive: true,
  336. },
  337. component: () =>
  338. import(
  339. /* webpackChunkName: "form" */
  340. "../pages/baseData/dictionary.vue"
  341. ),
  342. },
  343. ],
  344. },
  345. // {
  346. // icon: "el-icon-user-solid",
  347. // path: "/userManage",
  348. // name: "userManage",
  349. // isshow: "admin",
  350. // meta: {
  351. // title: "用户管理",
  352. // },
  353. // component: () => import("../pages/userManage/userManage.vue"),
  354. // },
  355. {
  356. icon: "iconfont iconxitongcaidan",
  357. path: "/systemManage",
  358. isshow: "super_admin",
  359. name: "systemManage",
  360. meta: {
  361. title: "系统管理",
  362. },
  363. component: () => import("../pages/systemManage/systemManage.vue"),
  364. },
  365. ],
  366. },
  367. {
  368. path: "/login",
  369. name: "Login",
  370. meta: {
  371. title: "登录",
  372. },
  373. component: () =>
  374. import(
  375. /* webpackChunkName: "login" */
  376. "../pages/Login.vue"
  377. ),
  378. },
  379. {
  380. icon: "iconfont iconxitongcaidan",
  381. path: "/check",
  382. // isshow: "admin",
  383. name: "check",
  384. meta: {
  385. title: "单点登录",
  386. },
  387. component: () => import("@/pages/check/check.vue"),
  388. },
  389. ];
  390. const constantRoutes = [];
  391. const router = createRouter({
  392. history: createWebHashHistory(""),
  393. routes,
  394. });
  395. export default router;