index.js 45 KB

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