index.js 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108
  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. // {
  12. // path: "/",
  13. // redirect: "/home",
  14. // meta: {
  15. // title: "首页",
  16. // icon: "",
  17. // permissions: ["jn_sy"],
  18. // },
  19. // },
  20. // {
  21. // path: "/home", // 驾驶舱
  22. // name: "home",
  23. // component: () => import("@/views/Home"),
  24. // meta: {
  25. // title: "首页",
  26. // icon: "",
  27. // permissions: ["jn_sy"],
  28. // },
  29. // },
  30. //综合报警
  31. {
  32. path: "/integratedAlarm",
  33. redirect:
  34. "/integratedAlarm/safe/realwarning",
  35. component: () => import("@/views/IntegratedAlarm"),
  36. // component: () => import("@/views/SandTable/SandTable.vue"),
  37. name: "SandTable",
  38. meta: {
  39. title: "综合报警",
  40. icon: "",
  41. permissions: ["jn_integratedAlarm"],
  42. },
  43. children: [
  44. // {
  45. // path: "detailmatrix", // 明细矩阵
  46. // name: "DetailMatrix",
  47. // component: () => import("@/views/IntegratedAlarm/DetailMatrix"),
  48. // meta: {
  49. // title: "矩阵提醒",
  50. // icon: "svg-mx-matrix",
  51. // permissions: ["jn_mxjz"],
  52. // },
  53. // },
  54. {
  55. path: "safe", // 综合报警
  56. name: "safe",
  57. component: () => import("@/views/IntegratedAlarm/safe"),
  58. meta: {
  59. title: "综合报警",
  60. icon: "svg-zhbj",
  61. permissions: ["jn_safe"],
  62. },
  63. children: [
  64. {
  65. path: "realwarning", // 综合报警
  66. name: "realwarning",
  67. component: () => import("@/views/IntegratedAlarm/safe/realWarning"),
  68. meta: {
  69. title: "实时报警",
  70. icon: "",
  71. permissions: ["jn_safe_ssbj"],
  72. },
  73. },
  74. {
  75. path: "customWarning", // 预警查询
  76. name: "customWarning",
  77. component: () =>
  78. import("@/views/IntegratedAlarm/safe/customWarning"),
  79. meta: {
  80. title: "预警查询",
  81. icon: "",
  82. permissions: ["jn_safe_yjcx"],
  83. },
  84. },
  85. {
  86. path: "historyWarning", // 报警查询
  87. name: "historyWarning",
  88. component: () =>
  89. import("@/views/IntegratedAlarm/safe/historyWarning"),
  90. meta: {
  91. title: "报警查询",
  92. icon: "",
  93. permissions: ["jn_safe_bjcx"],
  94. },
  95. },
  96. // {
  97. // path: "stopQuery", //停机查询
  98. // name: "stopQuery",
  99. // component: () => import("@/views/IntegratedAlarm/safe/stopQuery"),
  100. // meta: {
  101. // title: "停机查询",
  102. // icon: "",
  103. // permissions: ["jn_safe_tjcx"],
  104. // },
  105. // },
  106. // {
  107. // path: "dataSearch", //数据查询
  108. // name: "dataSearch",
  109. // component: () => import("@/views/IntegratedAlarm/safe/dataSearch"),
  110. // meta: {
  111. // title: "数据查询",
  112. // icon: "",
  113. // permissions: ["jn_safe_sjcx"],
  114. // },
  115. // },
  116. ],
  117. },
  118. {
  119. path: "reliability", // 可靠性分析
  120. name: "reliability",
  121. component: () => import("@/views/IntegratedAlarm/reliability"),
  122. meta: {
  123. title: "可靠性分析",
  124. icon: "svg-kkxfx",
  125. permissions: ["jn_reliability"],
  126. },
  127. children: [
  128. {
  129. path: "customAnalyse", // 预警分析
  130. name: "customAnalyse",
  131. component: () =>
  132. import("@/views/IntegratedAlarm/reliability/customAnalyse"),
  133. meta: {
  134. title: "预警分析",
  135. icon: "",
  136. permissions: ["jn_reliability_yjfx"],
  137. },
  138. },
  139. {
  140. path: "historyAnalyse", // 报警分析
  141. name: "historyAnalyse",
  142. component: () =>
  143. import("@/views/IntegratedAlarm/reliability/historyAnalyse"),
  144. meta: {
  145. title: "报警分析",
  146. icon: "",
  147. permissions: ["jn_reliability_bjfx"],
  148. },
  149. }
  150. ]
  151. },
  152. {
  153. path: "alarmConfig", // 报警配置
  154. name: "alarmConfig",
  155. component: () => import("@/views/IntegratedAlarm/alarmConfig"),
  156. meta: {
  157. title: "报警配置",
  158. icon: "svg-bjpz",
  159. permissions: ["jn_alarmConfig"],
  160. },
  161. children: [
  162. {
  163. path: "customConfig", // 预警配置
  164. name: "customConfig",
  165. component: () =>
  166. import("@/views/IntegratedAlarm/alarmConfig/customConfig"),
  167. meta: {
  168. title: "预警配置",
  169. icon: "",
  170. permissions: ["jn_safe_ssbj"],
  171. },
  172. },
  173. {
  174. path: "historyConfig", // 报警配置
  175. name: "historyConfig",
  176. component: () =>
  177. import("@/views/IntegratedAlarm/alarmConfig/historyConfig"),
  178. meta: {
  179. title: "报警配置",
  180. icon: "",
  181. permissions: ["jn_alarmConfig_bjpz"],
  182. },
  183. },
  184. {
  185. path: "earlyWarning",
  186. name: "earlyWarning",
  187. meta: {
  188. title: "预警排查方案",
  189. },
  190. component: () =>
  191. import("../views/IntegratedAlarm/earlyWarning/index.vue"),
  192. },
  193. {
  194. path: "logs", // 规则修改日志
  195. name: "logs",
  196. component: () => import("@/views/IntegratedAlarm/alarmConfig/logs"),
  197. meta: {
  198. title: "规则修改日志",
  199. icon: "",
  200. permissions: ["jn_alarmConfig_bjpz"],
  201. },
  202. },
  203. ]
  204. },
  205. {
  206. path: "deviceConfig", // 设备模型配置
  207. name: "deviceConfig",
  208. component: () => import("@/views/IntegratedAlarm/deviceConfig"),
  209. meta: {
  210. title: "设备模型配置",
  211. icon: "svg-zhgk",
  212. permissions: ["jn_alarmConfig"],
  213. },
  214. },
  215. {
  216. path: "optimizationSuggestions", // 优化建议报告
  217. name: "optimizationSuggestions",
  218. component: () => import("@/views/IntegratedAlarm/yhjyReport"),
  219. meta: {
  220. title: "优化建议报告",
  221. icon: "svg-报告",
  222. permissions: ["jn_alarmConfig"],
  223. },
  224. },
  225. {
  226. path: "rateAnalysis", // 对风偏差分析
  227. name: "rateAnalysis",
  228. component: () => import("@/views/rateAnalysis/index"),
  229. meta: {
  230. title: "对风偏差分析",
  231. icon: "svg-报告",
  232. permissions: ["jn_alarmConfig"],
  233. },
  234. },
  235. ]
  236. },
  237. //经济运行
  238. {
  239. path: "/economicsOperation",
  240. // redirect:
  241. // "/economicsOperation/benchmarkingManagement/performanceRankingList",
  242. // component: () =>
  243. // import("@/views/economicsOperation/benchmarkingManagement"),
  244. component: () => import("@/views/economicsOperation/nxfHomePage"),
  245. name: "economicsOperation",
  246. meta: {
  247. title: "经济运行",
  248. icon: "",
  249. permissions: ["jn_economicsOperation"],
  250. },
  251. children: [
  252. //对标分析
  253. {
  254. path: "benchmarkingManagement",
  255. redirect: "benchmarkingManagement/performanceRankingList",
  256. component: () =>
  257. import("@/views/economicsOperation/benchmarkingManagement"),
  258. name: "benchmarkingManagement",
  259. meta: {
  260. title: "对标分析",
  261. icon: "svg-dbgl",
  262. permissions: ["jn_dbgl"],
  263. },
  264. children: [
  265. {
  266. path: "performanceRankingList",
  267. component: () =>
  268. import(
  269. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/index.vue"
  270. ),
  271. name: "performanceRankingList",
  272. meta: {
  273. title: "绩效榜",
  274. icon: "",
  275. permissions: ["jn_dbgl_jxb"],
  276. },
  277. },
  278. {
  279. path: "decision1Mx", //风机绩效榜明细
  280. name: "decision1Mx",
  281. component: () =>
  282. import(
  283. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/decision1Mx.vue"
  284. ),
  285. meta: {
  286. title: "风机绩效榜明细",
  287. icon: "",
  288. permissions: ["jn_dbgl_jxb"],
  289. },
  290. },
  291. {
  292. path: "loseRate",
  293. component: () =>
  294. import(
  295. "@/views/economicsOperation/benchmarkingManagement/loseRate/index.vue"
  296. ),
  297. name: "loseRate",
  298. meta: {
  299. title: "五项对标损失",
  300. icon: "",
  301. permissions: ["jn_dbgl_wxssl"],
  302. },
  303. },
  304. // {
  305. // path: "companyBenchmarking",
  306. // component: () =>
  307. // import(
  308. // "@/views/economicsOperation/benchmarkingManagement/companyBenchmarking"
  309. // ),
  310. // name: "companyBenchmarking",
  311. // meta: {
  312. // title: "公司对标",
  313. // icon: "",
  314. // permissions: ["jn_dbgl_gsdb"],
  315. // },
  316. // },
  317. {
  318. path: "siteBenchmarking",
  319. component: () =>
  320. import(
  321. "@/views/economicsOperation/benchmarkingManagement/siteBenchmarking"
  322. ),
  323. name: "siteBenchmarking",
  324. meta: {
  325. title: "场内对标",
  326. icon: "",
  327. permissions: ["jn_dbgl_cndb"],
  328. },
  329. },
  330. {
  331. path: "intervalBenchmarking",
  332. component: () =>
  333. import(
  334. "@/views/economicsOperation/benchmarkingManagement/intervalBenchmarking"
  335. ),
  336. name: "intervalBenchmarking",
  337. meta: {
  338. title: "场际对标",
  339. icon: "",
  340. permissions: ["jn_dbgl_cjdb"],
  341. },
  342. },
  343. // {
  344. // path: "valueBenchmarking",
  345. // component: () =>
  346. // import(
  347. // "@/views/economicsOperation/benchmarkingManagement/valueBenchmarking"
  348. // ),
  349. // name: "valueBenchmarking",
  350. // meta: {
  351. // title: "值际对标",
  352. // icon: "",
  353. // },
  354. // },
  355. {
  356. path: "projectBenchmarking",
  357. component: () =>
  358. import(
  359. "@/views/economicsOperation/benchmarkingManagement/projectBenchmarking"
  360. ),
  361. name: "projectBenchmarking",
  362. meta: {
  363. title: "项目对标",
  364. icon: "",
  365. permissions: ["jn_dbgl_xmdb"],
  366. },
  367. },
  368. {
  369. path: "wiringBenchmarking",
  370. component: () =>
  371. import(
  372. "@/views/economicsOperation/benchmarkingManagement/wiringBenchmarking"
  373. ),
  374. name: "wiringBenchmarking",
  375. meta: {
  376. title: "线路对标",
  377. icon: "",
  378. permissions: ["jn_dbgl_xldb"],
  379. },
  380. },
  381. // {
  382. // path: "singleMachineBenchmarking",
  383. // component: () =>
  384. // import(
  385. // "@/views/economicsOperation/benchmarkingManagement/singleMachineBenchmarking"
  386. // ),
  387. // name: "singleMachineBenchmarking",
  388. // meta: {
  389. // title: "单机对标",
  390. // icon: "",
  391. // },
  392. // },
  393. ],
  394. },
  395. //电量损失分解
  396. {
  397. path: "thematicAnalysis",
  398. redirect: "thematicAnalysis/comprehensiveAnalysis",
  399. component: () => import("@/views/economicsOperation/thematicAnalysis"),
  400. name: "thematicAnalysis",
  401. meta: {
  402. title: "电量损失分解",
  403. icon: "svg-ztfx",
  404. permissions: ["jn_ztfx"],
  405. },
  406. children: [
  407. {
  408. path: "comprehensiveAnalysis",
  409. component: () =>
  410. import(
  411. "@/views/economicsOperation/thematicAnalysis/comprehensiveAnalysis"
  412. ),
  413. name: "comprehensiveAnalysis",
  414. meta: {
  415. title: "综合分析",
  416. icon: "",
  417. permissions: ["jn_ztfx_zhfx"],
  418. },
  419. },
  420. {
  421. path: "windEnergy",
  422. component: () =>
  423. import("@/views/economicsOperation/thematicAnalysis/windEnergy"),
  424. name: "windEnergy",
  425. meta: {
  426. title: "风能利用率",
  427. icon: "",
  428. permissions: ["jn_ztfx_fnlyl"],
  429. },
  430. },
  431. {
  432. path: "failure",
  433. component: () =>
  434. import("@/views/economicsOperation/thematicAnalysis/failure"),
  435. name: "failure",
  436. meta: {
  437. title: "五项损失率",
  438. icon: "",
  439. permissions: ["jn_ztfx_wxssl"],
  440. },
  441. },
  442. {
  443. path: "MTBF",
  444. component: () =>
  445. import("@/views/economicsOperation/thematicAnalysis/MTBF"),
  446. name: "MTBF",
  447. meta: {
  448. title: "可靠性分析",
  449. icon: "",
  450. permissions: ["jn_ztfx_kkxfx"],
  451. },
  452. },
  453. {
  454. path: "generation",
  455. component: () =>
  456. import("@/views/economicsOperation/thematicAnalysis/generation"),
  457. name: "generation",
  458. meta: {
  459. title: "发电量分析",
  460. icon: "",
  461. permissions: ["jn_ztfx_dlfx"],
  462. },
  463. },
  464. // {
  465. // path: "windAnalysis",
  466. // component: () =>
  467. // import("@/views/economicsOperation/thematicAnalysis/windAnalysis"),
  468. // name: "windAnalysis",
  469. // meta: {
  470. // title: "损失电量分析",
  471. // icon: "",
  472. // permissions: ["jn_ztfx_dlfx"],
  473. // },
  474. // },
  475. ],
  476. },
  477. //整站分析
  478. {
  479. path: "stationAnalyse",
  480. component: () => import("@/views/economicsOperation/stationAnalyse"),
  481. name: "StationAnalyse",
  482. meta: {
  483. title: "整站分析",
  484. icon: "svg-fddl",
  485. permissions: ["jn_czfx"],
  486. },
  487. children: [
  488. // {
  489. // path: "electricAnalyse",
  490. // component: () =>
  491. // import(
  492. // "@/views/economicsOperation/stationAnalyse/electricAnalyse"
  493. // ),
  494. // name: "ElectricAnalyse",
  495. // meta: {
  496. // title: "发电量分析",
  497. // icon: "",
  498. // permissions: ["jn_czfx_fdlfx"],
  499. // },
  500. // },
  501. {
  502. path: "stationElectricAnalyse",
  503. component: () =>
  504. import(
  505. "@/views/economicsOperation/stationAnalyse/stationElectricAnalyse"
  506. ),
  507. name: "StationElectricAnalyse",
  508. meta: {
  509. title: "综合场用电量分析",
  510. icon: "",
  511. permissions: ["jn_czfx_zhcydlfx"],
  512. },
  513. },
  514. {
  515. path: "WindAndPhotovoltaic",
  516. component: () =>
  517. import(
  518. "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic"
  519. ),
  520. name: "WindAndPhotovoltaic",
  521. meta: {
  522. title: "风资源分析",
  523. icon: "",
  524. permissions: ["jn_czfx_fgzyfx"],
  525. },
  526. },
  527. {
  528. path: "posAnalysis",
  529. component: () =>
  530. import("@/views/economicsOperation/stationAnalyse/posAnalysis/index.vue"),
  531. name: "posAnalysis",
  532. meta: {
  533. title: "微观选址分析",
  534. icon: "",
  535. permissions: ["jn_czfx_fgzyfx"],
  536. },
  537. },
  538. ]
  539. },
  540. //机组分析
  541. {
  542. path: "windAnalyse",
  543. component: () => import("@/views/economicsOperation/windAnalyse"),
  544. name: "WindAnalyse",
  545. meta: {
  546. title: "机组分析",
  547. icon: "svg-fdfx",
  548. permissions: ["jn_fdfx"],
  549. },
  550. children: [
  551. // {
  552. // path: "stateTransition",
  553. // component: () =>
  554. // import(
  555. // "@/views/economicsOperation/windAnalyse/stateTransition/index.vue"
  556. // ),
  557. // name: "stateTransition",
  558. // meta: {
  559. // title: "状态时间分析",
  560. // icon: "",
  561. // permissions: ["jn_fdfx_ztzhfx"],
  562. // },
  563. // },
  564. // {
  565. // path: "timeTransition",
  566. // component: () =>
  567. // import(
  568. // "@/views/economicsOperation/windAnalyse/timeTransition/index.vue"
  569. // ),
  570. // name: "timeTransition",
  571. // meta: {
  572. // title: "状态转换分析",
  573. // icon: "",
  574. // permissions: ["jn_fdfx_ztsjfx"],
  575. // },
  576. // },
  577. {
  578. path: "powerAnalyse",
  579. component: () =>
  580. import("@/views/economicsOperation/windAnalyse/powerCurve"),
  581. name: "PowerCurve",
  582. meta: {
  583. title: "功率曲线拟合",
  584. icon: "",
  585. permissions: ["jn_fdfx_glqxnh"],
  586. },
  587. },
  588. {
  589. path: "powerSearch",
  590. component: () =>
  591. import("@/views/economicsOperation/windAnalyse/powerSearch"),
  592. name: "PowerSearch",
  593. meta: {
  594. title: "功率曲线查询",
  595. icon: "",
  596. permissions: ["jn_fdfx_glqxcx"],
  597. },
  598. },
  599. {
  600. path: "qxpclfx",
  601. component: () =>
  602. import(
  603. "@/views/economicsOperation/windAnalyse/qxpclfx/index.vue"
  604. ),
  605. name: "Qxpclfx",
  606. meta: {
  607. title: "曲线偏差率分析",
  608. icon: "",
  609. permissions: ["jn_fdfx_qxpclfx"],
  610. },
  611. },
  612. {
  613. path: "qxqjpcl",
  614. component: () =>
  615. import(
  616. "@/views/economicsOperation/windAnalyse/qxqjpcl/index.vue"
  617. ),
  618. name: "Qxqjpcl",
  619. meta: {
  620. title: "曲线区间偏差率分析",
  621. icon: "",
  622. permissions: ["jn_fdfx_qxpclfx"],
  623. },
  624. },
  625. {
  626. path: "cutInAndOutAnalysis",
  627. component: () =>
  628. import(
  629. "@/views/economicsOperation/windAnalyse/cutInAndOutAnalysis/index.vue"
  630. ),
  631. name: "CutInAndOutAnalysis",
  632. meta: {
  633. title: "切入切出分析",
  634. icon: "",
  635. permissions: ["jn_fdfx_qrqcfx"],
  636. },
  637. },
  638. {
  639. path: "singleWindAnasyle",
  640. component: () =>
  641. import(
  642. "@/views/economicsOperation/windAnalyse/singleWindAnasyle/index.vue"
  643. ),
  644. name: "SingleWindAnasyle",
  645. meta: {
  646. title: "单机性能分析",
  647. icon: "",
  648. permissions: ["jn_fdfx_djxnfx"],
  649. },
  650. },
  651. {
  652. path: "monthlyAnalysis",
  653. component: () =>
  654. import(
  655. "@/views/economicsOperation/windAnalyse/monthlyAnalysis/index.vue"
  656. ),
  657. name: "MonthlyAnalysis",
  658. meta: {
  659. title: "单机月度分析",
  660. icon: "",
  661. permissions: ["jn_fdfx_djydfx"],
  662. },
  663. },
  664. {
  665. path: "performanceAssess",
  666. component: () =>
  667. import(
  668. "@/views/economicsOperation/windAnalyse/performanceAssess/index.vue"
  669. ),
  670. name: "PerformanceAssess",
  671. meta: {
  672. title: "性能等级评估",
  673. icon: "",
  674. permissions: ["jn_fdfx_xndjpg"],
  675. },
  676. },
  677. {
  678. path: "partsTemperatureAnalyse", // 各出力部件温度分析
  679. name: "partsTemperatureAnalyse",
  680. component: () =>
  681. import("@/views/IntegratedAlarm/reliability/partsTemperatureAnalyse/index2.vue"),
  682. meta: {
  683. title: "各出力部件温度分析",
  684. icon: "",
  685. permissions: ["jn_reliability_bjfx"],
  686. },
  687. },
  688. ],
  689. },
  690. //光伏分析
  691. // {
  692. // path: "photovoltaicAnalyse",
  693. // redirect: "analyse/standAloneAnalyse",
  694. // component: () =>
  695. // import("@/views/economicsOperation/photovoltaicAnalyse"),
  696. // name: "PhotovoltaicAnalyse",
  697. // meta: {
  698. // title: "光伏分析",
  699. // icon: "svg-gffx",
  700. // permissions: ["jn_gffx"],
  701. // },
  702. // children: [
  703. // {
  704. // path: "gfstateTransition",
  705. // component: () =>
  706. // import(
  707. // "@/views/economicsOperation/photovoltaicAnalyse/stateTransition/index.vue"
  708. // ),
  709. // name: "gfstateTransition",
  710. // meta: {
  711. // title: "状态时间分析",
  712. // icon: "",
  713. // permissions: ["jn_gffx_ztzhfx"],
  714. // },
  715. // },
  716. // {
  717. // path: "gftimeTransition",
  718. // component: () =>
  719. // import(
  720. // "@/views/economicsOperation/photovoltaicAnalyse/timeTransition/index.vue"
  721. // ),
  722. // name: "gftimeTransition",
  723. // meta: {
  724. // title: "状态转换分析",
  725. // icon: "",
  726. // permissions: ["jn_gffx_ztsjfx"],
  727. // },
  728. // },
  729. // {
  730. // path: "powerHotAnalyse",
  731. // component: () =>
  732. // import(
  733. // "@/views/economicsOperation/photovoltaicAnalyse/powerHotAnalyse"
  734. // ),
  735. // name: "PowerHotAnalyse",
  736. // meta: {
  737. // title: "功率曲线拟合",
  738. // icon: "",
  739. // permissions: ["jn_gffx_glwdfx"],
  740. // },
  741. // },
  742. // {
  743. // path: "powerAnalyse",
  744. // component: () =>
  745. // import(
  746. // "@/views/economicsOperation/photovoltaicAnalyse/powerAnalyse"
  747. // ),
  748. // name: "PowerAnalyse",
  749. // meta: {
  750. // title: "功率曲线查询",
  751. // icon: "",
  752. // permissions: ["jn_gffx_glqxnh"],
  753. // },
  754. // },
  755. // {
  756. // path: "lslfx",
  757. // component: () =>
  758. // import("@/views/economicsOperation/photovoltaicAnalyse/lslfx"),
  759. // name: "Lslfx",
  760. // meta: {
  761. // title: "离散率分析",
  762. // icon: "",
  763. // permissions: ["jn_gffx_lslfx"],
  764. // },
  765. // },
  766. // {
  767. // path: "prAnalyse",
  768. // component: () =>
  769. // import(
  770. // "@/views/economicsOperation/photovoltaicAnalyse/prAnalyse"
  771. // ),
  772. // name: "PrAnalyse",
  773. // meta: {
  774. // title: "系统效率分析",
  775. // icon: "",
  776. // permissions: ["jn_gffx_xtxlfx"],
  777. // },
  778. // },
  779. // {
  780. // path: "performanceEvaluation",
  781. // component: () =>
  782. // import(
  783. // "@/views/economicsOperation/photovoltaicAnalyse/performanceEvaluation"
  784. // ),
  785. // name: "PerformanceEvaluation",
  786. // meta: {
  787. // title: "性能等级评估",
  788. // icon: "",
  789. // permissions: ["jn_gffx_xndjpg"],
  790. // },
  791. // },
  792. // ],
  793. // },
  794. //运维三率
  795. {
  796. path: "efficiency",
  797. redirect: "efficiency/restorationEfficiency",
  798. component: () => import("@/views/economicsOperation/efficiency"),
  799. name: "efficiency",
  800. meta: {
  801. title: "运维三率",
  802. icon: "svg-dimension-new",
  803. permissions: ["jn_slgl"],
  804. },
  805. children: [
  806. {
  807. path: "restorationEfficiency",
  808. component: () =>
  809. import(
  810. "@/views/economicsOperation/efficiency/restorationEfficiency"
  811. ),
  812. name: "restorationEfficiency",
  813. meta: {
  814. title: "复位及时率",
  815. icon: "",
  816. permissions: ["jn_slgl_fwjsl"],
  817. },
  818. },
  819. {
  820. path: "consumeEfficiency",
  821. component: () =>
  822. import("@/views/economicsOperation/efficiency/consumeEfficiency"),
  823. name: "consumeEfficiency",
  824. meta: {
  825. title: "消缺及时率",
  826. icon: "",
  827. permissions: ["jn_slgl_xqjsl"],
  828. },
  829. },
  830. {
  831. path: "stateEfficiency",
  832. component: () =>
  833. import("@/views/economicsOperation/efficiency/stateEfficiency"),
  834. name: "stateEfficiency",
  835. meta: {
  836. title: "状态转换率",
  837. icon: "",
  838. permissions: ["jn_slgl_ztzhl"],
  839. },
  840. },
  841. ],
  842. },
  843. // {
  844. // path: "healthReport",
  845. // component: () => import("@/views/economicsOperation/healthReport"),
  846. // name: "healthReport",
  847. // meta: {
  848. // title: "健康评价报告",
  849. // icon: "svg-zhgk",
  850. // permissions: ["jn_slgl"],
  851. // },
  852. // },
  853. {
  854. path: "economicsReport", // 经济运行分析报告
  855. name: "economicsReport",
  856. component: () => import("@/views/economicsOperation/jjyxReport"),
  857. meta: {
  858. title: "经济运行分析报告",
  859. icon: "svg-报告",
  860. permissions: ["jn_alarmConfig"],
  861. },
  862. },
  863. //综合管控KPI
  864. // {
  865. // path: "comprehensiveControl",
  866. // redirect: "comprehensiveControl/running",
  867. // component: () =>
  868. // import("@/views/economicsOperation/comprehensiveControl"),
  869. // name: "comprehensiveControl",
  870. // meta: {
  871. // title: "综合管控KPI",
  872. // icon: "svg-zhgk",
  873. // permissions: ["jn_zhgk"],
  874. // },
  875. // children: [
  876. // {
  877. // path: "running",
  878. // component: () =>
  879. // import(
  880. // "@/views/economicsOperation/comprehensiveControl/runningKPI/index.vue"
  881. // ),
  882. // name: "running",
  883. // meta: {
  884. // title: "运行KPI",
  885. // icon: "",
  886. // permissions: ["jn_zhgk_yx"],
  887. // },
  888. // },
  889. // {
  890. // path: "maintenance",
  891. // component: () =>
  892. // import(
  893. // "@/views/economicsOperation/comprehensiveControl/maintenanceKPI/index.vue"
  894. // ),
  895. // name: "maintenance",
  896. // meta: {
  897. // title: "检修KPI",
  898. // icon: "",
  899. // permissions: ["jn_zhgk_jx"],
  900. // },
  901. // },
  902. // {
  903. // path: "stationControl",
  904. // component: () =>
  905. // import(
  906. // "@/views/economicsOperation/comprehensiveControl/stationControlKPI/index.vue"
  907. // ),
  908. // name: "stationControl",
  909. // meta: {
  910. // title: "场站管控KPI",
  911. // icon: "",
  912. // permissions: ["jn_zhgk_czgk"],
  913. // },
  914. // },
  915. // ],
  916. // },
  917. ],
  918. },
  919. // 智能报表
  920. {
  921. path: "/nxreport",
  922. meta: {
  923. title: "智能报表",
  924. icon: "",
  925. },
  926. redirect: "/nxreport/scrb/fdcscrb",
  927. component: () => import("@/views/nxReport"),
  928. children: [
  929. {
  930. path: "scrb",
  931. name: "scrb",
  932. redirect: "scrb/fdcscrb",
  933. component: () => import("@/views/nxReport/scrb"),
  934. meta: {
  935. title: "生产日报",
  936. icon: "svg-风光资源分析",
  937. },
  938. children: [
  939. {
  940. path: "fdcscrb",
  941. name: "fdcscrb",
  942. component: () => import("@/views/nxReport/scrb/fdcscrb"),
  943. meta: {
  944. title: "风电场站生产日报",
  945. icon: "",
  946. },
  947. children: []
  948. },
  949. ]
  950. },
  951. {
  952. path: "dlcsdmb",
  953. name: "dlcsdmb",
  954. component: () => import("@/views/nxReport/dlcsdmb"),
  955. meta: {
  956. title: "电量参数底码表",
  957. icon: "svg-jjyx",
  958. },
  959. children: [
  960. {
  961. path: "huiandlcsdmb",
  962. name: "dlcsdmb",
  963. component: () => import("@/views/nxReport/dlcsdmb/huiandlcsdmb"),
  964. meta: {
  965. title: "惠安风电场电量底码(每日)",
  966. icon: "",
  967. },
  968. },
  969. ]
  970. },
  971. {
  972. path: "zbyxcsjlb",
  973. name: "zbyxcsjlb",
  974. component: () => import("@/views/nxReport/zbyxcsjlb"),
  975. meta: {
  976. title: "值班运行参数记录表",
  977. icon: "svg-matrix",
  978. },
  979. children: [
  980. {
  981. path: "huiansyzyxcs",
  982. name: "huiansyzyxcs",
  983. component: () => import("@/views/nxReport/zbyxcsjlb/components/huiansyzyxcs"),
  984. meta: {
  985. title: "惠安风电升压站运行参数",
  986. icon: "",
  987. },
  988. },
  989. {
  990. path: "huianfjyxcsyq",
  991. name: "huianfjyxcsyq",
  992. component: () => import("@/views/nxReport/zbyxcsjlb/components/huianfjyxcsyq"),
  993. meta: {
  994. title: "惠安风电一期风机运行参数",
  995. icon: "",
  996. },
  997. },
  998. {
  999. path: "huianfjyxcseq",
  1000. name: "huianfjyxcseq",
  1001. component: () => import("@/views/nxReport/zbyxcsjlb/components/huianfjyxcseq"),
  1002. meta: {
  1003. title: "惠安风电二期风机运行参数",
  1004. icon: "",
  1005. },
  1006. },
  1007. {
  1008. path: "dtfjdltj",
  1009. name: "dtfjdltj",
  1010. component: () => import("@/views/nxReport/zbyxcsjlb/components/dtfjdltj"),
  1011. meta: {
  1012. title: "单台风机电量统计",
  1013. icon: "",
  1014. },
  1015. },
  1016. {
  1017. path: "huianfddltj",
  1018. name: "huianfddltj",
  1019. component: () => import("@/views/nxReport/zbyxcsjlb/components/huianfddltj"),
  1020. meta: {
  1021. title: "惠安风电电量统计",
  1022. icon: "",
  1023. },
  1024. },
  1025. ]
  1026. },
  1027. {
  1028. path: "czzbjshjlb",
  1029. name: "czzbjshjlb",
  1030. component: () => import("@/views/nxReport/czzbjshjlb"),
  1031. meta: {
  1032. title: "场站指标及损耗记录表",
  1033. icon: "svg-智能报表",
  1034. },
  1035. children: [
  1036. {
  1037. path: "huianfdzb",
  1038. name: "huianfdzb",
  1039. component: () => import("@/views/nxReport/czzbjshjlb/huianfdzb"),
  1040. meta: {
  1041. title: "惠安风电指标",
  1042. icon: "",
  1043. },
  1044. },
  1045. ]
  1046. },
  1047. {
  1048. path: "czzdybb",
  1049. name: "czzdybb",
  1050. component: () => import("@/views/nxReport/czzdybb"),
  1051. meta: {
  1052. title: "自定义报表",
  1053. icon: "svg-自定制报表管理",
  1054. },
  1055. },
  1056. // {
  1057. // path: "fdscqk",
  1058. // name: "fdscqk",
  1059. // component: () => import("@/views/nxReport/fdscqk"),
  1060. // meta: {
  1061. // title: "发电生产情况快报",
  1062. // icon: "svg-风光资源分析",
  1063. // },
  1064. // },
  1065. // {
  1066. // path: "czjbbb",
  1067. // name: "czjbbb",
  1068. // component: () => import("@/views/nxReport/czjbbb"),
  1069. // meta: {
  1070. // title: "场站级别报表",
  1071. // icon: "svg-预警记录",
  1072. // },
  1073. // },
  1074. // {
  1075. // path: "xmjbbb",
  1076. // name: "xmjbbb",
  1077. // component: () => import("@/views/nxReport/xmjbbb"),
  1078. // meta: {
  1079. // title: "项目级别报表",
  1080. // icon: "svg-报表管理",
  1081. // },
  1082. // },
  1083. // {
  1084. // path: "czzyb",
  1085. // name: "czzyb",
  1086. // component: () => import("@/views/nxReport/czzyb"),
  1087. // meta: {
  1088. // title: "自定义报表",
  1089. // icon: "svg-自定制报表管理",
  1090. // },
  1091. // },
  1092. ],
  1093. },
  1094. ];
  1095. const router = createRouter({
  1096. history: createWebHashHistory(),
  1097. base: "/nem/",
  1098. routes: [...constantRoutes, ...asyncRoutes],
  1099. });
  1100. // router.beforeEach((to, from, next) => {
  1101. // next();
  1102. // });
  1103. export default router;