index.js 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109
  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. },
  227. //经济运行
  228. {
  229. path: "/economicsOperation",
  230. // redirect:
  231. // "/economicsOperation/benchmarkingManagement/performanceRankingList",
  232. // component: () =>
  233. // import("@/views/economicsOperation/benchmarkingManagement"),
  234. component: () => import("@/views/economicsOperation/nxfHomePage"),
  235. name: "economicsOperation",
  236. meta: {
  237. title: "经济运行",
  238. icon: "",
  239. permissions: ["jn_economicsOperation"],
  240. },
  241. children: [
  242. //对标分析
  243. {
  244. path: "benchmarkingManagement",
  245. redirect: "benchmarkingManagement/performanceRankingList",
  246. component: () =>
  247. import("@/views/economicsOperation/benchmarkingManagement"),
  248. name: "benchmarkingManagement",
  249. meta: {
  250. title: "对标分析",
  251. icon: "svg-dbgl",
  252. permissions: ["jn_dbgl"],
  253. },
  254. children: [
  255. {
  256. path: "performanceRankingList",
  257. component: () =>
  258. import(
  259. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/index.vue"
  260. ),
  261. name: "performanceRankingList",
  262. meta: {
  263. title: "绩效榜",
  264. icon: "",
  265. permissions: ["jn_dbgl_jxb"],
  266. },
  267. },
  268. {
  269. path: "decision1Mx", //风机绩效榜明细
  270. name: "decision1Mx",
  271. component: () =>
  272. import(
  273. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/decision1Mx.vue"
  274. ),
  275. meta: {
  276. title: "风机绩效榜明细",
  277. icon: "",
  278. permissions: ["jn_dbgl_jxb"],
  279. },
  280. },
  281. {
  282. path: "loseRate",
  283. component: () =>
  284. import(
  285. "@/views/economicsOperation/benchmarkingManagement/loseRate/index.vue"
  286. ),
  287. name: "loseRate",
  288. meta: {
  289. title: "五项对标损失",
  290. icon: "",
  291. permissions: ["jn_dbgl_wxssl"],
  292. },
  293. },
  294. // {
  295. // path: "companyBenchmarking",
  296. // component: () =>
  297. // import(
  298. // "@/views/economicsOperation/benchmarkingManagement/companyBenchmarking"
  299. // ),
  300. // name: "companyBenchmarking",
  301. // meta: {
  302. // title: "公司对标",
  303. // icon: "",
  304. // permissions: ["jn_dbgl_gsdb"],
  305. // },
  306. // },
  307. {
  308. path: "siteBenchmarking",
  309. component: () =>
  310. import(
  311. "@/views/economicsOperation/benchmarkingManagement/siteBenchmarking"
  312. ),
  313. name: "siteBenchmarking",
  314. meta: {
  315. title: "场内对标",
  316. icon: "",
  317. permissions: ["jn_dbgl_cndb"],
  318. },
  319. },
  320. {
  321. path: "intervalBenchmarking",
  322. component: () =>
  323. import(
  324. "@/views/economicsOperation/benchmarkingManagement/intervalBenchmarking"
  325. ),
  326. name: "intervalBenchmarking",
  327. meta: {
  328. title: "场际对标",
  329. icon: "",
  330. permissions: ["jn_dbgl_cjdb"],
  331. },
  332. },
  333. // {
  334. // path: "valueBenchmarking",
  335. // component: () =>
  336. // import(
  337. // "@/views/economicsOperation/benchmarkingManagement/valueBenchmarking"
  338. // ),
  339. // name: "valueBenchmarking",
  340. // meta: {
  341. // title: "值际对标",
  342. // icon: "",
  343. // },
  344. // },
  345. {
  346. path: "projectBenchmarking",
  347. component: () =>
  348. import(
  349. "@/views/economicsOperation/benchmarkingManagement/projectBenchmarking"
  350. ),
  351. name: "projectBenchmarking",
  352. meta: {
  353. title: "项目对标",
  354. icon: "",
  355. permissions: ["jn_dbgl_xmdb"],
  356. },
  357. },
  358. {
  359. path: "wiringBenchmarking",
  360. component: () =>
  361. import(
  362. "@/views/economicsOperation/benchmarkingManagement/wiringBenchmarking"
  363. ),
  364. name: "wiringBenchmarking",
  365. meta: {
  366. title: "线路对标",
  367. icon: "",
  368. permissions: ["jn_dbgl_xldb"],
  369. },
  370. },
  371. // {
  372. // path: "singleMachineBenchmarking",
  373. // component: () =>
  374. // import(
  375. // "@/views/economicsOperation/benchmarkingManagement/singleMachineBenchmarking"
  376. // ),
  377. // name: "singleMachineBenchmarking",
  378. // meta: {
  379. // title: "单机对标",
  380. // icon: "",
  381. // },
  382. // },
  383. ],
  384. },
  385. //电量损失分解
  386. {
  387. path: "thematicAnalysis",
  388. redirect: "thematicAnalysis/comprehensiveAnalysis",
  389. component: () => import("@/views/economicsOperation/thematicAnalysis"),
  390. name: "thematicAnalysis",
  391. meta: {
  392. title: "电量损失分解",
  393. icon: "svg-ztfx",
  394. permissions: ["jn_ztfx"],
  395. },
  396. children: [
  397. {
  398. path: "comprehensiveAnalysis",
  399. component: () =>
  400. import(
  401. "@/views/economicsOperation/thematicAnalysis/comprehensiveAnalysis"
  402. ),
  403. name: "comprehensiveAnalysis",
  404. meta: {
  405. title: "综合分析",
  406. icon: "",
  407. permissions: ["jn_ztfx_zhfx"],
  408. },
  409. },
  410. {
  411. path: "windEnergy",
  412. component: () =>
  413. import("@/views/economicsOperation/thematicAnalysis/windEnergy"),
  414. name: "windEnergy",
  415. meta: {
  416. title: "风能利用率",
  417. icon: "",
  418. permissions: ["jn_ztfx_fnlyl"],
  419. },
  420. },
  421. {
  422. path: "failure",
  423. component: () =>
  424. import("@/views/economicsOperation/thematicAnalysis/failure"),
  425. name: "failure",
  426. meta: {
  427. title: "五项损失率",
  428. icon: "",
  429. permissions: ["jn_ztfx_wxssl"],
  430. },
  431. },
  432. {
  433. path: "MTBF",
  434. component: () =>
  435. import("@/views/economicsOperation/thematicAnalysis/MTBF"),
  436. name: "MTBF",
  437. meta: {
  438. title: "可靠性分析",
  439. icon: "",
  440. permissions: ["jn_ztfx_kkxfx"],
  441. },
  442. },
  443. {
  444. path: "generation",
  445. component: () =>
  446. import("@/views/economicsOperation/thematicAnalysis/generation"),
  447. name: "generation",
  448. meta: {
  449. title: "发电量分析",
  450. icon: "",
  451. permissions: ["jn_ztfx_dlfx"],
  452. },
  453. },
  454. // {
  455. // path: "windAnalysis",
  456. // component: () =>
  457. // import("@/views/economicsOperation/thematicAnalysis/windAnalysis"),
  458. // name: "windAnalysis",
  459. // meta: {
  460. // title: "损失电量分析",
  461. // icon: "",
  462. // permissions: ["jn_ztfx_dlfx"],
  463. // },
  464. // },
  465. ],
  466. },
  467. //整站分析
  468. {
  469. path: "stationAnalyse",
  470. component: () => import("@/views/economicsOperation/stationAnalyse"),
  471. name: "StationAnalyse",
  472. meta: {
  473. title: "整站分析",
  474. icon: "svg-fddl",
  475. permissions: ["jn_czfx"],
  476. },
  477. children: [
  478. // {
  479. // path: "electricAnalyse",
  480. // component: () =>
  481. // import(
  482. // "@/views/economicsOperation/stationAnalyse/electricAnalyse"
  483. // ),
  484. // name: "ElectricAnalyse",
  485. // meta: {
  486. // title: "发电量分析",
  487. // icon: "",
  488. // permissions: ["jn_czfx_fdlfx"],
  489. // },
  490. // },
  491. {
  492. path: "stationElectricAnalyse",
  493. component: () =>
  494. import(
  495. "@/views/economicsOperation/stationAnalyse/stationElectricAnalyse"
  496. ),
  497. name: "StationElectricAnalyse",
  498. meta: {
  499. title: "综合场用电量分析",
  500. icon: "",
  501. permissions: ["jn_czfx_zhcydlfx"],
  502. },
  503. },
  504. {
  505. path: "WindAndPhotovoltaic",
  506. component: () =>
  507. import(
  508. "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic"
  509. ),
  510. name: "WindAndPhotovoltaic",
  511. meta: {
  512. title: "风资源分析",
  513. icon: "",
  514. permissions: ["jn_czfx_fgzyfx"],
  515. },
  516. },
  517. {
  518. path: "posAnalysis",
  519. component: () =>
  520. import("@/views/economicsOperation/stationAnalyse/posAnalysis/index.vue"),
  521. name: "posAnalysis",
  522. meta: {
  523. title: "微观选址分析",
  524. icon: "",
  525. permissions: ["jn_czfx_fgzyfx"],
  526. },
  527. },
  528. ]
  529. },
  530. //机组分析
  531. {
  532. path: "windAnalyse",
  533. component: () => import("@/views/economicsOperation/windAnalyse"),
  534. name: "WindAnalyse",
  535. meta: {
  536. title: "机组分析",
  537. icon: "svg-fdfx",
  538. permissions: ["jn_fdfx"],
  539. },
  540. children: [
  541. // {
  542. // path: "stateTransition",
  543. // component: () =>
  544. // import(
  545. // "@/views/economicsOperation/windAnalyse/stateTransition/index.vue"
  546. // ),
  547. // name: "stateTransition",
  548. // meta: {
  549. // title: "状态时间分析",
  550. // icon: "",
  551. // permissions: ["jn_fdfx_ztzhfx"],
  552. // },
  553. // },
  554. // {
  555. // path: "timeTransition",
  556. // component: () =>
  557. // import(
  558. // "@/views/economicsOperation/windAnalyse/timeTransition/index.vue"
  559. // ),
  560. // name: "timeTransition",
  561. // meta: {
  562. // title: "状态转换分析",
  563. // icon: "",
  564. // permissions: ["jn_fdfx_ztsjfx"],
  565. // },
  566. // },
  567. {
  568. path: "powerAnalyse",
  569. component: () =>
  570. import("@/views/economicsOperation/windAnalyse/powerCurve"),
  571. name: "PowerCurve",
  572. meta: {
  573. title: "功率曲线拟合",
  574. icon: "",
  575. permissions: ["jn_fdfx_glqxnh"],
  576. },
  577. },
  578. {
  579. path: "powerSearch",
  580. component: () =>
  581. import("@/views/economicsOperation/windAnalyse/powerSearch"),
  582. name: "PowerSearch",
  583. meta: {
  584. title: "功率曲线查询",
  585. icon: "",
  586. permissions: ["jn_fdfx_glqxcx"],
  587. },
  588. },
  589. {
  590. path: "qxpclfx",
  591. component: () =>
  592. import(
  593. "@/views/economicsOperation/windAnalyse/qxpclfx/index.vue"
  594. ),
  595. name: "Qxpclfx",
  596. meta: {
  597. title: "曲线偏差率分析",
  598. icon: "",
  599. permissions: ["jn_fdfx_qxpclfx"],
  600. },
  601. },
  602. {
  603. path: "qxqjpcl",
  604. component: () =>
  605. import(
  606. "@/views/economicsOperation/windAnalyse/qxqjpcl/index.vue"
  607. ),
  608. name: "Qxqjpcl",
  609. meta: {
  610. title: "曲线区间偏差率分析",
  611. icon: "",
  612. permissions: ["jn_fdfx_qxpclfx"],
  613. },
  614. },
  615. {
  616. path: "cutInAndOutAnalysis",
  617. component: () =>
  618. import(
  619. "@/views/economicsOperation/windAnalyse/cutInAndOutAnalysis/index.vue"
  620. ),
  621. name: "CutInAndOutAnalysis",
  622. meta: {
  623. title: "切入切出分析",
  624. icon: "",
  625. permissions: ["jn_fdfx_qrqcfx"],
  626. },
  627. },
  628. {
  629. path: "singleWindAnasyle",
  630. component: () =>
  631. import(
  632. "@/views/economicsOperation/windAnalyse/singleWindAnasyle/index.vue"
  633. ),
  634. name: "SingleWindAnasyle",
  635. meta: {
  636. title: "单机性能分析",
  637. icon: "",
  638. permissions: ["jn_fdfx_djxnfx"],
  639. },
  640. },
  641. {
  642. path: "monthlyAnalysis",
  643. component: () =>
  644. import(
  645. "@/views/economicsOperation/windAnalyse/monthlyAnalysis/index.vue"
  646. ),
  647. name: "MonthlyAnalysis",
  648. meta: {
  649. title: "单机月度分析",
  650. icon: "",
  651. permissions: ["jn_fdfx_djydfx"],
  652. },
  653. },
  654. {
  655. path: "performanceAssess",
  656. component: () =>
  657. import(
  658. "@/views/economicsOperation/windAnalyse/performanceAssess/index.vue"
  659. ),
  660. name: "PerformanceAssess",
  661. meta: {
  662. title: "性能等级评估",
  663. icon: "",
  664. permissions: ["jn_fdfx_xndjpg"],
  665. },
  666. },
  667. {
  668. path: "partsTemperatureAnalyse", // 各出力部件温度分析
  669. name: "partsTemperatureAnalyse",
  670. component: () =>
  671. import("@/views/IntegratedAlarm/reliability/partsTemperatureAnalyse/index2.vue"),
  672. meta: {
  673. title: "各出力部件温度分析",
  674. icon: "",
  675. permissions: ["jn_reliability_bjfx"],
  676. },
  677. },
  678. ],
  679. },
  680. //光伏分析
  681. // {
  682. // path: "photovoltaicAnalyse",
  683. // redirect: "analyse/standAloneAnalyse",
  684. // component: () =>
  685. // import("@/views/economicsOperation/photovoltaicAnalyse"),
  686. // name: "PhotovoltaicAnalyse",
  687. // meta: {
  688. // title: "光伏分析",
  689. // icon: "svg-gffx",
  690. // permissions: ["jn_gffx"],
  691. // },
  692. // children: [
  693. // {
  694. // path: "gfstateTransition",
  695. // component: () =>
  696. // import(
  697. // "@/views/economicsOperation/photovoltaicAnalyse/stateTransition/index.vue"
  698. // ),
  699. // name: "gfstateTransition",
  700. // meta: {
  701. // title: "状态时间分析",
  702. // icon: "",
  703. // permissions: ["jn_gffx_ztzhfx"],
  704. // },
  705. // },
  706. // {
  707. // path: "gftimeTransition",
  708. // component: () =>
  709. // import(
  710. // "@/views/economicsOperation/photovoltaicAnalyse/timeTransition/index.vue"
  711. // ),
  712. // name: "gftimeTransition",
  713. // meta: {
  714. // title: "状态转换分析",
  715. // icon: "",
  716. // permissions: ["jn_gffx_ztsjfx"],
  717. // },
  718. // },
  719. // {
  720. // path: "powerHotAnalyse",
  721. // component: () =>
  722. // import(
  723. // "@/views/economicsOperation/photovoltaicAnalyse/powerHotAnalyse"
  724. // ),
  725. // name: "PowerHotAnalyse",
  726. // meta: {
  727. // title: "功率曲线拟合",
  728. // icon: "",
  729. // permissions: ["jn_gffx_glwdfx"],
  730. // },
  731. // },
  732. // {
  733. // path: "powerAnalyse",
  734. // component: () =>
  735. // import(
  736. // "@/views/economicsOperation/photovoltaicAnalyse/powerAnalyse"
  737. // ),
  738. // name: "PowerAnalyse",
  739. // meta: {
  740. // title: "功率曲线查询",
  741. // icon: "",
  742. // permissions: ["jn_gffx_glqxnh"],
  743. // },
  744. // },
  745. // {
  746. // path: "lslfx",
  747. // component: () =>
  748. // import("@/views/economicsOperation/photovoltaicAnalyse/lslfx"),
  749. // name: "Lslfx",
  750. // meta: {
  751. // title: "离散率分析",
  752. // icon: "",
  753. // permissions: ["jn_gffx_lslfx"],
  754. // },
  755. // },
  756. // {
  757. // path: "prAnalyse",
  758. // component: () =>
  759. // import(
  760. // "@/views/economicsOperation/photovoltaicAnalyse/prAnalyse"
  761. // ),
  762. // name: "PrAnalyse",
  763. // meta: {
  764. // title: "系统效率分析",
  765. // icon: "",
  766. // permissions: ["jn_gffx_xtxlfx"],
  767. // },
  768. // },
  769. // {
  770. // path: "performanceEvaluation",
  771. // component: () =>
  772. // import(
  773. // "@/views/economicsOperation/photovoltaicAnalyse/performanceEvaluation"
  774. // ),
  775. // name: "PerformanceEvaluation",
  776. // meta: {
  777. // title: "性能等级评估",
  778. // icon: "",
  779. // permissions: ["jn_gffx_xndjpg"],
  780. // },
  781. // },
  782. // ],
  783. // },
  784. //运维三率
  785. {
  786. path: "efficiency",
  787. redirect: "efficiency/restorationEfficiency",
  788. component: () => import("@/views/economicsOperation/efficiency"),
  789. name: "efficiency",
  790. meta: {
  791. title: "运维三率",
  792. icon: "svg-dimension-new",
  793. permissions: ["jn_slgl"],
  794. },
  795. children: [
  796. {
  797. path: "restorationEfficiency",
  798. component: () =>
  799. import(
  800. "@/views/economicsOperation/efficiency/restorationEfficiency"
  801. ),
  802. name: "restorationEfficiency",
  803. meta: {
  804. title: "复位及时率",
  805. icon: "",
  806. permissions: ["jn_slgl_fwjsl"],
  807. },
  808. },
  809. {
  810. path: "consumeEfficiency",
  811. component: () =>
  812. import("@/views/economicsOperation/efficiency/consumeEfficiency"),
  813. name: "consumeEfficiency",
  814. meta: {
  815. title: "消缺及时率",
  816. icon: "",
  817. permissions: ["jn_slgl_xqjsl"],
  818. },
  819. },
  820. {
  821. path: "stateEfficiency",
  822. component: () =>
  823. import("@/views/economicsOperation/efficiency/stateEfficiency"),
  824. name: "stateEfficiency",
  825. meta: {
  826. title: "状态转换率",
  827. icon: "",
  828. permissions: ["jn_slgl_ztzhl"],
  829. },
  830. },
  831. ],
  832. },
  833. // {
  834. // path: "healthReport",
  835. // component: () => import("@/views/economicsOperation/healthReport"),
  836. // name: "healthReport",
  837. // meta: {
  838. // title: "健康评价报告",
  839. // icon: "svg-zhgk",
  840. // permissions: ["jn_slgl"],
  841. // },
  842. // },
  843. {
  844. path: "rateAnalysis", // 对风偏差分析
  845. name: "rateAnalysis",
  846. component: () => import("@/views/rateAnalysis/index"),
  847. meta: {
  848. title: "对风偏差分析",
  849. icon: "svg-environment",
  850. permissions: ["jn_alarmConfig"],
  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;