index.js 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508
  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: "thematicAnalysis",
  728. redirect: "thematicAnalysis/comprehensiveAnalysis",
  729. component: () => import("@/views/economicsOperation/thematicAnalysis"),
  730. name: "thematicAnalysis",
  731. meta: {
  732. title: "专题分析",
  733. icon: "svg-ztfx",
  734. permissions: ["jn_ztfx"],
  735. },
  736. children: [
  737. {
  738. path: "comprehensiveAnalysis",
  739. component: () =>
  740. import(
  741. "@/views/economicsOperation/thematicAnalysis/comprehensiveAnalysis"
  742. ),
  743. name: "comprehensiveAnalysis",
  744. meta: {
  745. title: "综合分析",
  746. icon: "",
  747. permissions: ["jn_ztfx_zhfx"],
  748. },
  749. },
  750. {
  751. path: "windEnergy",
  752. component: () =>
  753. import("@/views/economicsOperation/thematicAnalysis/windEnergy"),
  754. name: "windEnergy",
  755. meta: {
  756. title: "风能利用率",
  757. icon: "",
  758. permissions: ["jn_ztfx_fnlyl"],
  759. },
  760. },
  761. {
  762. path: "failure",
  763. component: () =>
  764. import("@/views/economicsOperation/thematicAnalysis/failure"),
  765. name: "failure",
  766. meta: {
  767. title: "五项损失率",
  768. icon: "",
  769. permissions: ["jn_ztfx_wxssl"],
  770. },
  771. },
  772. {
  773. path: "reset",
  774. component: () =>
  775. import("@/views/economicsOperation/thematicAnalysis/reset"),
  776. name: "reset",
  777. meta: {
  778. title: "三率分析",
  779. icon: "",
  780. permissions: ["jn_ztfx_fwjsl"],
  781. },
  782. },
  783. {
  784. path: "MTBF",
  785. component: () =>
  786. import("@/views/economicsOperation/thematicAnalysis/MTBF"),
  787. name: "MTBF",
  788. meta: {
  789. title: "可靠性分析",
  790. icon: "",
  791. permissions: ["jn_ztfx_kkxfx"],
  792. },
  793. },
  794. {
  795. path: "generation",
  796. component: () =>
  797. import("@/views/economicsOperation/thematicAnalysis/generation"),
  798. name: "generation",
  799. meta: {
  800. title: "发电量分析",
  801. icon: "",
  802. permissions: ["jn_ztfx_dlfx"],
  803. },
  804. },
  805. ],
  806. },
  807. //场站分析
  808. {
  809. path: "stationAnalyse",
  810. component: () => import("@/views/economicsOperation/stationAnalyse"),
  811. name: "StationAnalyse",
  812. meta: {
  813. title: "场站分析",
  814. icon: "svg-fddl",
  815. permissions: ["jn_fddlfx"],
  816. },
  817. children: [
  818. {
  819. path: "electricAnalyse",
  820. component: () =>
  821. import(
  822. "@/views/economicsOperation/stationAnalyse/electricAnalyse"
  823. ),
  824. name: "ElectricAnalyse",
  825. meta: {
  826. title: "发电量分析",
  827. icon: "",
  828. permissions: ["jn_gfdlfx"],
  829. },
  830. },
  831. {
  832. path: "stationElectricAnalyse",
  833. component: () =>
  834. import(
  835. "@/views/economicsOperation/stationAnalyse/stationElectricAnalyse"
  836. ),
  837. name: "StationElectricAnalyse",
  838. meta: {
  839. title: "综合场用电量分析",
  840. icon: "",
  841. permissions: ["jn_gfdlfx"],
  842. },
  843. },
  844. {
  845. path: "WindAndPhotovoltaic",
  846. component: () =>
  847. import(
  848. "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic"
  849. ),
  850. name: "WindAndPhotovoltaic",
  851. meta: {
  852. title: "风光资源分析",
  853. icon: "",
  854. permissions: ["jn_gfdlfx"],
  855. },
  856. },
  857. ],
  858. },
  859. //风电分析
  860. {
  861. path: "windAnalyse",
  862. component: () => import("@/views/economicsOperation/windAnalyse"),
  863. name: "WindAnalyse",
  864. meta: {
  865. title: "风电分析",
  866. icon: "svg-fdfx",
  867. permissions: ["jn_xnfx"],
  868. },
  869. children: [
  870. {
  871. path: "powerAnalyse",
  872. component: () =>
  873. import("@/views/economicsOperation/windAnalyse/powerCurve"),
  874. name: "PowerCurve",
  875. meta: {
  876. title: "功率曲线拟合",
  877. icon: "",
  878. permissions: ["jn_xnfx_djxnfx"],
  879. },
  880. },
  881. {
  882. path: "powerSearch",
  883. component: () =>
  884. import("@/views/economicsOperation/windAnalyse/powerSearch"),
  885. name: "PowerSearch",
  886. meta: {
  887. title: "功率曲线查询",
  888. icon: "",
  889. permissions: ["jn_xnfx_djxnfx"],
  890. },
  891. },
  892. {
  893. path: "qxpclfx",
  894. component: () =>
  895. import(
  896. "@/views/economicsOperation/windAnalyse/qxpclfx/index.vue"
  897. ),
  898. name: "Qxpclfx",
  899. meta: {
  900. title: "曲线偏差率分析",
  901. icon: "",
  902. permissions: ["jn_xnfx_djxnfx"],
  903. },
  904. },
  905. {
  906. path: "cutInAndOutAnalysis",
  907. component: () =>
  908. import(
  909. "@/views/economicsOperation/windAnalyse/cutInAndOutAnalysis/index.vue"
  910. ),
  911. name: "CutInAndOutAnalysis",
  912. meta: {
  913. title: "切入切出分析",
  914. icon: "",
  915. permissions: ["jn_glqx_qrqcfx"],
  916. },
  917. },
  918. {
  919. path: "singleWindAnasyle",
  920. component: () =>
  921. import(
  922. "@/views/economicsOperation/windAnalyse/singleWindAnasyle/index.vue"
  923. ),
  924. name: "SingleWindAnasyle",
  925. meta: {
  926. title: "单机性能分析",
  927. icon: "",
  928. permissions: ["jn_xnfx_djxnfx"],
  929. },
  930. },
  931. {
  932. path: "monthlyAnalysis",
  933. component: () =>
  934. import(
  935. "@/views/economicsOperation/windAnalyse/monthlyAnalysis/index.vue"
  936. ),
  937. name: "MonthlyAnalysis",
  938. meta: {
  939. title: "单机月度分析",
  940. icon: "",
  941. permissions: ["jn_xnfx_djydfx"],
  942. },
  943. },
  944. {
  945. path: "performanceAssess",
  946. component: () =>
  947. import(
  948. "@/views/economicsOperation/windAnalyse/performanceAssess/index.vue"
  949. ),
  950. name: "PerformanceAssess",
  951. meta: {
  952. title: "性能等级评估",
  953. icon: "",
  954. permissions: ["jn_glqx_glqxnh"],
  955. },
  956. },
  957. ],
  958. },
  959. //光伏分析
  960. {
  961. path: "photovoltaicAnalyse",
  962. redirect: "analyse/standAloneAnalyse",
  963. component: () =>
  964. import("@/views/economicsOperation/photovoltaicAnalyse"),
  965. name: "PhotovoltaicAnalyse",
  966. meta: {
  967. title: "光伏分析",
  968. icon: "svg-gffx",
  969. permissions: ["jn_xnfx"],
  970. },
  971. children: [
  972. {
  973. path: "powerAnalyse",
  974. component: () =>
  975. import(
  976. "@/views/economicsOperation/photovoltaicAnalyse/powerAnalyse"
  977. ),
  978. name: "PowerAnalyse",
  979. meta: {
  980. title: "功率曲线拟合",
  981. icon: "",
  982. permissions: ["jn_xnfx_djxnfx"],
  983. },
  984. },
  985. {
  986. path: "powerHotAnalyse",
  987. component: () =>
  988. import(
  989. "@/views/economicsOperation/photovoltaicAnalyse/powerHotAnalyse"
  990. ),
  991. name: "PowerHotAnalyse",
  992. meta: {
  993. title: "功率温度分析",
  994. icon: "",
  995. permissions: ["jn_xnfx_djxnfx"],
  996. },
  997. },
  998. {
  999. path: "lslfx",
  1000. component: () =>
  1001. import("@/views/economicsOperation/photovoltaicAnalyse/lslfx"),
  1002. name: "Lslfx",
  1003. meta: {
  1004. title: "离散率分析",
  1005. icon: "",
  1006. permissions: ["jn_xnfx_djxnfx"],
  1007. },
  1008. },
  1009. {
  1010. path: "prAnalyse",
  1011. component: () =>
  1012. import(
  1013. "@/views/economicsOperation/photovoltaicAnalyse/prAnalyse"
  1014. ),
  1015. name: "PrAnalyse",
  1016. meta: {
  1017. title: "PR分析",
  1018. icon: "",
  1019. permissions: ["jn_xnfx_djydfx"],
  1020. },
  1021. },
  1022. {
  1023. path: "performanceEvaluation",
  1024. component: () =>
  1025. import(
  1026. "@/views/economicsOperation/photovoltaicAnalyse/performanceEvaluation"
  1027. ),
  1028. name: "PerformanceEvaluation",
  1029. meta: {
  1030. title: "性能等级评估",
  1031. icon: "",
  1032. permissions: ["jn_glqx_glqxnh"],
  1033. },
  1034. },
  1035. ],
  1036. }, //管控效率
  1037. {
  1038. path: "efficiency",
  1039. redirect: "efficiency/restorationEfficiency",
  1040. component: () => import("@/views/economicsOperation/efficiency"),
  1041. name: "efficiency",
  1042. meta: {
  1043. title: "管控效率",
  1044. icon: "svg-dimension-new",
  1045. permissions: ["jn_slgl"],
  1046. },
  1047. children: [
  1048. {
  1049. path: "restorationEfficiency",
  1050. component: () =>
  1051. import(
  1052. "@/views/economicsOperation/efficiency/restorationEfficiency"
  1053. ),
  1054. name: "restorationEfficiency",
  1055. meta: {
  1056. title: "复位及时率",
  1057. icon: "",
  1058. permissions: ["jn_slgl_fwjsl"],
  1059. },
  1060. },
  1061. {
  1062. path: "consumeEfficiency",
  1063. component: () =>
  1064. import("@/views/economicsOperation/efficiency/consumeEfficiency"),
  1065. name: "consumeEfficiency",
  1066. meta: {
  1067. title: "消缺及时率",
  1068. icon: "",
  1069. permissions: ["jn_slgl_xqjsl"],
  1070. },
  1071. },
  1072. {
  1073. path: "stateEfficiency",
  1074. component: () =>
  1075. import("@/views/economicsOperation/efficiency/stateEfficiency"),
  1076. name: "stateEfficiency",
  1077. meta: {
  1078. title: "状态转换率",
  1079. icon: "",
  1080. permissions: ["jn_slgl_ztzhl"],
  1081. },
  1082. },
  1083. ],
  1084. },
  1085. //综合管控KPI
  1086. {
  1087. path: "comprehensiveControl",
  1088. redirect: "comprehensiveControl/running",
  1089. component: () =>
  1090. import("@/views/economicsOperation/comprehensiveControl"),
  1091. name: "comprehensiveControl",
  1092. meta: {
  1093. title: "综合管控KPI",
  1094. icon: "svg-zhgk",
  1095. permissions: ["jn_zhgk"],
  1096. },
  1097. children: [
  1098. {
  1099. path: "running",
  1100. component: () =>
  1101. import(
  1102. "@/views/economicsOperation/comprehensiveControl/runningKPI/index.vue"
  1103. ),
  1104. name: "running",
  1105. meta: {
  1106. title: "运行KPI",
  1107. icon: "",
  1108. permissions: ["jn_zhgk_yx"],
  1109. },
  1110. },
  1111. {
  1112. path: "maintenance",
  1113. component: () =>
  1114. import(
  1115. "@/views/economicsOperation/comprehensiveControl/maintenanceKPI/index.vue"
  1116. ),
  1117. name: "maintenance",
  1118. meta: {
  1119. title: "检修KPI",
  1120. icon: "",
  1121. permissions: ["jn_zhgk_jx"],
  1122. },
  1123. },
  1124. {
  1125. path: "stationControl",
  1126. component: () =>
  1127. import(
  1128. "@/views/economicsOperation/comprehensiveControl/stationControlKPI/index.vue"
  1129. ),
  1130. name: "stationControl",
  1131. meta: {
  1132. title: "场站管控KPI",
  1133. icon: "",
  1134. permissions: ["jn_zhgk_czgk"],
  1135. },
  1136. },
  1137. ],
  1138. },
  1139. ],
  1140. },
  1141. //智慧检修
  1142. {
  1143. path: "/health",
  1144. redirect: "/health/healthManagement/first",
  1145. component: () => import("@/views/HealthControl"),
  1146. name: "health",
  1147. meta: {
  1148. title: "智慧检修",
  1149. icon: "",
  1150. permissions: ["jn_health"],
  1151. },
  1152. children: [
  1153. {
  1154. path: "healthManagement",
  1155. // redirect: "healthManagement/first",
  1156. component: () => import("@/views/HealthControl/healthManagement"),
  1157. name: "healthManagement",
  1158. meta: {
  1159. title: "健康管理",
  1160. icon: "svg-健康管理",
  1161. permissions: ["jn_jkgl"],
  1162. },
  1163. children: [
  1164. {
  1165. path: "first",
  1166. component: () =>
  1167. import("@/views/HealthControl/healthManagement/first/index.vue"),
  1168. name: "first",
  1169. meta: {
  1170. title: "健康推荐",
  1171. icon: "",
  1172. permissions: ["jn_jkgl_jktj"],
  1173. },
  1174. },
  1175. {
  1176. path: "homepage",
  1177. component: () =>
  1178. import(
  1179. "@/views/HealthControl/healthManagement/homepage/index.vue"
  1180. ),
  1181. name: "homepage",
  1182. meta: {
  1183. title: "健康首页",
  1184. icon: "",
  1185. permissions: ["jn_jkgl_jksy"],
  1186. },
  1187. },
  1188. {
  1189. path: "overview",
  1190. component: () =>
  1191. import(
  1192. "@/views/HealthControl/healthManagement/overview/index.vue"
  1193. ),
  1194. name: "overview",
  1195. meta: {
  1196. title: "健康总览",
  1197. icon: "",
  1198. permissions: ["jn_jkgl_jkzl"],
  1199. },
  1200. },
  1201. {
  1202. path: "healthMatrix",
  1203. component: () =>
  1204. import(
  1205. "@/views/HealthControl/healthManagement/healthMatrix/index.vue"
  1206. ),
  1207. name: "healthMatrix",
  1208. meta: {
  1209. title: "健康矩阵",
  1210. icon: "",
  1211. permissions: ["jn_jkgl_jkjz"],
  1212. },
  1213. },
  1214. {
  1215. path: "healthList",
  1216. component: () =>
  1217. import(
  1218. "@/views/HealthControl/healthManagement/healthList/index.vue"
  1219. ),
  1220. name: "healthList",
  1221. meta: {
  1222. title: "健康列表",
  1223. icon: "",
  1224. permissions: ["jn_jkgl_jklb"],
  1225. },
  1226. },
  1227. {
  1228. path: "badStateAnalyse/:wpId/:wtId",
  1229. component: () =>
  1230. import(
  1231. "@/views/HealthControl/healthManagement/badStateAnalyse/index.vue"
  1232. ),
  1233. name: "badStateAnalyse",
  1234. meta: {
  1235. title: "劣化状态分析",
  1236. icon: "",
  1237. permissions: ["jn_jkgl_lhztfx"],
  1238. },
  1239. },
  1240. // {
  1241. // path: "wtSaturability",
  1242. // component: () =>
  1243. // import(
  1244. // "@/views/HealthControl/healthManagement/wtSaturability/index.vue"
  1245. // ),
  1246. // name: "wtSaturability",
  1247. // meta: {
  1248. // title: "单机饱和度",
  1249. // icon: "",
  1250. // permissions: ["jn_nxfx_djbhd"],
  1251. // },
  1252. // },
  1253. {
  1254. path: "temperatureAnalysis",
  1255. component: () =>
  1256. import(
  1257. "@/views/HealthControl/healthManagement/temperatureAnalysis/index.vue"
  1258. ),
  1259. name: "temperatureAnalysis",
  1260. meta: {
  1261. title: "部件温度分析",
  1262. icon: "",
  1263. permissions: ["jn_nxfx_bjwd"],
  1264. },
  1265. },
  1266. ],
  1267. },
  1268. // {
  1269. // path: "energyEfficAnalyse",
  1270. // redirect: "energyEfficAnalyse/healthPowerCurve",
  1271. // component: () => import("@/views/HealthControl/energyEfficAnalyse"),
  1272. // name: "energyEfficAnalyse",
  1273. // meta: {
  1274. // title: "能效分析",
  1275. // icon: "svg-能效分析",
  1276. // permissions: ["jn_nxfx"],
  1277. // },
  1278. // children: [
  1279. // {
  1280. // path: "evaluationAnalysis",
  1281. // component: () =>
  1282. // import(
  1283. // "@/views/HealthControl/energyEfficAnalyse/evaluationAnalysis/index.vue"
  1284. // ),
  1285. // name: "evaluationAnalysis",
  1286. // meta: {
  1287. // title: "预警评判分析",
  1288. // icon: "",
  1289. // permissions: ["jn_nxfx_yjpp"],
  1290. // },
  1291. // },
  1292. // {
  1293. // path: "malfunctionAnalysis",
  1294. // component: () =>
  1295. // import(
  1296. // "@/views/HealthControl/energyEfficAnalyse/malfunctionAnalysis/index.vue"
  1297. // ),
  1298. // name: "malfunctionAnalysis",
  1299. // meta: {
  1300. // title: "故障评判分析",
  1301. // icon: "",
  1302. // permissions: ["jn_nxfx_gzpp"],
  1303. // },
  1304. // },
  1305. // {
  1306. // path: "powerAnalysis",
  1307. // component: () =>
  1308. // import(
  1309. // "@/views/HealthControl/energyEfficAnalyse/powerAnalysis/index.vue"
  1310. // ),
  1311. // name: "powerAnalysis",
  1312. // meta: {
  1313. // title: "部件功率分析",
  1314. // icon: "",
  1315. // permissions: ["jn_nxfx_gzpp"],
  1316. // },
  1317. // },
  1318. // ],
  1319. // },
  1320. {
  1321. path: "healthDetail",
  1322. redirect: "healthDetail/wpHealth",
  1323. component: () => import("@/views/HealthControl/healthDetail"),
  1324. name: "healthDetail",
  1325. hidden: true,
  1326. meta: {
  1327. title: "健康详情",
  1328. icon: "",
  1329. permissions: ["jn_jkgl"],
  1330. },
  1331. children: [
  1332. {
  1333. path: "wpHealth/:wpId/:wpName?", // 场站健康管理
  1334. name: "health3",
  1335. component: () =>
  1336. import("@/views/HealthControl/healthDetail/wpHealth"),
  1337. meta: {
  1338. title: "场站健康管理",
  1339. icon: "",
  1340. permissions: ["jn_jkgl"],
  1341. },
  1342. },
  1343. {
  1344. path: "wtHealth/:wpId/:wtId", //设备健康详情
  1345. name: "health0",
  1346. component: () =>
  1347. import("@/views/HealthControl/healthDetail/wtHealth"),
  1348. meta: {
  1349. title: "设备健康详情",
  1350. icon: "",
  1351. permissions: ["jn_jkgl"],
  1352. },
  1353. },
  1354. {
  1355. path: "healthTrend/:wpId/:wtId", //设备健康详情
  1356. name: "healthTrend",
  1357. component: () =>
  1358. import("@/views/HealthControl/healthDetail/healthTrend"),
  1359. meta: {
  1360. title: "健康趋势",
  1361. icon: "",
  1362. permissions: ["jn_jkgl"],
  1363. },
  1364. },
  1365. {
  1366. path: "badState/:wpId/:wtId", //设备健康详情
  1367. name: "",
  1368. component: () =>
  1369. import("@/views/HealthControl/healthManagement/badStateAnalyse"),
  1370. meta: {
  1371. title: "劣化状态分析曲线",
  1372. icon: "",
  1373. permissions: ["jn_jkgl"],
  1374. },
  1375. },
  1376. ],
  1377. },
  1378. ],
  1379. },
  1380. // 智能报表
  1381. {
  1382. path: "/others",
  1383. redirect: "/others/report/gjyrbb",
  1384. name: "others",
  1385. meta: {
  1386. title: "智能报表",
  1387. icon: "",
  1388. permissions: ["jn_zhbb"],
  1389. },
  1390. // component: () => import("@/views/report/index copy.vue"),
  1391. component: () => import("@/views/report"),
  1392. children: [
  1393. {
  1394. path: "report",
  1395. redirect: "report/gjyrbb",
  1396. name: "report",
  1397. meta: {
  1398. title: "自定制报表管理",
  1399. icon: "svg-自定制报表管理",
  1400. permissions: ["jn_zdz"],
  1401. },
  1402. component: () => import("@/views/report/stationReport"),
  1403. children: [
  1404. {
  1405. path: "fdxnyrb",
  1406. name: "fdxnyrb",
  1407. component: () => import("@/views/report/stationReport/fdxnyrb"),
  1408. meta: {
  1409. title: "晋能清洁能源风电日报",
  1410. icon: "",
  1411. permissions: ["jn_zdz_fdxnyrb"],
  1412. },
  1413. },
  1414. {
  1415. path: "gfxnyrb",
  1416. name: "gfxnyrb",
  1417. component: () => import("@/views/report/stationReport/gfxnyrb"),
  1418. meta: {
  1419. title: "晋能清洁能源光伏日报",
  1420. icon: "",
  1421. permissions: ["jn_zdz_gfxnyrb"],
  1422. },
  1423. },
  1424. {
  1425. path: "scrb",
  1426. name: "scrb",
  1427. component: () => import("@/views/report/stationReport/scrb"),
  1428. meta: {
  1429. title: "晋能清洁能源生产日报",
  1430. icon: "",
  1431. permissions: ["jn_zdz_scrb"],
  1432. },
  1433. },
  1434. {
  1435. path: "gjyrbb",
  1436. name: "gjyrbb",
  1437. component: () => import("@/views/report/stationReport/rbb"),
  1438. meta: {
  1439. title: "日报表",
  1440. icon: "",
  1441. permissions: ["jn_zdz_rbb"],
  1442. },
  1443. },
  1444. {
  1445. path: "fdczzdy",
  1446. name: "fdczzdy",
  1447. component: () => import("@/views/report/stationReport/fdczzdy"),
  1448. meta: {
  1449. title: "风电场站自定义",
  1450. icon: "",
  1451. permissions: ["jn_zdz_fdcz"],
  1452. },
  1453. },
  1454. {
  1455. path: "fdxmzdy",
  1456. name: "fdxmzdy",
  1457. component: () => import("@/views/report/stationReport/fdxmzdy"),
  1458. meta: {
  1459. title: "风电项目自定义",
  1460. icon: "",
  1461. permissions: ["jn_zdz_fdxm"],
  1462. },
  1463. },
  1464. ],
  1465. },
  1466. {
  1467. path: "electricReport",
  1468. redirect: "electricReport/dmb",
  1469. name: "electricReport",
  1470. meta: {
  1471. title: "电量报表",
  1472. icon: "svg-dlbb",
  1473. permissions: ["jn_dlbb"],
  1474. },
  1475. component: () => import("@/views/electricReport/dmb"),
  1476. children: [
  1477. {
  1478. path: "dmb",
  1479. name: "dmb",
  1480. component: () => import("@/views/electricReport/dmb"),
  1481. meta: {
  1482. title: "底码表",
  1483. icon: "",
  1484. permissions: ["jn_dlbb_dmb"],
  1485. },
  1486. },
  1487. ],
  1488. },
  1489. ],
  1490. },
  1491. ];
  1492. const router = createRouter({
  1493. history: createWebHashHistory(),
  1494. base: "/nem/",
  1495. routes: [...constantRoutes, ...asyncRoutes],
  1496. });
  1497. // router.beforeEach((to, from, next) => {
  1498. // next();
  1499. // });
  1500. export default router;