index.js 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720
  1. import { createRouter, createWebHashHistory } from "vue-router";
  2. export const constantRoutes = [
  3. {
  4. path: "/login",
  5. name: "Login",
  6. component: () =>
  7. import(/* webpackChunkName: "Login" */ "../views/layout/login-page.vue"),
  8. },
  9. ];
  10. export const asyncRoutes = [
  11. { path: "/", redirect: "/home" },
  12. {
  13. path: "/home", // 驾驶舱
  14. name: "home",
  15. component: () => import("@/views/Home"),
  16. meta: {
  17. title: "首页",
  18. icon: "",
  19. permissions: ["jn_sy"],
  20. },
  21. },
  22. //全景监视
  23. {
  24. path: "/stateMonitor",
  25. redirect: "/stateMonitor/lightmatrix",
  26. component: () => import("@/views/stateMonitor"),
  27. name: "stateMonitor",
  28. meta: {
  29. title: "全景监视",
  30. icon: "",
  31. permissions: ["jn_stateMonitor"],
  32. },
  33. children: [
  34. {
  35. path: "factoryMonitor/windPowerPlant",
  36. redirect: { name: "windhome" },
  37. component: () =>
  38. import("@/views/stateMonitor/factoryMonitor/windPowerPlant"),
  39. name: "windPowerPlant",
  40. meta: {
  41. title: "风电场站",
  42. icon: "svg-fengdian",
  43. permissions: ["jn_fdcz"],
  44. },
  45. showChild: true,
  46. children: [
  47. {
  48. path: "windhome",
  49. component: () =>
  50. import(
  51. "@/views/stateMonitor/factoryMonitor/windPowerPlant/windhome"
  52. ),
  53. name: "windhome",
  54. meta: {
  55. title: "场站监视",
  56. icon: "svg-station-surveillance",
  57. permissions: ["jn_fdcz_czjs"],
  58. },
  59. },
  60. {
  61. path: "DataTarget",
  62. component: () =>
  63. import(
  64. "@/views/stateMonitor/factoryMonitor/windPowerPlant/DataTarget"
  65. ),
  66. name: "DataTarget",
  67. meta: {
  68. title: "数据指标",
  69. icon: "svg-s指标列表",
  70. permissions: ["jn_fdcz_sjzb"],
  71. },
  72. },
  73. {
  74. path: "matrixMonitor",
  75. component: () =>
  76. import(
  77. "@/views/stateMonitor/factoryMonitor/windPowerPlant/matrixMonitor"
  78. ),
  79. name: "matrixMonitor",
  80. meta: {
  81. title: "矩阵监视",
  82. icon: "svg-matrix",
  83. permissions: ["jn_fdcz_jzjs"],
  84. },
  85. },
  86. {
  87. path: "draughtFan",
  88. component: () =>
  89. import(
  90. "@/views/stateMonitor/factoryMonitor/windPowerPlant/draughtFan"
  91. ),
  92. name: "draughtFan",
  93. meta: {
  94. title: "风机设备",
  95. icon: "svg-wind-site",
  96. permissions: ["jn_fdcz_fjsb"],
  97. },
  98. },
  99. {
  100. path: "boosterStation",
  101. component: () =>
  102. import(
  103. "@/views/stateMonitor/factoryMonitor/windPowerPlant/boosterStation"
  104. ),
  105. name: "boosterStation",
  106. meta: {
  107. title: "升压站",
  108. icon: "svg-s升压站",
  109. permissions: ["jn_fdcz_syz"],
  110. },
  111. },
  112. {
  113. path: "windPower",
  114. component: () =>
  115. import(
  116. "@/views/stateMonitor/factoryMonitor/windPowerPlant/windPower"
  117. ),
  118. name: "windPower",
  119. meta: {
  120. title: "测风塔",
  121. permissions: ["jn_fdcz_cft"],
  122. icon: "svg-s测风塔",
  123. },
  124. },
  125. {
  126. path: "geomorphologicMap",
  127. component: () =>
  128. import(
  129. "@/views/stateMonitor/factoryMonitor/windPowerPlant/geomorphologicMap"
  130. ),
  131. name: "geomorphologicMap",
  132. meta: {
  133. title: "地貌图",
  134. permissions: ["jn_fdcz_dmt"],
  135. icon: "svg-s地图",
  136. },
  137. },
  138. ],
  139. },
  140. {
  141. path: "factoryMonitor/photovoltaic",
  142. redirect: { name: "lighthome" },
  143. component: () =>
  144. import("@/views/stateMonitor/factoryMonitor/photovoltaic"),
  145. name: "photovoltaic",
  146. meta: {
  147. title: "光伏场站",
  148. icon: "svg-guangfu",
  149. permissions: ["jn_gfcz"],
  150. },
  151. showChild: true,
  152. children: [
  153. {
  154. path: "lighthome",
  155. component: () =>
  156. import(
  157. "@/views/stateMonitor/factoryMonitor/photovoltaic/lighthome"
  158. ),
  159. name: "lighthome",
  160. meta: {
  161. title: "场站监视",
  162. icon: "svg-station-surveillance",
  163. permissions: ["jn_gfcz_czjs"],
  164. },
  165. },
  166. {
  167. path: "lightDataTarget",
  168. component: () =>
  169. import(
  170. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightDataTarget"
  171. ),
  172. name: "lightDataTarget",
  173. meta: {
  174. title: "数据指标",
  175. permissions: ["jn_gfcz_sjzb"],
  176. icon: "svg-s指标列表",
  177. },
  178. },
  179. {
  180. path: "lightMatrixMonitor",
  181. component: () =>
  182. import(
  183. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrixMonitor"
  184. ),
  185. name: "lightMatrixMonitor",
  186. meta: {
  187. title: "矩阵监视",
  188. permissions: ["jn_gfcz_jzjs"],
  189. icon: "svg-matrix",
  190. },
  191. },
  192. {
  193. path: "lightMatrix",
  194. component: () =>
  195. import(
  196. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrix"
  197. ),
  198. name: "lightMatrix",
  199. meta: {
  200. title: "分类矩阵",
  201. permissions: ["jn_gfcz_fljz"],
  202. icon: "svg-fljz",
  203. },
  204. },
  205. {
  206. path: "photovoltaicFacility",
  207. component: () =>
  208. import(
  209. "@/views/stateMonitor/factoryMonitor/photovoltaic/photovoltaicFacility"
  210. ),
  211. name: "photovoltaicFacility",
  212. meta: {
  213. title: "光伏设备",
  214. permissions: ["jn_gfcz_gfsb"],
  215. icon: "svg-photovoltaic",
  216. },
  217. },
  218. {
  219. path: "lightBoosterStation",
  220. component: () =>
  221. import(
  222. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightBoosterStation"
  223. ),
  224. name: "lightBoosterStation",
  225. meta: {
  226. title: "升压站",
  227. permissions: ["jn_gfcz_syz"],
  228. icon: "svg-s升压站",
  229. },
  230. },
  231. {
  232. path: "lightGeomorphologicMap",
  233. component: () =>
  234. import(
  235. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightGeomorphologicMap"
  236. ),
  237. name: "lightGeomorphologicMap",
  238. meta: {
  239. title: "地貌图",
  240. permissions: ["jn_gfcz_dmt"],
  241. icon: "svg-s地图",
  242. },
  243. },
  244. ],
  245. },
  246. {
  247. path: "lightmatrix", // 基础矩阵
  248. name: "LightMatrix",
  249. component: () => import("@/views/stateMonitor/LightMatrix"),
  250. meta: {
  251. title: "基础矩阵",
  252. icon: "svg-matrix",
  253. permissions: ["jn_jcjz"],
  254. },
  255. },
  256. {
  257. path: "detailmatrix", // 明细矩阵
  258. name: "DetailMatrix",
  259. component: () => import("@/views/stateMonitor/DetailMatrix"),
  260. meta: {
  261. title: "明细矩阵",
  262. icon: "svg-mx-matrix",
  263. permissions: ["jn_mxjz"],
  264. },
  265. },
  266. {
  267. path: "syzmatrix", // 升压站矩阵
  268. name: "SYZMatrix",
  269. component: () => import("@/views/stateMonitor/focus/syzDetails.vue"),
  270. meta: {
  271. title: "升压站矩阵",
  272. icon: "svg-syz",
  273. permissions: ["jn_syzjz"],
  274. },
  275. },
  276. {
  277. path: "powerPredictMatrix", // 功率预测矩阵
  278. name: "PowerPredictMatrix",
  279. component: () => import("@/views/stateMonitor/powerPredictMatrix"),
  280. meta: {
  281. title: "功率预测矩阵",
  282. icon: "svg-power-predict",
  283. permissions: ["jn_glyc"],
  284. },
  285. },
  286. {
  287. path: "zhzb", // 综合指标统计
  288. name: "zhzb",
  289. component: () =>
  290. import(
  291. /* webpackChunkName: "status" */ "@/views/stateMonitor/zhzb/zhzb.vue"
  292. ),
  293. meta: {
  294. title: "综合指标",
  295. icon: "svg-自定制报表管理",
  296. permissions: ["jn_zhzb"],
  297. },
  298. },
  299. {
  300. path: "factoryMonitor",
  301. redirect: "factoryMonitor/windPowerPlant",
  302. component: () => import("@/views/stateMonitor/factoryMonitor"),
  303. name: "factoryMonitor",
  304. meta: {
  305. title: "厂站监视",
  306. icon: "svg-single-station-surveillance",
  307. permissions: ["jn_czjs"],
  308. },
  309. hidden: true,
  310. children: [
  311. {
  312. path: "windPowerPlant",
  313. redirect: { name: "windhome" },
  314. component: () =>
  315. import("@/views/stateMonitor/factoryMonitor/windPowerPlant"),
  316. name: "windPowerPlant",
  317. meta: {
  318. title: "风电场站",
  319. icon: "",
  320. permissions: ["jn_fdcz"],
  321. },
  322. children: [
  323. {
  324. path: "windhome",
  325. component: () =>
  326. import(
  327. "@/views/stateMonitor/factoryMonitor/windPowerPlant/windhome"
  328. ),
  329. name: "windhome",
  330. meta: {
  331. title: "场站监视",
  332. icon: "svg-station-surveillance",
  333. permissions: ["jn_fdcz_czjs"],
  334. },
  335. },
  336. {
  337. path: "DataTarget",
  338. component: () =>
  339. import(
  340. "@/views/stateMonitor/factoryMonitor/windPowerPlant/DataTarget"
  341. ),
  342. name: "DataTarget",
  343. meta: {
  344. title: "数据指标",
  345. icon: "svg-s指标列表",
  346. permissions: ["jn_fdcz_sjzb"],
  347. },
  348. },
  349. {
  350. path: "matrixMonitor",
  351. component: () =>
  352. import(
  353. "@/views/stateMonitor/factoryMonitor/windPowerPlant/matrixMonitor"
  354. ),
  355. name: "matrixMonitor",
  356. meta: {
  357. title: "矩阵监视",
  358. icon: "svg-matrix",
  359. permissions: ["jn_fdcz_jzjs"],
  360. },
  361. },
  362. {
  363. path: "draughtFan",
  364. component: () =>
  365. import(
  366. "@/views/stateMonitor/factoryMonitor/windPowerPlant/draughtFan"
  367. ),
  368. name: "draughtFan",
  369. meta: {
  370. title: "风机设备",
  371. icon: "svg-wind-site",
  372. permissions: ["jn_fdcz_fjsb"],
  373. },
  374. },
  375. {
  376. path: "boosterStation",
  377. component: () =>
  378. import(
  379. "@/views/stateMonitor/factoryMonitor/windPowerPlant/boosterStation"
  380. ),
  381. name: "boosterStation",
  382. meta: {
  383. title: "升压站",
  384. icon: "svg-s升压站",
  385. permissions: ["jn_fdcz_syz"],
  386. },
  387. },
  388. {
  389. path: "windPower",
  390. component: () =>
  391. import(
  392. "@/views/stateMonitor/factoryMonitor/windPowerPlant/windPower"
  393. ),
  394. name: "windPower",
  395. meta: {
  396. title: "测风塔",
  397. permissions: ["jn_fdcz_cft"],
  398. icon: "svg-s测风塔",
  399. },
  400. },
  401. {
  402. path: "geomorphologicMap",
  403. component: () =>
  404. import(
  405. "@/views/stateMonitor/factoryMonitor/windPowerPlant/geomorphologicMap"
  406. ),
  407. name: "geomorphologicMap",
  408. meta: {
  409. title: "地貌图",
  410. permissions: ["jn_fdcz_dmt"],
  411. icon: "svg-s地图",
  412. },
  413. },
  414. ],
  415. },
  416. {
  417. path: "photovoltaic",
  418. redirect: { name: "lighthome" },
  419. component: () =>
  420. import("@/views/stateMonitor/factoryMonitor/photovoltaic"),
  421. name: "photovoltaic",
  422. meta: {
  423. title: "光伏场站",
  424. icon: "",
  425. permissions: ["jn_gfcz"],
  426. },
  427. children: [
  428. {
  429. path: "lighthome",
  430. component: () =>
  431. import(
  432. "@/views/stateMonitor/factoryMonitor/photovoltaic/lighthome"
  433. ),
  434. name: "lighthome",
  435. meta: {
  436. title: "场站监视",
  437. icon: "svg-station-surveillance",
  438. permissions: ["jn_gfcz_czjs"],
  439. },
  440. },
  441. {
  442. path: "lightDataTarget",
  443. component: () =>
  444. import(
  445. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightDataTarget"
  446. ),
  447. name: "lightDataTarget",
  448. meta: {
  449. title: "数据指标",
  450. permissions: ["jn_gfcz_sjzb"],
  451. icon: "svg-s指标列表",
  452. },
  453. },
  454. {
  455. path: "lightMatrixMonitor",
  456. component: () =>
  457. import(
  458. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrixMonitor"
  459. ),
  460. name: "lightMatrixMonitor",
  461. meta: {
  462. title: "矩阵监视",
  463. permissions: ["jn_gfcz_jzjs"],
  464. icon: "svg-matrix",
  465. },
  466. },
  467. {
  468. path: "lightMatrix",
  469. component: () =>
  470. import(
  471. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrix"
  472. ),
  473. name: "lightMatrix",
  474. meta: {
  475. title: "分类矩阵",
  476. permissions: ["jn_gfcz_fljz"],
  477. icon: "svg-fljz",
  478. },
  479. },
  480. {
  481. path: "photovoltaicFacility",
  482. component: () =>
  483. import(
  484. "@/views/stateMonitor/factoryMonitor/photovoltaic/photovoltaicFacility"
  485. ),
  486. name: "photovoltaicFacility",
  487. meta: {
  488. title: "光伏设备",
  489. permissions: ["jn_gfcz_gfsb"],
  490. icon: "svg-photovoltaic",
  491. },
  492. },
  493. {
  494. path: "lightBoosterStation",
  495. component: () =>
  496. import(
  497. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightBoosterStation"
  498. ),
  499. name: "lightBoosterStation",
  500. meta: {
  501. title: "升压站",
  502. permissions: ["jn_gfcz_syz"],
  503. icon: "svg-s升压站",
  504. },
  505. },
  506. {
  507. path: "lightGeomorphologicMap",
  508. component: () =>
  509. import(
  510. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightGeomorphologicMap"
  511. ),
  512. name: "lightGeomorphologicMap",
  513. meta: {
  514. title: "地貌图",
  515. permissions: ["jn_gfcz_dmt"],
  516. icon: "svg-s地图",
  517. },
  518. },
  519. ],
  520. },
  521. ],
  522. },
  523. {
  524. path: "alarmCenter", // 报警列表
  525. name: "alarmCenter",
  526. component: () => import("@/views/stateMonitor/alarmCenter/commonAlarm"),
  527. meta: {
  528. title: "报警列表",
  529. icon: "svg-alarm-center",
  530. permissions: ["jn_alarm"],
  531. },
  532. },
  533. /*{
  534. path: "agcmatrix", // AGC矩阵
  535. name: "AGCMatrix",
  536. component: () => import("@/views/stateMonitor/focus/agcDetails"),
  537. meta: {
  538. title: "AGC矩阵",
  539. icon: "svg-mx-matrix",
  540. permissions: ["jn_mxjz"],
  541. },
  542. }*/
  543. ],
  544. },
  545. {
  546. path: "/integratedAlarm",
  547. component: () => import("@/views/IntegratedAlarm"),
  548. name: "integratedAlarm",
  549. meta: {
  550. title: "综合报警",
  551. icon: "",
  552. permissions: ["jn_integratedAlarm"],
  553. },
  554. children: [
  555. {
  556. path: "safe", // 综合报警
  557. name: "safe",
  558. component: () => import("@/views/IntegratedAlarm/safe"),
  559. meta: {
  560. title: "综合报警",
  561. icon: "svg-zhbj",
  562. permissions: ["jn_safe"],
  563. },
  564. children: [
  565. {
  566. path: "realwarning", // 综合报警
  567. name: "realwarning",
  568. component: () => import("@/views/IntegratedAlarm/safe/realWarning"),
  569. meta: {
  570. title: "实时报警",
  571. icon: "",
  572. permissions: ["jn_safe_ssbj"],
  573. },
  574. },
  575. {
  576. path: "historyWarning", // 报警查询
  577. name: "historyWarning",
  578. component: () =>
  579. import("@/views/IntegratedAlarm/safe/historyWarning"),
  580. meta: {
  581. title: "报警查询",
  582. icon: "",
  583. permissions: ["jn_safe_bjcx"],
  584. },
  585. },
  586. {
  587. path: "customWarning", // 预警查询
  588. name: "customWarning",
  589. component: () =>
  590. import("@/views/IntegratedAlarm/safe/customWarning"),
  591. meta: {
  592. title: "预警查询",
  593. icon: "",
  594. permissions: ["jn_safe_yjcx"],
  595. },
  596. },
  597. {
  598. path: "stopQuery", //停机查询
  599. name: "stopQuery",
  600. component: () => import("@/views/IntegratedAlarm/safe/stopQuery"),
  601. meta: {
  602. title: "停机查询",
  603. icon: "",
  604. permissions: ["jn_safe_tjcx"],
  605. },
  606. },
  607. {
  608. path: "dataSearch", //数据查询
  609. name: "dataSearch",
  610. component: () => import("@/views/IntegratedAlarm/safe/dataSearch"),
  611. meta: {
  612. title: "数据查询",
  613. icon: "",
  614. permissions: ["jn_safe_sjcx"],
  615. },
  616. },
  617. ],
  618. },
  619. {
  620. path: "reliability", // 可靠性分析
  621. name: "reliability",
  622. component: () => import("@/views/IntegratedAlarm/reliability"),
  623. meta: {
  624. title: "可靠性分析",
  625. icon: "svg-kkxfx",
  626. permissions: ["jn_reliability"],
  627. },
  628. children: [
  629. {
  630. path: "customAnalyse", // 预警分析
  631. name: "customAnalyse",
  632. component: () =>
  633. import("@/views/IntegratedAlarm/reliability/customAnalyse"),
  634. meta: {
  635. title: "预警分析",
  636. icon: "",
  637. permissions: ["jn_reliability_yjfx"],
  638. },
  639. },
  640. {
  641. path: "historyAnalyse", // 报警分析
  642. name: "historyAnalyse",
  643. component: () =>
  644. import("@/views/IntegratedAlarm/reliability/historyAnalyse"),
  645. meta: {
  646. title: "报警分析",
  647. icon: "",
  648. permissions: ["jn_reliability_bjfx"],
  649. },
  650. },
  651. ],
  652. },
  653. {
  654. path: "alarmConfig", // 报警配置
  655. name: "alarmConfig",
  656. component: () => import("@/views/IntegratedAlarm/alarmConfig"),
  657. meta: {
  658. title: "报警配置",
  659. icon: "svg-bjpz",
  660. permissions: ["jn_alarmConfig"],
  661. },
  662. children: [
  663. {
  664. path: "customConfig", // 预警配置
  665. name: "customConfig",
  666. component: () =>
  667. import("@/views/IntegratedAlarm/alarmConfig/customConfig"),
  668. meta: {
  669. title: "预警配置",
  670. icon: "",
  671. permissions: ["jn_safe_ssbj"],
  672. },
  673. },
  674. {
  675. path: "historyConfig", // 报警配置
  676. name: "historyConfig",
  677. component: () =>
  678. import("@/views/IntegratedAlarm/alarmConfig/historyConfig"),
  679. meta: {
  680. title: "报警配置",
  681. icon: "",
  682. permissions: ["jn_alarmConfig_bjpz"],
  683. },
  684. },
  685. {
  686. path: "logs", // 规则修改日志
  687. name: "logs",
  688. component: () => import("@/views/IntegratedAlarm/alarmConfig/logs"),
  689. meta: {
  690. title: "规则修改日志",
  691. icon: "",
  692. permissions: ["jn_alarmConfig_bjpz"],
  693. },
  694. },
  695. ],
  696. },
  697. {
  698. path: "deviceConfig", // 设备模型配置
  699. name: "deviceConfig",
  700. component: () => import("@/views/IntegratedAlarm/deviceConfig"),
  701. meta: {
  702. title: "设备模型配置",
  703. icon: "svg-bjpz",
  704. permissions: ["jn_alarmConfig"],
  705. },
  706. },
  707. ],
  708. },
  709. //经济运行
  710. {
  711. path: "/economicsOperation",
  712. redirect:
  713. "/economicsOperation/benchmarkingManagement/performanceRankingList",
  714. component: () =>
  715. import("@/views/economicsOperation/benchmarkingManagement"),
  716. name: "economicsOperation",
  717. meta: {
  718. title: "经济运行",
  719. icon: "",
  720. permissions: ["jn_economicsOperation"],
  721. },
  722. children: [
  723. //对标管理
  724. {
  725. path: "benchmarkingManagement",
  726. redirect: "benchmarkingManagement/performanceRankingList",
  727. component: () =>
  728. import("@/views/economicsOperation/benchmarkingManagement"),
  729. name: "benchmarkingManagement",
  730. meta: {
  731. title: "对标管理",
  732. icon: "svg-dbgl",
  733. permissions: ["jn_dbgl"],
  734. },
  735. children: [
  736. {
  737. path: "performanceRankingList",
  738. component: () =>
  739. import(
  740. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/index.vue"
  741. ),
  742. name: "performanceRankingList",
  743. meta: {
  744. title: "绩效榜",
  745. icon: "",
  746. permissions: ["jn_dbgl_jxb"],
  747. },
  748. },
  749. {
  750. path: "decision1Mx", //风机绩效榜明细
  751. name: "decision1Mx",
  752. component: () =>
  753. import(
  754. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/decision1Mx.vue"
  755. ),
  756. meta: {
  757. title: "风机绩效榜明细",
  758. icon: "",
  759. permissions: ["jn_dbgl_jxb"],
  760. },
  761. },
  762. {
  763. path: "loseRate",
  764. component: () =>
  765. import(
  766. "@/views/economicsOperation/benchmarkingManagement/loseRate/index.vue"
  767. ),
  768. name: "loseRate",
  769. meta: {
  770. title: "五项损失率",
  771. icon: "",
  772. permissions: ["jn_dbgl_wxssl"],
  773. },
  774. },
  775. // {
  776. // path: "companyBenchmarking",
  777. // component: () =>
  778. // import(
  779. // "@/views/economicsOperation/benchmarkingManagement/companyBenchmarking"
  780. // ),
  781. // name: "companyBenchmarking",
  782. // meta: {
  783. // title: "公司对标",
  784. // icon: "",
  785. // permissions: ["jn_dbgl_gsdb"],
  786. // },
  787. // },
  788. {
  789. path: "siteBenchmarking",
  790. component: () =>
  791. import(
  792. "@/views/economicsOperation/benchmarkingManagement/siteBenchmarking"
  793. ),
  794. name: "siteBenchmarking",
  795. meta: {
  796. title: "场内对标",
  797. icon: "",
  798. permissions: ["jn_dbgl_cndb"],
  799. },
  800. },
  801. {
  802. path: "intervalBenchmarking",
  803. component: () =>
  804. import(
  805. "@/views/economicsOperation/benchmarkingManagement/intervalBenchmarking"
  806. ),
  807. name: "intervalBenchmarking",
  808. meta: {
  809. title: "场际对标",
  810. icon: "",
  811. permissions: ["jn_dbgl_cjdb"],
  812. },
  813. },
  814. // {
  815. // path: "valueBenchmarking",
  816. // component: () =>
  817. // import(
  818. // "@/views/economicsOperation/benchmarkingManagement/valueBenchmarking"
  819. // ),
  820. // name: "valueBenchmarking",
  821. // meta: {
  822. // title: "值际对标",
  823. // icon: "",
  824. // },
  825. // },
  826. {
  827. path: "projectBenchmarking",
  828. component: () =>
  829. import(
  830. "@/views/economicsOperation/benchmarkingManagement/projectBenchmarking"
  831. ),
  832. name: "projectBenchmarking",
  833. meta: {
  834. title: "项目对标",
  835. icon: "",
  836. permissions: ["jn_dbgl_xmdb"],
  837. },
  838. },
  839. {
  840. path: "wiringBenchmarking",
  841. component: () =>
  842. import(
  843. "@/views/economicsOperation/benchmarkingManagement/wiringBenchmarking"
  844. ),
  845. name: "wiringBenchmarking",
  846. meta: {
  847. title: "线路对标",
  848. icon: "",
  849. permissions: ["jn_dbgl_xldb"],
  850. },
  851. },
  852. // {
  853. // path: "singleMachineBenchmarking",
  854. // component: () =>
  855. // import(
  856. // "@/views/economicsOperation/benchmarkingManagement/singleMachineBenchmarking"
  857. // ),
  858. // name: "singleMachineBenchmarking",
  859. // meta: {
  860. // title: "单机对标",
  861. // icon: "",
  862. // },
  863. // },
  864. ],
  865. },
  866. //专题分析
  867. {
  868. path: "thematicAnalysis",
  869. redirect: "thematicAnalysis/comprehensiveAnalysis",
  870. component: () => import("@/views/economicsOperation/thematicAnalysis"),
  871. name: "thematicAnalysis",
  872. meta: {
  873. title: "专题分析",
  874. icon: "svg-ztfx",
  875. permissions: ["jn_ztfx"],
  876. },
  877. children: [
  878. {
  879. path: "comprehensiveAnalysis",
  880. component: () =>
  881. import(
  882. "@/views/economicsOperation/thematicAnalysis/comprehensiveAnalysis"
  883. ),
  884. name: "comprehensiveAnalysis",
  885. meta: {
  886. title: "综合分析",
  887. icon: "",
  888. permissions: ["jn_ztfx_zhfx"],
  889. },
  890. },
  891. {
  892. path: "windEnergy",
  893. component: () =>
  894. import("@/views/economicsOperation/thematicAnalysis/windEnergy"),
  895. name: "windEnergy",
  896. meta: {
  897. title: "风光能利用率",
  898. icon: "",
  899. permissions: ["jn_ztfx_fnlyl"],
  900. },
  901. },
  902. {
  903. path: "failure",
  904. component: () =>
  905. import("@/views/economicsOperation/thematicAnalysis/failure"),
  906. name: "failure",
  907. meta: {
  908. title: "五项损失率",
  909. icon: "",
  910. permissions: ["jn_ztfx_wxssl"],
  911. },
  912. },
  913. {
  914. path: "MTBF",
  915. component: () =>
  916. import("@/views/economicsOperation/thematicAnalysis/MTBF"),
  917. name: "MTBF",
  918. meta: {
  919. title: "可靠性分析",
  920. icon: "",
  921. permissions: ["jn_ztfx_kkxfx"],
  922. },
  923. },
  924. {
  925. path: "generation",
  926. component: () =>
  927. import("@/views/economicsOperation/thematicAnalysis/generation"),
  928. name: "generation",
  929. meta: {
  930. title: "发电量分析",
  931. icon: "",
  932. permissions: ["jn_ztfx_dlfx"],
  933. },
  934. },
  935. ],
  936. },
  937. //场站分析
  938. {
  939. path: "stationAnalyse",
  940. component: () => import("@/views/economicsOperation/stationAnalyse"),
  941. name: "StationAnalyse",
  942. meta: {
  943. title: "场站分析",
  944. icon: "svg-fddl",
  945. permissions: ["jn_czfx"],
  946. },
  947. children: [
  948. {
  949. path: "electricAnalyse",
  950. component: () =>
  951. import(
  952. "@/views/economicsOperation/stationAnalyse/electricAnalyse"
  953. ),
  954. name: "ElectricAnalyse",
  955. meta: {
  956. title: "发电量分析",
  957. icon: "",
  958. permissions: ["jn_czfx_fdlfx"],
  959. },
  960. },
  961. {
  962. path: "stationElectricAnalyse",
  963. component: () =>
  964. import(
  965. "@/views/economicsOperation/stationAnalyse/stationElectricAnalyse"
  966. ),
  967. name: "StationElectricAnalyse",
  968. meta: {
  969. title: "综合场用电量分析",
  970. icon: "",
  971. permissions: ["jn_czfx_zhcydlfx"],
  972. },
  973. },
  974. {
  975. path: "WindAndPhotovoltaic",
  976. component: () =>
  977. import(
  978. "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic"
  979. ),
  980. name: "WindAndPhotovoltaic",
  981. meta: {
  982. title: "风光资源分析",
  983. icon: "",
  984. permissions: ["jn_czfx_fgzyfx"],
  985. },
  986. },
  987. ],
  988. },
  989. //风电分析
  990. {
  991. path: "windAnalyse",
  992. component: () => import("@/views/economicsOperation/windAnalyse"),
  993. name: "WindAnalyse",
  994. meta: {
  995. title: "风电分析",
  996. icon: "svg-fdfx",
  997. permissions: ["jn_fdfx"],
  998. },
  999. children: [
  1000. {
  1001. path: "stateTransition",
  1002. component: () =>
  1003. import(
  1004. "@/views/economicsOperation/windAnalyse/stateTransition/index.vue"
  1005. ),
  1006. name: "stateTransition",
  1007. meta: {
  1008. title: "状态时间分析",
  1009. icon: "",
  1010. permissions: ["jn_fdfx_ztzhfx"],
  1011. },
  1012. },
  1013. {
  1014. path: "timeTransition",
  1015. component: () =>
  1016. import(
  1017. "@/views/economicsOperation/windAnalyse/timeTransition/index.vue"
  1018. ),
  1019. name: "timeTransition",
  1020. meta: {
  1021. title: "状态转换分析",
  1022. icon: "",
  1023. permissions: ["jn_fdfx_ztsjfx"],
  1024. },
  1025. },
  1026. {
  1027. path: "powerAnalyse",
  1028. component: () =>
  1029. import("@/views/economicsOperation/windAnalyse/powerCurve"),
  1030. name: "PowerCurve",
  1031. meta: {
  1032. title: "功率曲线拟合",
  1033. icon: "",
  1034. permissions: ["jn_fdfx_glqxnh"],
  1035. },
  1036. },
  1037. {
  1038. path: "powerSearch",
  1039. component: () =>
  1040. import("@/views/economicsOperation/windAnalyse/powerSearch"),
  1041. name: "PowerSearch",
  1042. meta: {
  1043. title: "功率曲线查询",
  1044. icon: "",
  1045. permissions: ["jn_fdfx_glqxcx"],
  1046. },
  1047. },
  1048. {
  1049. path: "qxpclfx",
  1050. component: () =>
  1051. import(
  1052. "@/views/economicsOperation/windAnalyse/qxpclfx/index.vue"
  1053. ),
  1054. name: "Qxpclfx",
  1055. meta: {
  1056. title: "曲线偏差率分析",
  1057. icon: "",
  1058. permissions: ["jn_fdfx_qxpclfx"],
  1059. },
  1060. },
  1061. {
  1062. path: "cutInAndOutAnalysis",
  1063. component: () =>
  1064. import(
  1065. "@/views/economicsOperation/windAnalyse/cutInAndOutAnalysis/index.vue"
  1066. ),
  1067. name: "CutInAndOutAnalysis",
  1068. meta: {
  1069. title: "切入切出分析",
  1070. icon: "",
  1071. permissions: ["jn_fdfx_qrqcfx"],
  1072. },
  1073. },
  1074. {
  1075. path: "singleWindAnasyle",
  1076. component: () =>
  1077. import(
  1078. "@/views/economicsOperation/windAnalyse/singleWindAnasyle/index.vue"
  1079. ),
  1080. name: "SingleWindAnasyle",
  1081. meta: {
  1082. title: "单机性能分析",
  1083. icon: "",
  1084. permissions: ["jn_fdfx_djxnfx"],
  1085. },
  1086. },
  1087. {
  1088. path: "monthlyAnalysis",
  1089. component: () =>
  1090. import(
  1091. "@/views/economicsOperation/windAnalyse/monthlyAnalysis/index.vue"
  1092. ),
  1093. name: "MonthlyAnalysis",
  1094. meta: {
  1095. title: "单机月度分析",
  1096. icon: "",
  1097. permissions: ["jn_fdfx_djydfx"],
  1098. },
  1099. },
  1100. {
  1101. path: "performanceAssess",
  1102. component: () =>
  1103. import(
  1104. "@/views/economicsOperation/windAnalyse/performanceAssess/index.vue"
  1105. ),
  1106. name: "PerformanceAssess",
  1107. meta: {
  1108. title: "性能等级评估",
  1109. icon: "",
  1110. permissions: ["jn_fdfx_xndjpg"],
  1111. },
  1112. },
  1113. ],
  1114. },
  1115. //光伏分析
  1116. {
  1117. path: "photovoltaicAnalyse",
  1118. redirect: "analyse/standAloneAnalyse",
  1119. component: () =>
  1120. import("@/views/economicsOperation/photovoltaicAnalyse"),
  1121. name: "PhotovoltaicAnalyse",
  1122. meta: {
  1123. title: "光伏分析",
  1124. icon: "svg-gffx",
  1125. permissions: ["jn_gffx"],
  1126. },
  1127. children: [
  1128. {
  1129. path: "gfstateTransition",
  1130. component: () =>
  1131. import(
  1132. "@/views/economicsOperation/photovoltaicAnalyse/stateTransition/index.vue"
  1133. ),
  1134. name: "gfstateTransition",
  1135. meta: {
  1136. title: "状态时间分析",
  1137. icon: "",
  1138. permissions: ["jn_gffx_ztzhfx"],
  1139. },
  1140. },
  1141. {
  1142. path: "gftimeTransition",
  1143. component: () =>
  1144. import(
  1145. "@/views/economicsOperation/photovoltaicAnalyse/timeTransition/index.vue"
  1146. ),
  1147. name: "gftimeTransition",
  1148. meta: {
  1149. title: "状态转换分析",
  1150. icon: "",
  1151. permissions: ["jn_gffx_ztsjfx"],
  1152. },
  1153. },
  1154. {
  1155. path: "powerHotAnalyse",
  1156. component: () =>
  1157. import(
  1158. "@/views/economicsOperation/photovoltaicAnalyse/powerHotAnalyse"
  1159. ),
  1160. name: "PowerHotAnalyse",
  1161. meta: {
  1162. title: "功率曲线拟合",
  1163. icon: "",
  1164. permissions: ["jn_gffx_glwdfx"],
  1165. },
  1166. },
  1167. {
  1168. path: "powerAnalyse",
  1169. component: () =>
  1170. import(
  1171. "@/views/economicsOperation/photovoltaicAnalyse/powerAnalyse"
  1172. ),
  1173. name: "PowerAnalyse",
  1174. meta: {
  1175. title: "功率曲线查询",
  1176. icon: "",
  1177. permissions: ["jn_gffx_glqxnh"],
  1178. },
  1179. },
  1180. {
  1181. path: "lslfx",
  1182. component: () =>
  1183. import("@/views/economicsOperation/photovoltaicAnalyse/lslfx"),
  1184. name: "Lslfx",
  1185. meta: {
  1186. title: "离散率分析",
  1187. icon: "",
  1188. permissions: ["jn_gffx_lslfx"],
  1189. },
  1190. },
  1191. {
  1192. path: "prAnalyse",
  1193. component: () =>
  1194. import(
  1195. "@/views/economicsOperation/photovoltaicAnalyse/prAnalyse"
  1196. ),
  1197. name: "PrAnalyse",
  1198. meta: {
  1199. title: "系统效率分析",
  1200. icon: "",
  1201. permissions: ["jn_gffx_xtxlfx"],
  1202. },
  1203. },
  1204. {
  1205. path: "performanceEvaluation",
  1206. component: () =>
  1207. import(
  1208. "@/views/economicsOperation/photovoltaicAnalyse/performanceEvaluation"
  1209. ),
  1210. name: "PerformanceEvaluation",
  1211. meta: {
  1212. title: "性能等级评估",
  1213. icon: "",
  1214. permissions: ["jn_gffx_xndjpg"],
  1215. },
  1216. },
  1217. ],
  1218. },
  1219. //管控效率
  1220. {
  1221. path: "efficiency",
  1222. redirect: "efficiency/restorationEfficiency",
  1223. component: () => import("@/views/economicsOperation/efficiency"),
  1224. name: "efficiency",
  1225. meta: {
  1226. title: "管控效率",
  1227. icon: "svg-dimension-new",
  1228. permissions: ["jn_slgl"],
  1229. },
  1230. children: [
  1231. {
  1232. path: "restorationEfficiency",
  1233. component: () =>
  1234. import(
  1235. "@/views/economicsOperation/efficiency/restorationEfficiency"
  1236. ),
  1237. name: "restorationEfficiency",
  1238. meta: {
  1239. title: "复位及时率",
  1240. icon: "",
  1241. permissions: ["jn_slgl_fwjsl"],
  1242. },
  1243. },
  1244. {
  1245. path: "consumeEfficiency",
  1246. component: () =>
  1247. import("@/views/economicsOperation/efficiency/consumeEfficiency"),
  1248. name: "consumeEfficiency",
  1249. meta: {
  1250. title: "消缺及时率",
  1251. icon: "",
  1252. permissions: ["jn_slgl_xqjsl"],
  1253. },
  1254. },
  1255. {
  1256. path: "stateEfficiency",
  1257. component: () =>
  1258. import("@/views/economicsOperation/efficiency/stateEfficiency"),
  1259. name: "stateEfficiency",
  1260. meta: {
  1261. title: "状态转换率",
  1262. icon: "",
  1263. permissions: ["jn_slgl_ztzhl"],
  1264. },
  1265. },
  1266. ],
  1267. },
  1268. //综合管控KPI
  1269. {
  1270. path: "comprehensiveControl",
  1271. redirect: "comprehensiveControl/running",
  1272. component: () =>
  1273. import("@/views/economicsOperation/comprehensiveControl"),
  1274. name: "comprehensiveControl",
  1275. meta: {
  1276. title: "综合管控KPI",
  1277. icon: "svg-zhgk",
  1278. permissions: ["jn_zhgk"],
  1279. },
  1280. children: [
  1281. {
  1282. path: "running",
  1283. component: () =>
  1284. import(
  1285. "@/views/economicsOperation/comprehensiveControl/runningKPI/index.vue"
  1286. ),
  1287. name: "running",
  1288. meta: {
  1289. title: "运行KPI",
  1290. icon: "",
  1291. permissions: ["jn_zhgk_yx"],
  1292. },
  1293. },
  1294. {
  1295. path: "maintenance",
  1296. component: () =>
  1297. import(
  1298. "@/views/economicsOperation/comprehensiveControl/maintenanceKPI/index.vue"
  1299. ),
  1300. name: "maintenance",
  1301. meta: {
  1302. title: "检修KPI",
  1303. icon: "",
  1304. permissions: ["jn_zhgk_jx"],
  1305. },
  1306. },
  1307. {
  1308. path: "stationControl",
  1309. component: () =>
  1310. import(
  1311. "@/views/economicsOperation/comprehensiveControl/stationControlKPI/index.vue"
  1312. ),
  1313. name: "stationControl",
  1314. meta: {
  1315. title: "场站管控KPI",
  1316. icon: "",
  1317. permissions: ["jn_zhgk_czgk"],
  1318. },
  1319. },
  1320. ],
  1321. },
  1322. ],
  1323. },
  1324. //智慧检修
  1325. {
  1326. path: "/health",
  1327. redirect: "/health/healthManagement/first",
  1328. component: () => import("@/views/HealthControl"),
  1329. name: "health",
  1330. meta: {
  1331. title: "智慧检修",
  1332. icon: "",
  1333. permissions: ["jn_health"],
  1334. },
  1335. children: [
  1336. {
  1337. path: "healthManagement",
  1338. component: () => import("@/views/HealthControl/healthManagement"),
  1339. name: "healthManagement",
  1340. meta: {
  1341. title: "风电健康管理",
  1342. icon: "svg-fjjkd",
  1343. permissions: ["jn_jkgl"],
  1344. },
  1345. children: [
  1346. {
  1347. path: "first",
  1348. component: () =>
  1349. import("@/views/HealthControl/healthManagement/first/index.vue"),
  1350. name: "first",
  1351. meta: {
  1352. title: "健康推荐",
  1353. icon: "",
  1354. permissions: ["jn_jkgl_jktj"],
  1355. },
  1356. },
  1357. {
  1358. path: "homepage",
  1359. component: () =>
  1360. import(
  1361. "@/views/HealthControl/healthManagement/homepage/index.vue"
  1362. ),
  1363. name: "homepage",
  1364. meta: {
  1365. title: "健康首页",
  1366. icon: "",
  1367. permissions: ["jn_jkgl_jksy"],
  1368. },
  1369. },
  1370. {
  1371. path: "overview",
  1372. component: () =>
  1373. import(
  1374. "@/views/HealthControl/healthManagement/overview/index.vue"
  1375. ),
  1376. name: "overview",
  1377. meta: {
  1378. title: "健康总览",
  1379. icon: "",
  1380. permissions: ["jn_jkgl_jkzl"],
  1381. },
  1382. },
  1383. {
  1384. path: "healthMatrix",
  1385. component: () =>
  1386. import(
  1387. "@/views/HealthControl/healthManagement/healthMatrix/index.vue"
  1388. ),
  1389. name: "healthMatrix",
  1390. meta: {
  1391. title: "健康矩阵",
  1392. icon: "",
  1393. permissions: ["jn_jkgl_jkjz"],
  1394. },
  1395. },
  1396. {
  1397. path: "healthList",
  1398. component: () =>
  1399. import(
  1400. "@/views/HealthControl/healthManagement/healthList/index.vue"
  1401. ),
  1402. name: "healthList",
  1403. meta: {
  1404. title: "健康列表",
  1405. icon: "",
  1406. permissions: ["jn_jkgl_jklb"],
  1407. },
  1408. },
  1409. {
  1410. path: "badStateAnalyse/:wpId/:wtId",
  1411. component: () =>
  1412. import(
  1413. "@/views/HealthControl/healthManagement/badStateAnalyse/index.vue"
  1414. ),
  1415. name: "badStateAnalyse",
  1416. meta: {
  1417. title: "劣化状态分析",
  1418. icon: "",
  1419. permissions: ["jn_jkgl_lhztfx"],
  1420. },
  1421. },
  1422. // {
  1423. // path: "wtSaturability",
  1424. // component: () =>
  1425. // import(
  1426. // "@/views/HealthControl/healthManagement/wtSaturability/index.vue"
  1427. // ),
  1428. // name: "wtSaturability",
  1429. // meta: {
  1430. // title: "单机饱和度",
  1431. // icon: "",
  1432. // permissions: ["jn_nxfx_djbhd"],
  1433. // },
  1434. // },
  1435. {
  1436. path: "temperatureAnalysis",
  1437. component: () =>
  1438. import(
  1439. "@/views/HealthControl/healthManagement/temperatureAnalysis/index.vue"
  1440. ),
  1441. name: "temperatureAnalysis",
  1442. meta: {
  1443. title: "部件温度分析",
  1444. icon: "",
  1445. permissions: ["jn_jkgl_bjwd"],
  1446. },
  1447. },
  1448. ],
  1449. },
  1450. {
  1451. path: "gfHealthManagement",
  1452. component: () => import("@/views/HealthControl/gfHealthManagement"),
  1453. name: "gfHealthManagement",
  1454. meta: {
  1455. title: "光伏健康管理",
  1456. icon: "svg-gfjkd",
  1457. permissions: ["jn_gfjkgl"],
  1458. },
  1459. },
  1460. // {
  1461. // path: "energyEfficAnalyse",
  1462. // redirect: "energyEfficAnalyse/healthPowerCurve",
  1463. // component: () => import("@/views/HealthControl/energyEfficAnalyse"),
  1464. // name: "energyEfficAnalyse",
  1465. // meta: {
  1466. // title: "能效分析",
  1467. // icon: "svg-能效分析",
  1468. // permissions: ["jn_nxfx"],
  1469. // },
  1470. // children: [
  1471. // {
  1472. // path: "evaluationAnalysis",
  1473. // component: () =>
  1474. // import(
  1475. // "@/views/HealthControl/energyEfficAnalyse/evaluationAnalysis/index.vue"
  1476. // ),
  1477. // name: "evaluationAnalysis",
  1478. // meta: {
  1479. // title: "预警评判分析",
  1480. // icon: "",
  1481. // permissions: ["jn_nxfx_yjpp"],
  1482. // },
  1483. // },
  1484. // {
  1485. // path: "malfunctionAnalysis",
  1486. // component: () =>
  1487. // import(
  1488. // "@/views/HealthControl/energyEfficAnalyse/malfunctionAnalysis/index.vue"
  1489. // ),
  1490. // name: "malfunctionAnalysis",
  1491. // meta: {
  1492. // title: "故障评判分析",
  1493. // icon: "",
  1494. // permissions: ["jn_nxfx_gzpp"],
  1495. // },
  1496. // },
  1497. // {
  1498. // path: "powerAnalysis",
  1499. // component: () =>
  1500. // import(
  1501. // "@/views/HealthControl/energyEfficAnalyse/powerAnalysis/index.vue"
  1502. // ),
  1503. // name: "powerAnalysis",
  1504. // meta: {
  1505. // title: "部件功率分析",
  1506. // icon: "",
  1507. // permissions: ["jn_nxfx_gzpp"],
  1508. // },
  1509. // },
  1510. // ],
  1511. // },
  1512. {
  1513. path: "healthDetail",
  1514. redirect: "healthDetail/wpHealth",
  1515. component: () => import("@/views/HealthControl/healthDetail"),
  1516. name: "healthDetail",
  1517. hidden: true,
  1518. meta: {
  1519. title: "健康详情",
  1520. icon: "",
  1521. permissions: ["jn_jkgl"],
  1522. },
  1523. children: [
  1524. {
  1525. path: "wpHealth/:wpId/:wpName?", // 场站健康管理
  1526. name: "health3",
  1527. component: () =>
  1528. import("@/views/HealthControl/healthDetail/wpHealth"),
  1529. meta: {
  1530. title: "场站健康管理",
  1531. icon: "",
  1532. permissions: ["jn_jkgl"],
  1533. },
  1534. },
  1535. {
  1536. path: "wtHealth/:wpId/:wtId", //设备健康详情
  1537. name: "health0",
  1538. component: () =>
  1539. import("@/views/HealthControl/healthDetail/wtHealth"),
  1540. meta: {
  1541. title: "设备健康详情",
  1542. icon: "",
  1543. permissions: ["jn_jkgl"],
  1544. },
  1545. },
  1546. {
  1547. path: "healthTrend/:wpId/:wtId", //设备健康详情
  1548. name: "healthTrend",
  1549. component: () =>
  1550. import("@/views/HealthControl/healthDetail/healthTrend"),
  1551. meta: {
  1552. title: "健康趋势",
  1553. icon: "",
  1554. permissions: ["jn_jkgl"],
  1555. },
  1556. },
  1557. {
  1558. path: "badState/:wpId/:wtId", //设备健康详情
  1559. name: "",
  1560. component: () =>
  1561. import("@/views/HealthControl/healthManagement/badStateAnalyse"),
  1562. meta: {
  1563. title: "劣化状态分析曲线",
  1564. icon: "",
  1565. permissions: ["jn_jkgl"],
  1566. },
  1567. },
  1568. ],
  1569. },
  1570. ],
  1571. },
  1572. // 智能报表
  1573. {
  1574. path: "/report",
  1575. name: "report",
  1576. meta: {
  1577. title: "智能报表",
  1578. icon: "",
  1579. permissions: ["jn_zhbb"],
  1580. },
  1581. // component: () => import("@/views/report/index copy.vue"),
  1582. component: () => import("@/views/report"),
  1583. children: [
  1584. {
  1585. path: "report",
  1586. redirect: "report/gjyrbb",
  1587. name: "report",
  1588. meta: {
  1589. title: "自定制报表管理",
  1590. icon: "svg-自定制报表管理",
  1591. permissions: ["jn_zdz"],
  1592. },
  1593. component: () => import("@/views/report/stationReport"),
  1594. children: [
  1595. {
  1596. path: "fdxnyrb",
  1597. name: "fdxnyrb",
  1598. component: () => import("@/views/report/stationReport/fdxnyrb"),
  1599. meta: {
  1600. title: "晋能清洁能源风电日报",
  1601. icon: "",
  1602. permissions: ["jn_zdz_fdxnyrb"],
  1603. },
  1604. },
  1605. {
  1606. path: "gfxnyrb",
  1607. name: "gfxnyrb",
  1608. component: () => import("@/views/report/stationReport/gfxnyrb"),
  1609. meta: {
  1610. title: "晋能清洁能源光伏日报",
  1611. icon: "",
  1612. permissions: ["jn_zdz_gfxnyrb"],
  1613. },
  1614. },
  1615. {
  1616. path: "scrb",
  1617. name: "scrb",
  1618. component: () => import("@/views/report/stationReport/scrb"),
  1619. meta: {
  1620. title: "晋能清洁能源生产日报",
  1621. icon: "",
  1622. permissions: ["jn_zdz_scrb"],
  1623. },
  1624. },
  1625. // {
  1626. // path: "gjyrbb",
  1627. // name: "gjyrbb",
  1628. // component: () => import("@/views/report/stationReport/rbb"),
  1629. // meta: {
  1630. // title: "日报表",
  1631. // icon: "",
  1632. // permissions: ["jn_zdz_rbb"],
  1633. // },
  1634. // },
  1635. {
  1636. path: "fczybb",
  1637. name: "fczybb",
  1638. component: () => import("@/views/report/stationReport/fczybb"),
  1639. meta: {
  1640. title: "风场自由报表",
  1641. icon: "",
  1642. permissions: ["jn_zdz_fdcz"],
  1643. },
  1644. },
  1645. {
  1646. path: "xmzybb",
  1647. name: "xmzybb",
  1648. component: () => import("@/views/report/stationReport/xmzybb"),
  1649. meta: {
  1650. title: "项目自由报表",
  1651. icon: "",
  1652. permissions: ["jn_zdz_fdxm"],
  1653. },
  1654. },
  1655. // {
  1656. // path: "fdczzdy",
  1657. // name: "fdczzdy",
  1658. // component: () => import("@/views/report/stationReport/fdczzdy"),
  1659. // meta: {
  1660. // title: "风电场站自定义",
  1661. // icon: "",
  1662. // permissions: ["jn_zdz_fdcz"],
  1663. // },
  1664. // },
  1665. // {
  1666. // path: "fdxmzdy",
  1667. // name: "fdxmzdy",
  1668. // component: () => import("@/views/report/stationReport/fdxmzdy"),
  1669. // meta: {
  1670. // title: "风电项目自定义",
  1671. // icon: "",
  1672. // permissions: ["jn_zdz_fdxm"],
  1673. // },
  1674. // },
  1675. ],
  1676. },
  1677. {
  1678. path: "electricReport",
  1679. redirect: "electricReport/dmb",
  1680. name: "electricReport",
  1681. meta: {
  1682. title: "电量报表",
  1683. icon: "svg-dlbb",
  1684. permissions: ["jn_dlbb"],
  1685. },
  1686. component: () => import("@/views/electricReport/dmb"),
  1687. children: [
  1688. {
  1689. path: "dmb",
  1690. name: "dmb",
  1691. component: () => import("@/views/electricReport/dmb"),
  1692. meta: {
  1693. title: "底码表",
  1694. icon: "",
  1695. permissions: ["jn_dlbb_dmb"],
  1696. },
  1697. },
  1698. ],
  1699. },
  1700. ],
  1701. },
  1702. ];
  1703. const router = createRouter({
  1704. history: createWebHashHistory(),
  1705. base: "/nem/",
  1706. routes: [...constantRoutes, ...asyncRoutes],
  1707. });
  1708. // router.beforeEach((to, from, next) => {
  1709. // next();
  1710. // });
  1711. export default router;