index.js 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  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/about",
  24. // name: "About",
  25. // component: () =>
  26. // import(/* webpackChunkName: "about" */ "../views/About.vue"),
  27. // },
  28. // {
  29. // path: "/sisView",
  30. // name: "sisView",
  31. // component: () =>
  32. // import(/* webpackChunkName: "sisView" */ "../views/sisView/index.vue"),
  33. // },
  34. // {
  35. // path: "/monitor/status", // 状态监视
  36. // name: "Status",
  37. // component: () =>
  38. // import(
  39. // /* webpackChunkName: "status" */ "@/views/stateMonitor/Status/Status.vue"
  40. // ),
  41. // },
  42. // {
  43. // path: "/monitor/agc", // AGC 监视
  44. // name: "Agc",
  45. // component: () =>
  46. // import(/* webpackChunkName: "agc" */ "@/views/stateMonitor/Agc/Agc.vue"),
  47. // },
  48. //安全监视
  49. {
  50. path: "/stateMonitor",
  51. redirect: "/stateMonitor/lightmatrix",
  52. component: () => import("@/views/stateMonitor"),
  53. name: "stateMonitor",
  54. meta: {
  55. title: "安全监视",
  56. icon: "",
  57. permissions: ["jn_stateMonitor", "*:*:*"],
  58. },
  59. children: [
  60. {
  61. path: "lightmatrix", // 基础矩阵
  62. name: "LightMatrix",
  63. component: () => import("@/views/stateMonitor/LightMatrix"),
  64. meta: {
  65. title: "基础矩阵",
  66. icon: "svg-matrix",
  67. permissions: ["jn_jcjz", "*:*:*"],
  68. },
  69. },
  70. {
  71. path: "detailmatrix", // 明细矩阵
  72. name: "DetailMatrix",
  73. component: () => import("@/views/stateMonitor/DetailMatrix"),
  74. meta: {
  75. title: "明细矩阵",
  76. icon: "svg-mx-matrix",
  77. permissions: ["jn_mxjz", "*:*:*"],
  78. },
  79. },
  80. {
  81. path: "zhzb", // 综合指标统计
  82. name: "zhzb",
  83. component: () =>
  84. import(
  85. /* webpackChunkName: "status" */ "@/views/stateMonitor/zhzb/zhzb.vue"
  86. ),
  87. meta: {
  88. title: "综合指标",
  89. icon: "svg-自定制报表管理",
  90. permissions: ["jn_zhzb", "*:*:*"],
  91. },
  92. },
  93. {
  94. path: "factoryMonitor",
  95. redirect: "factoryMonitor/windPowerPlant",
  96. component: () => import("@/views/stateMonitor/factoryMonitor"),
  97. name: "factoryMonitor",
  98. meta: {
  99. title: "厂站监视",
  100. icon: "svg-single-station-surveillance",
  101. permissions: ["jn_czjs", "*:*:*"],
  102. },
  103. children: [
  104. {
  105. path: "windPowerPlant",
  106. redirect: { name: "windhome" },
  107. component: () =>
  108. import("@/views/stateMonitor/factoryMonitor/windPowerPlant"),
  109. name: "windPowerPlant",
  110. meta: {
  111. title: "风电场站",
  112. icon: "",
  113. permissions: ["jn_fdcz", "*:*:*"],
  114. },
  115. children: [
  116. {
  117. path: "windhome",
  118. component: () =>
  119. import(
  120. "@/views/stateMonitor/factoryMonitor/windPowerPlant/windhome"
  121. ),
  122. name: "windhome",
  123. meta: {
  124. title: "场站监视",
  125. icon: "svg-station-surveillance",
  126. permissions: ["jn_fdcz_czjs", "*:*:*"],
  127. },
  128. },
  129. {
  130. path: "DataTarget",
  131. component: () =>
  132. import(
  133. "@/views/stateMonitor/factoryMonitor/windPowerPlant/DataTarget"
  134. ),
  135. name: "DataTarget",
  136. meta: {
  137. title: "数据指标",
  138. icon: "svg-s指标列表",
  139. permissions: ["jn_fdcz_sjzb", "*:*:*"],
  140. },
  141. },
  142. {
  143. path: "matrixMonitor",
  144. component: () =>
  145. import(
  146. "@/views/stateMonitor/factoryMonitor/windPowerPlant/matrixMonitor"
  147. ),
  148. name: "matrixMonitor",
  149. meta: {
  150. title: "矩阵监视",
  151. icon: "svg-matrix",
  152. permissions: ["jn_fdcz_jzjs", "*:*:*"],
  153. },
  154. },
  155. {
  156. path: "draughtFan",
  157. component: () =>
  158. import(
  159. "@/views/stateMonitor/factoryMonitor/windPowerPlant/draughtFan"
  160. ),
  161. name: "draughtFan",
  162. meta: {
  163. title: "风机设备",
  164. icon: "svg-wind-site",
  165. permissions: ["jn_fdcz_fjsb", "*:*:*"],
  166. },
  167. },
  168. {
  169. path: "boosterStation",
  170. component: () =>
  171. import(
  172. "@/views/stateMonitor/factoryMonitor/windPowerPlant/boosterStation"
  173. ),
  174. name: "boosterStation",
  175. meta: {
  176. title: "升压站",
  177. icon: "svg-s升压站",
  178. permissions: ["jn_fdcz_syz", "*:*:*"],
  179. },
  180. },
  181. {
  182. path: "windPower",
  183. component: () =>
  184. import(
  185. "@/views/stateMonitor/factoryMonitor/windPowerPlant/windPower"
  186. ),
  187. name: "windPower",
  188. meta: {
  189. title: "测风塔",
  190. permissions: ["jn_fdcz_cft", "*:*:*"],
  191. icon: "svg-s测风塔",
  192. },
  193. },
  194. {
  195. path: "geomorphologicMap",
  196. component: () =>
  197. import(
  198. "@/views/stateMonitor/factoryMonitor/windPowerPlant/geomorphologicMap"
  199. ),
  200. name: "geomorphologicMap",
  201. meta: {
  202. title: "地貌图",
  203. permissions: ["jn_fdcz_dmt", "*:*:*"],
  204. icon: "svg-s地图",
  205. },
  206. },
  207. ],
  208. },
  209. {
  210. path: "photovoltaic",
  211. redirect: { name: "lighthome" },
  212. component: () =>
  213. import("@/views/stateMonitor/factoryMonitor/photovoltaic"),
  214. name: "photovoltaic",
  215. meta: {
  216. title: "光伏场站",
  217. icon: "",
  218. permissions: ["jn_gfcz", "*:*:*"],
  219. },
  220. children: [
  221. {
  222. path: "lighthome",
  223. component: () =>
  224. import(
  225. "@/views/stateMonitor/factoryMonitor/photovoltaic/lighthome"
  226. ),
  227. name: "lighthome",
  228. meta: {
  229. title: "场站监视",
  230. icon: "svg-station-surveillance",
  231. permissions: ["jn_gfcz_czjs", "*:*:*"],
  232. },
  233. },
  234. {
  235. path: "lightDataTarget",
  236. component: () =>
  237. import(
  238. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightDataTarget"
  239. ),
  240. name: "lightDataTarget",
  241. meta: {
  242. title: "数据指标",
  243. permissions: ["jn_gfcz_sjzb", "*:*:*"],
  244. icon: "svg-s指标列表",
  245. },
  246. },
  247. {
  248. path: "lightMatrixMonitor",
  249. component: () =>
  250. import(
  251. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrixMonitor"
  252. ),
  253. name: "lightMatrixMonitor",
  254. meta: {
  255. title: "矩阵监视",
  256. permissions: ["jn_gfcz_jzjs", "*:*:*"],
  257. icon: "svg-matrix",
  258. },
  259. },
  260. {
  261. path: "photovoltaicFacility",
  262. component: () =>
  263. import(
  264. "@/views/stateMonitor/factoryMonitor/photovoltaic/photovoltaicFacility"
  265. ),
  266. name: "photovoltaicFacility",
  267. meta: {
  268. title: "光伏设备",
  269. permissions: ["jn_gfcz_gfsb", "*:*:*"],
  270. icon: "svg-photovoltaic",
  271. },
  272. },
  273. {
  274. path: "lightBoosterStation",
  275. component: () =>
  276. import(
  277. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightBoosterStation"
  278. ),
  279. name: "lightBoosterStation",
  280. meta: {
  281. title: "升压站",
  282. permissions: ["jn_gfcz_syz", "*:*:*"],
  283. icon: "svg-s升压站",
  284. },
  285. },
  286. {
  287. path: "lightGeomorphologicMap",
  288. component: () =>
  289. import(
  290. "@/views/stateMonitor/factoryMonitor/photovoltaic/lightGeomorphologicMap"
  291. ),
  292. name: "lightGeomorphologicMap",
  293. meta: {
  294. title: "地貌图",
  295. permissions: ["jn_gfcz_dmt", "*:*:*"],
  296. icon: "svg-s地图",
  297. },
  298. },
  299. ],
  300. },
  301. ],
  302. },
  303. {
  304. path: "alarmCenter", // 报警列表
  305. name: "alarmCenter",
  306. component: () => import("@/views/stateMonitor/alarmCenter"),
  307. meta: {
  308. title: "综合报警",
  309. icon: "svg-alarm-center",
  310. permissions: ["jn_alarm", "*:*:*"],
  311. },
  312. children: [
  313. {
  314. path: "commonAlarm", // 报警列表
  315. name: "commonAlarm",
  316. component: () =>
  317. import("@/views/stateMonitor/alarmCenter/commonAlarm"),
  318. meta: {
  319. title: "报警列表",
  320. icon: "",
  321. permissions: ["jn_alarm_bjlb", "*:*:*"],
  322. },
  323. },
  324. ],
  325. },
  326. ],
  327. },
  328. // 经济运行
  329. {
  330. path: "/economicsOperation",
  331. redirect:
  332. "/economicsOperation/benchmarkingManagement/performanceRankingList",
  333. component: () =>
  334. import("@/views/economicsOperation/benchmarkingManagement"),
  335. name: "economicsOperation",
  336. meta: {
  337. title: "经济运行",
  338. icon: "",
  339. permissions: ["jn_economicsOperation", "*:*:*"],
  340. },
  341. children: [
  342. // {
  343. // path: "homePage",
  344. // component: () => import("@/views/economicsOperation/homePage"),
  345. // name: "homePage",
  346. // meta: {
  347. // title: "首页",
  348. // icon: "icon-Simple-matrix",
  349. // },
  350. // },
  351. {
  352. path: "benchmarkingManagement",
  353. redirect: "benchmarkingManagement/performanceRankingList",
  354. component: () =>
  355. import("@/views/economicsOperation/benchmarkingManagement"),
  356. name: "benchmarkingManagement",
  357. meta: {
  358. title: "对标管理",
  359. icon: "svg-dbgl",
  360. permissions: ["jn_dbgl", "*:*:*"],
  361. },
  362. children: [
  363. {
  364. path: "performanceRankingList",
  365. component: () =>
  366. import(
  367. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/index.vue"
  368. ),
  369. name: "performanceRankingList",
  370. meta: {
  371. title: "风机绩效榜",
  372. icon: "",
  373. permissions: ["jn_dbgl_jxb", "*:*:*"],
  374. },
  375. },
  376. {
  377. path: "decision1Mx", //风机绩效榜明细
  378. name: "decision1Mx",
  379. component: () =>
  380. import(
  381. "@/views/economicsOperation/benchmarkingManagement/performanceRankingList/decision1Mx.vue"
  382. ),
  383. meta: {
  384. title: "风机绩效榜明细",
  385. icon: "",
  386. permissions: ["jn_dbgl_jxb", "*:*:*"],
  387. },
  388. },
  389. {
  390. path: "loseRate",
  391. component: () =>
  392. import(
  393. "@/views/economicsOperation/benchmarkingManagement/loseRate/index.vue"
  394. ),
  395. name: "loseRate",
  396. meta: {
  397. title: "五项损失率",
  398. icon: "",
  399. permissions: ["jn_dbgl_wxssl", "*:*:*"],
  400. },
  401. },
  402. // {
  403. // path: "companyBenchmarking",
  404. // component: () =>
  405. // import(
  406. // "@/views/economicsOperation/benchmarkingManagement/companyBenchmarking"
  407. // ),
  408. // name: "companyBenchmarking",
  409. // meta: {
  410. // title: "公司对标",
  411. // icon: "",
  412. // permissions: ["jn_dbgl_gsdb", "*:*:*"],
  413. // },
  414. // },
  415. {
  416. path: "siteBenchmarking",
  417. component: () =>
  418. import(
  419. "@/views/economicsOperation/benchmarkingManagement/siteBenchmarking"
  420. ),
  421. name: "siteBenchmarking",
  422. meta: {
  423. title: "场内对标",
  424. icon: "",
  425. permissions: ["jn_dbgl_cndb", "*:*:*"],
  426. },
  427. },
  428. {
  429. path: "intervalBenchmarking",
  430. component: () =>
  431. import(
  432. "@/views/economicsOperation/benchmarkingManagement/intervalBenchmarking"
  433. ),
  434. name: "intervalBenchmarking",
  435. meta: {
  436. title: "场际对标",
  437. icon: "",
  438. permissions: ["jn_dbgl_cjdb", "*:*:*"],
  439. },
  440. },
  441. // {
  442. // path: "valueBenchmarking",
  443. // component: () =>
  444. // import(
  445. // "@/views/economicsOperation/benchmarkingManagement/valueBenchmarking"
  446. // ),
  447. // name: "valueBenchmarking",
  448. // meta: {
  449. // title: "值际对标",
  450. // icon: "",
  451. // },
  452. // },
  453. {
  454. path: "projectBenchmarking",
  455. component: () =>
  456. import(
  457. "@/views/economicsOperation/benchmarkingManagement/projectBenchmarking"
  458. ),
  459. name: "projectBenchmarking",
  460. meta: {
  461. title: "项目对标",
  462. icon: "",
  463. permissions: ["jn_dbgl_xmdb", "*:*:*"],
  464. },
  465. },
  466. {
  467. path: "wiringBenchmarking",
  468. component: () =>
  469. import(
  470. "@/views/economicsOperation/benchmarkingManagement/wiringBenchmarking"
  471. ),
  472. name: "wiringBenchmarking",
  473. meta: {
  474. title: "线路对标",
  475. icon: "",
  476. permissions: ["jn_dbgl_xldb", "*:*:*"],
  477. },
  478. },
  479. // {
  480. // path: "singleMachineBenchmarking",
  481. // component: () =>
  482. // import(
  483. // "@/views/economicsOperation/benchmarkingManagement/singleMachineBenchmarking"
  484. // ),
  485. // name: "singleMachineBenchmarking",
  486. // meta: {
  487. // title: "单机对标",
  488. // icon: "",
  489. // },
  490. // },
  491. ],
  492. },
  493. {
  494. path: "efficiency",
  495. redirect: "efficiency/restorationEfficiency",
  496. component: () => import("@/views/economicsOperation/efficiency"),
  497. name: "efficiency",
  498. meta: {
  499. title: "三率",
  500. icon: "svg-slgl",
  501. permissions: ["jn_slgl", "*:*:*"],
  502. },
  503. children: [
  504. {
  505. path: "restorationEfficiency",
  506. component: () =>
  507. import(
  508. "@/views/economicsOperation/efficiency/restorationEfficiency"
  509. ),
  510. name: "restorationEfficiency",
  511. meta: {
  512. title: "复位及时率",
  513. icon: "",
  514. permissions: ["jn_slgl_fwjsl", "*:*:*"],
  515. },
  516. },
  517. {
  518. path: "consumeEfficiency",
  519. component: () =>
  520. import("@/views/economicsOperation/efficiency/consumeEfficiency"),
  521. name: "consumeEfficiency",
  522. meta: {
  523. title: "消缺及时率",
  524. icon: "",
  525. permissions: ["jn_slgl_xqjsl", "*:*:*"],
  526. },
  527. },
  528. {
  529. path: "stateEfficiency",
  530. component: () =>
  531. import("@/views/economicsOperation/efficiency/stateEfficiency"),
  532. name: "stateEfficiency",
  533. meta: {
  534. title: "状态转换率",
  535. icon: "",
  536. permissions: ["jn_slgl_ztzhl", "*:*:*"],
  537. },
  538. },
  539. ],
  540. },
  541. {
  542. path: "analyse",
  543. redirect: "analyse/standAloneAnalyse",
  544. component: () => import("@/views/economicsOperation/analyse"),
  545. name: "analyse",
  546. meta: {
  547. title: "性能分析",
  548. icon: "svg-dimension-new",
  549. permissions: ["jn_xnfx", "*:*:*"],
  550. },
  551. children: [
  552. {
  553. path: "standAloneAnalyse",
  554. component: () =>
  555. import("@/views/economicsOperation/analyse/standAloneAnalyse"),
  556. name: "standAloneAnalyse",
  557. meta: {
  558. title: "单机性能分析",
  559. icon: "",
  560. permissions: ["jn_xnfx_djxnfx", "*:*:*"],
  561. },
  562. },
  563. {
  564. path: "monthlyAnalysis",
  565. component: () =>
  566. import("@/views/economicsOperation/analyse/monthlyAnalysis"),
  567. name: "monthlyAnalysis",
  568. meta: {
  569. title: "单机月度分析",
  570. icon: "",
  571. permissions: ["jn_xnfx_djydfx", "*:*:*"],
  572. },
  573. },
  574. ],
  575. },
  576. {
  577. path: "performanceAnalyse",
  578. redirect: "performanceAnalyse/standAloneAnalyse",
  579. component: () =>
  580. import("@/views/economicsOperation/performanceAnalyse"),
  581. name: "performanceAnalyse",
  582. meta: {
  583. title: "性能评估",
  584. icon: "svg-fjfx",
  585. permissions: ["jn_xndjpg", "*:*:*"],
  586. },
  587. children: [
  588. {
  589. path: "performanceAssess",
  590. component: () =>
  591. import(
  592. "@/views/economicsOperation/performanceAnalyse/performanceAssess"
  593. ),
  594. name: "performanceAssess",
  595. meta: {
  596. title: "性能等级评估",
  597. icon: "",
  598. permissions: ["jn_xndjpg", "*:*:*"],
  599. },
  600. },
  601. ],
  602. },
  603. {
  604. path: "powerCurve",
  605. redirect: "powerCurve/powerLinefitting",
  606. component: () => import("@/views/economicsOperation/powerCurve"),
  607. name: "powerCurve",
  608. meta: {
  609. title: "功率曲线",
  610. icon: "svg-power-curve",
  611. permissions: ["jn_glqx", "*:*:*"],
  612. },
  613. children: [
  614. {
  615. path: "powerLinefitting",
  616. component: () =>
  617. import("@/views/economicsOperation/powerCurve/powerLinefitting"),
  618. name: "powerLinefitting",
  619. meta: {
  620. title: "功率曲线拟合",
  621. icon: "",
  622. permissions: ["jn_glqx_glqxnh", "*:*:*"],
  623. },
  624. },
  625. {
  626. path: "cutInAndOutAnalysis",
  627. component: () =>
  628. import(
  629. "@/views/economicsOperation/powerCurve/cutInAndOutAnalysis"
  630. ),
  631. name: "cutInAndOutAnalysis",
  632. meta: {
  633. title: "切入切出分析",
  634. icon: "",
  635. permissions: ["jn_glqx_qrqcfx", "*:*:*"],
  636. },
  637. },
  638. ],
  639. },
  640. {
  641. path: "thematicAnalysis",
  642. redirect: "thematicAnalysis/comprehensiveAnalysis",
  643. component: () => import("@/views/economicsOperation/thematicAnalysis"),
  644. name: "thematicAnalysis",
  645. meta: {
  646. title: "专题分析",
  647. icon: "svg-ztfx",
  648. permissions: ["jn_ztfx", "*:*:*"],
  649. },
  650. children: [
  651. {
  652. path: "comprehensiveAnalysis",
  653. component: () =>
  654. import(
  655. "@/views/economicsOperation/thematicAnalysis/comprehensiveAnalysis"
  656. ),
  657. name: "comprehensiveAnalysis",
  658. meta: {
  659. title: "综合分析",
  660. icon: "",
  661. permissions: ["jn_ztfx_zhfx", "*:*:*"],
  662. },
  663. },
  664. {
  665. path: "windEnergy",
  666. component: () =>
  667. import("@/views/economicsOperation/thematicAnalysis/windEnergy"),
  668. name: "windEnergy",
  669. meta: {
  670. title: "风能利用率",
  671. icon: "",
  672. permissions: ["jn_ztfx_fnlyl", "*:*:*"],
  673. },
  674. },
  675. {
  676. path: "failure",
  677. component: () =>
  678. import("@/views/economicsOperation/thematicAnalysis/failure"),
  679. name: "failure",
  680. meta: {
  681. title: "五项损失率",
  682. icon: "",
  683. permissions: ["jn_ztfx_wxssl", "*:*:*"],
  684. },
  685. },
  686. {
  687. path: "reset",
  688. component: () =>
  689. import("@/views/economicsOperation/thematicAnalysis/reset"),
  690. name: "reset",
  691. meta: {
  692. title: "三率分析",
  693. icon: "",
  694. permissions: ["jn_ztfx_fwjsl", "*:*:*"],
  695. },
  696. },
  697. {
  698. path: "MTBF",
  699. component: () =>
  700. import("@/views/economicsOperation/thematicAnalysis/MTBF"),
  701. name: "MTBF",
  702. meta: {
  703. title: "可靠性分析",
  704. icon: "",
  705. permissions: ["jn_ztfx_kkxfx", "*:*:*"],
  706. },
  707. },
  708. {
  709. path: "generation",
  710. component: () =>
  711. import("@/views/economicsOperation/thematicAnalysis/generation"),
  712. name: "generation",
  713. meta: {
  714. title: "发电量分析",
  715. icon: "",
  716. permissions: ["jn_ztfx_dlfx", "*:*:*"],
  717. },
  718. },
  719. ],
  720. },
  721. // {
  722. // path: "reportForms",
  723. // redirect: "reportForms/newEnergyDaily",
  724. // component: () => import("@/views/economicsOperation/reportForms"),
  725. // name: "reportForms",
  726. // meta: {
  727. // title: "报表",
  728. // icon: "icon-dimension",
  729. // },
  730. // children: [
  731. // {
  732. // path: "newEnergyDaily",
  733. // component: () =>
  734. // import("@/views/economicsOperation/reportForms/newEnergyDaily"),
  735. // name: "newEnergyDaily",
  736. // meta: {
  737. // title: "新能源日报",
  738. // icon: "",
  739. // },
  740. // },
  741. // {
  742. // path: "newEnergyMonthly",
  743. // component: () =>
  744. // import("@/views/economicsOperation/reportForms/newEnergyMonthly"),
  745. // name: "newEnergyMonthly",
  746. // meta: {
  747. // title: "新能源月报",
  748. // icon: "",
  749. // },
  750. // },
  751. // {
  752. // path: "specifcGravity",
  753. // component: () =>
  754. // import("@/views/economicsOperation/reportForms/specifcGravity"),
  755. // name: "specifcGravity",
  756. // meta: {
  757. // title: "各风场生产月报",
  758. // icon: "",
  759. // },
  760. // },
  761. // {
  762. // path: "windMonthly",
  763. // component: () =>
  764. // import("@/views/economicsOperation/reportForms/windMonthly"),
  765. // name: "windMonthly",
  766. // meta: {
  767. // title: "新能源月报",
  768. // icon: "",
  769. // },
  770. // },
  771. // ],
  772. // },
  773. ],
  774. },
  775. //智慧检修
  776. {
  777. path: "/health",
  778. redirect: "/health/healthManagement/first",
  779. component: () => import("@/views/HealthControl"),
  780. name: "health",
  781. meta: {
  782. title: "智慧检修",
  783. icon: "",
  784. permissions: ["jn_health", "*:*:*"],
  785. },
  786. children: [
  787. {
  788. path: "healthManagement",
  789. // redirect: "healthManagement/first",
  790. component: () => import("@/views/HealthControl/healthManagement"),
  791. name: "healthManagement",
  792. meta: {
  793. title: "健康管理",
  794. icon: "svg-健康管理",
  795. permissions: ["jn_jkgl", "*:*:*"],
  796. },
  797. children: [
  798. {
  799. path: "first",
  800. component: () =>
  801. import("@/views/HealthControl/healthManagement/first/index.vue"),
  802. name: "first",
  803. meta: {
  804. title: "健康推荐",
  805. icon: "",
  806. permissions: ["jn_jkgl_jktj", "*:*:*"],
  807. },
  808. },
  809. {
  810. path: "homepage",
  811. component: () =>
  812. import(
  813. "@/views/HealthControl/healthManagement/homepage/index.vue"
  814. ),
  815. name: "homepage",
  816. meta: {
  817. title: "健康首页",
  818. icon: "",
  819. permissions: ["jn_jkgl_jksy", "*:*:*"],
  820. },
  821. },
  822. {
  823. path: "overview",
  824. component: () =>
  825. import(
  826. "@/views/HealthControl/healthManagement/overview/index.vue"
  827. ),
  828. name: "overview",
  829. meta: {
  830. title: "健康总览",
  831. icon: "",
  832. permissions: ["jn_jkgl_jkzl", "*:*:*"],
  833. },
  834. },
  835. {
  836. path: "healthMatrix",
  837. component: () =>
  838. import(
  839. "@/views/HealthControl/healthManagement/healthMatrix/index.vue"
  840. ),
  841. name: "healthMatrix",
  842. meta: {
  843. title: "健康矩阵",
  844. icon: "",
  845. permissions: ["jn_jkgl_jkjz", "*:*:*"],
  846. },
  847. },
  848. {
  849. path: "healthList",
  850. component: () =>
  851. import(
  852. "@/views/HealthControl/healthManagement/healthList/index.vue"
  853. ),
  854. name: "healthList",
  855. meta: {
  856. title: "健康列表",
  857. icon: "",
  858. permissions: ["jn_jkgl_jklb", "*:*:*"],
  859. },
  860. },
  861. {
  862. path: "badStateAnalyse/:wpId/:wtId",
  863. component: () =>
  864. import(
  865. "@/views/HealthControl/healthManagement/badStateAnalyse/index.vue"
  866. ),
  867. name: "badStateAnalyse",
  868. meta: {
  869. title: "劣化状态分析",
  870. icon: "",
  871. permissions: ["jn_jkgl_lhztfx", "*:*:*"],
  872. },
  873. },
  874. ],
  875. },
  876. {
  877. path: "energyEfficAnalyse",
  878. redirect: "energyEfficAnalyse/healthPowerCurve",
  879. component: () => import("@/views/HealthControl/energyEfficAnalyse"),
  880. name: "energyEfficAnalyse",
  881. meta: {
  882. title: "能效分析",
  883. icon: "svg-能效分析",
  884. permissions: ["jn_nxfx", "*:*:*"],
  885. },
  886. children: [
  887. {
  888. path: "healthPowerCurve",
  889. component: () =>
  890. import(
  891. "@/views/HealthControl/energyEfficAnalyse/healthPowerCurve"
  892. ),
  893. name: "healthPowerCurve",
  894. meta: {
  895. title: "功率曲线拟合",
  896. icon: "",
  897. permissions: ["jn_nxfx_glqxnh", "*:*:*"],
  898. },
  899. },
  900. {
  901. path: "qxpclfx",
  902. component: () =>
  903. import(
  904. "@/views/HealthControl/energyEfficAnalyse/qxpclfx/index.vue"
  905. ),
  906. name: "qxpclfx",
  907. meta: {
  908. title: "曲线偏差率分析",
  909. icon: "",
  910. permissions: ["jn_nxfx_qxpcl", "*:*:*"],
  911. },
  912. },
  913. {
  914. path: "wtSaturability",
  915. component: () =>
  916. import(
  917. "@/views/HealthControl/energyEfficAnalyse/wtSaturability/index.vue"
  918. ),
  919. name: "wtSaturability",
  920. meta: {
  921. title: "单机饱和度",
  922. icon: "",
  923. permissions: ["jn_nxfx_djbhd", "*:*:*"],
  924. },
  925. },
  926. {
  927. path: "temperatureAnalysis",
  928. component: () =>
  929. import(
  930. "@/views/HealthControl/energyEfficAnalyse/temperatureAnalysis/index.vue"
  931. ),
  932. name: "temperatureAnalysis",
  933. meta: {
  934. title: "部件温度分析",
  935. icon: "",
  936. permissions: ["jn_nxfx_bjwd", "*:*:*"],
  937. },
  938. },
  939. {
  940. path: "evaluationAnalysis",
  941. component: () =>
  942. import(
  943. "@/views/HealthControl/energyEfficAnalyse/evaluationAnalysis/index.vue"
  944. ),
  945. name: "evaluationAnalysis",
  946. meta: {
  947. title: "预警评判分析",
  948. icon: "",
  949. permissions: ["jn_nxfx_yjpp", "*:*:*"],
  950. },
  951. },
  952. {
  953. path: "malfunctionAnalysis",
  954. component: () =>
  955. import(
  956. "@/views/HealthControl/energyEfficAnalyse/malfunctionAnalysis/index.vue"
  957. ),
  958. name: "malfunctionAnalysis",
  959. meta: {
  960. title: "故障评判分析",
  961. icon: "",
  962. permissions: ["jn_nxfx_gzpp", "*:*:*"],
  963. },
  964. },
  965. {
  966. path: "powerAnalysis",
  967. component: () =>
  968. import(
  969. "@/views/HealthControl/energyEfficAnalyse/powerAnalysis/index.vue"
  970. ),
  971. name: "powerAnalysis",
  972. meta: {
  973. title: "部件功率分析",
  974. icon: "",
  975. permissions: ["jn_nxfx_gzpp", "*:*:*"],
  976. },
  977. },
  978. ],
  979. },
  980. {
  981. path: "healthDetail",
  982. redirect: "healthDetail/wpHealth",
  983. component: () => import("@/views/HealthControl/healthDetail"),
  984. name: "healthDetail",
  985. hidden: true,
  986. meta: {
  987. title: "健康详情",
  988. icon: "",
  989. permissions: ["jn_jkgl", "*:*:*"],
  990. },
  991. children: [
  992. {
  993. path: "wpHealth/:wpId/:wpName?", // 场站健康管理
  994. name: "health3",
  995. component: () =>
  996. import("@/views/HealthControl/healthDetail/wpHealth"),
  997. meta: {
  998. title: "场站健康管理",
  999. icon: "",
  1000. permissions: ["jn_jkgl", "*:*:*"],
  1001. },
  1002. },
  1003. {
  1004. path: "wtHealth/:wpId/:wtId", //设备健康详情
  1005. name: "health0",
  1006. component: () =>
  1007. import("@/views/HealthControl/healthDetail/wtHealth"),
  1008. meta: {
  1009. title: "设备健康详情",
  1010. icon: "",
  1011. permissions: ["jn_jkgl", "*:*:*"],
  1012. },
  1013. },
  1014. {
  1015. path: "healthTrend/:wpId/:wtId", //设备健康详情
  1016. name: "healthTrend",
  1017. component: () =>
  1018. import("@/views/HealthControl/healthDetail/healthTrend"),
  1019. meta: {
  1020. title: "健康趋势",
  1021. icon: "",
  1022. permissions: ["jn_jkgl", "*:*:*"],
  1023. },
  1024. },
  1025. {
  1026. path: "badState/:wpId/:wtId", //设备健康详情
  1027. name: "",
  1028. component: () =>
  1029. import("@/views/HealthControl/healthManagement/badStateAnalyse"),
  1030. meta: {
  1031. title: "劣化状态分析曲线",
  1032. icon: "",
  1033. permissions: ["jn_jkgl", "*:*:*"],
  1034. },
  1035. },
  1036. ],
  1037. },
  1038. ],
  1039. },
  1040. // 综合报表
  1041. {
  1042. path: "/others",
  1043. redirect: "/others/report/gjyrbb",
  1044. name: "others",
  1045. meta: {
  1046. title: "综合报表",
  1047. icon: "",
  1048. permissions: ["jn_zhbb", "*:*:*"],
  1049. },
  1050. component: () => import("@/views/report"),
  1051. children: [
  1052. {
  1053. path: "report",
  1054. redirect: "report/gjyrbb",
  1055. name: "report",
  1056. meta: {
  1057. title: "自定制报表管理",
  1058. icon: "svg-自定制报表管理",
  1059. permissions: ["jn_zdz", "*:*:*"],
  1060. },
  1061. component: () => import("@/views/report/stationReport"),
  1062. children: [
  1063. {
  1064. path: "gjyrbb",
  1065. name: "gjyrbb",
  1066. component: () => import("@/views/report/stationReport/rbb"),
  1067. meta: {
  1068. title: "日报表",
  1069. icon: "",
  1070. permissions: ["jn_zdz_rbb", "*:*:*"],
  1071. },
  1072. },
  1073. {
  1074. path: "fdxnyrb",
  1075. name: "fdxnyrb",
  1076. component: () => import("@/views/report/stationReport/fdxnyrb"),
  1077. meta: {
  1078. title: "晋能风电新能源日报",
  1079. icon: "",
  1080. permissions: ["jn_zdz_fdxnyrb", "*:*:*"],
  1081. },
  1082. },
  1083. {
  1084. path: "gfxnyrb",
  1085. name: "gfxnyrb",
  1086. component: () => import("@/views/report/stationReport/gfxnyrb"),
  1087. meta: {
  1088. title: "晋能光伏新能源日报",
  1089. icon: "",
  1090. permissions: ["jn_zdz_gfxnyrb", "*:*:*"],
  1091. },
  1092. },
  1093. {
  1094. path: "fdczzdy",
  1095. name: "fdczzdy",
  1096. component: () => import("@/views/report/stationReport/fdczzdy"),
  1097. meta: {
  1098. title: "风电场站自定义",
  1099. icon: "",
  1100. permissions: ["jn_zdz_fdcz", "*:*:*"],
  1101. },
  1102. },
  1103. {
  1104. path: "fdxmzdy",
  1105. name: "fdxmzdy",
  1106. component: () => import("@/views/report/stationReport/fdxmzdy"),
  1107. meta: {
  1108. title: "风电项目自定义",
  1109. icon: "",
  1110. permissions: ["jn_zdz_fdxm", "*:*:*"],
  1111. },
  1112. },
  1113. ],
  1114. },
  1115. ],
  1116. },
  1117. // 报表管理-统计分析
  1118. // {
  1119. // path: "/others/statisticAnalysis",
  1120. // name: "statisticAnalysis",
  1121. // component: () =>
  1122. // import(
  1123. // /* webpackChunkName: "fs" */ "../views/NewPages/statisticAnalysis.vue"
  1124. // ),
  1125. // },
  1126. //报表管理-统计分析-表底
  1127. // {
  1128. // path: "/others/statisticAnalysis/form",
  1129. // name: "fr",
  1130. // component: () =>
  1131. // import(
  1132. // /* webpackChunkName: "windsitehome" */ "../views/NewPages/form.vue"
  1133. // ),
  1134. // },
  1135. //报表管理-统计分析-场站
  1136. // {
  1137. // path: "/others/statisticAnalysis/station",
  1138. // name: "cz",
  1139. // component: () =>
  1140. // import(
  1141. // /* webpackChunkName: "windsitehome" */ "../views/NewPages/station.vue"
  1142. // ),
  1143. // },
  1144. //报表管理-统计分析-新能源日报
  1145. // {
  1146. // path: "/others/statisticAnalysis/daily",
  1147. // name: "ny",
  1148. // component: () =>
  1149. // import(
  1150. // /* webpackChunkName: "windsitehome" */ "../views/NewPages/daily.vue"
  1151. // ),
  1152. // },
  1153. // {
  1154. // path: "/decision/nhycfsdl",
  1155. // name: "nhycfsdl",
  1156. // component: () =>
  1157. // import(/* webpackChunkName: "nhycfsdl" */ "../views/report/nhycfsdl.vue"),
  1158. // },
  1159. // {
  1160. // path: "/decision/xzycfsdl",
  1161. // name: "xzycfsdl",
  1162. // component: () =>
  1163. // import(/* webpackChunkName: "xzycfsdl" */ "../views/report/xzycfsdl.vue"),
  1164. // },
  1165. /***********************************************************经济运行************************************************************* */
  1166. /***********************************************************智慧检修************************************************************* */
  1167. {
  1168. path: "/health/sandtable",
  1169. name: "sandtable",
  1170. component: () =>
  1171. import(
  1172. /* webpackChunkName: "sandtable" */ "../views/SandTable/SandTable.vue"
  1173. ),
  1174. },
  1175. // 等级评估(单机等级评估管理-量化评级)
  1176. {
  1177. path: "/health/assess/index",
  1178. name: "assessindex",
  1179. component: () => import("../views/HealthControl/assess/assessindex.vue"),
  1180. },
  1181. {
  1182. path: "/health/assess/selfEvaluate", // 自组合评级
  1183. name: "assessEvaluate",
  1184. component: () => import("../views/HealthControl/assess/selfEvaluate.vue"),
  1185. },
  1186. {
  1187. path: "/health/assess/config",
  1188. name: "assessconfig",
  1189. component: () => import("../views/HealthControl/assess/assessconfig.vue"),
  1190. },
  1191. {
  1192. path: "/health/zhpj/yxpj", //运行评价
  1193. name: "yxpj",
  1194. component: () => import("../views/HealthControl/zhpj/yxpj.vue"),
  1195. },
  1196. {
  1197. path: "/health/zhpj/jxpj", //检修评价
  1198. name: "jxpj",
  1199. component: () => import("../views/HealthControl/zhpj/jxpj.vue"),
  1200. },
  1201. {
  1202. path: "/health/gzzd/malfunctionDiagnose", // 故障诊断
  1203. name: "malfunctionDiagnose",
  1204. component: () => import("../views/malfunctionDiagnose/index.vue"),
  1205. },
  1206. {
  1207. path: "/health/gzzd/malfunctionRecall", // 故障回溯
  1208. name: "malfunctionRecall",
  1209. component: () =>
  1210. import(
  1211. /* webpackChunkName: "malfunctionStatistics" */ "../views/malfunctionRecall/index.vue"
  1212. ),
  1213. },
  1214. {
  1215. path: "/health/gzzd/gzfl", // 故障分类
  1216. name: "gzfl",
  1217. component: () =>
  1218. import(
  1219. /* webpackChunkName: "malfunctionStatistics" */ "../views/malfunctionDiagnose/gzfl.vue"
  1220. ),
  1221. },
  1222. {
  1223. path: "/health/gzzd/yjfl", // 预警分类
  1224. name: "yjfl",
  1225. component: () =>
  1226. import(
  1227. /* webpackChunkName: "malfunctionStatistics" */ "../views/malfunctionDiagnose/yjfl.vue"
  1228. ),
  1229. },
  1230. {
  1231. path: "/health/health1",
  1232. name: "health1",
  1233. component: () => import("../views/HealthControl/Health1.vue"),
  1234. },
  1235. {
  1236. path: "/health/allLifeManage", // 全生命周期管理
  1237. name: "allLifeManage",
  1238. component: () => import("../views/allLifeManage/index.vue"),
  1239. },
  1240. {
  1241. path: "/health/nxfx/phdffx", // 偏航对风分析
  1242. name: "phdffx",
  1243. component: () =>
  1244. import(
  1245. /* webpackChunkName: "malfunctionStatistics" */ "../views/windAnalysis/phdffx.vue"
  1246. ),
  1247. },
  1248. {
  1249. path: "/health/nxfx/cutAnalyse", // 切入切出分析
  1250. name: "cutAnalyse",
  1251. component: () => import("../views/cutAnalyse/index.vue"),
  1252. },
  1253. {
  1254. path: "/health/kkxfx/alarmcenter1",
  1255. name: "alarmcenter1",
  1256. component: () =>
  1257. import(
  1258. /* webpackChunkName: "alarmcenter1" */ "../views/NewPages/alarm-center-1.vue"
  1259. ),
  1260. },
  1261. {
  1262. path: "/health/kkxfx/alarmcenter2",
  1263. name: "alarmcenter2",
  1264. component: () =>
  1265. import(
  1266. /* webpackChunkName: "alarmcenter2" */ "../views/NewPages/alarm-center-2.vue"
  1267. ),
  1268. },
  1269. {
  1270. path: "/health/kkxfx/warnStatistics", // 预警评判分析
  1271. name: "warnStatistics",
  1272. component: () =>
  1273. import(
  1274. /* webpackChunkName: "warnStatistics" */ "../views/warnStatistics/index.vue"
  1275. ),
  1276. },
  1277. {
  1278. path: "/health/kkxfx/malfunctionStatistics", // 故障评判分析
  1279. name: "malfunctionStatistics",
  1280. component: () =>
  1281. import(
  1282. /* webpackChunkName: "malfunctionStatistics" */ "../views/malfunctionStatistics/index.vue"
  1283. ),
  1284. },
  1285. {
  1286. path: "/health/kkxfx/bjgltjb",
  1287. name: "bjgltjb",
  1288. component: () =>
  1289. import(/* webpackChunkName: "bjgltjb" */ "../views/report/bjgltjb.vue"),
  1290. },
  1291. {
  1292. path: "/health/fzyfx/windAnalysis", // 风资源分析
  1293. name: "windAnalysis",
  1294. component: () => import("../views/windAnalysis/index.vue"),
  1295. },
  1296. {
  1297. path: "/health/fzyfx/windAnalysis/fx", // 风向
  1298. name: "fxzstmain",
  1299. component: () => import("../views/windAnalysis/fxzstmain.vue"),
  1300. },
  1301. {
  1302. path: "/health/MalfunctionWarning/", //故障预警 无监督学习
  1303. name: "MalfunctionWarning",
  1304. component: () =>
  1305. import("../views/MalfunctionWarning/MalfunctionWarning.vue"),
  1306. },
  1307. {
  1308. path: "/health/MalfunctionWarning/Supervised", //有监督学习
  1309. name: "Supervised",
  1310. component: () => import("../views/MalfunctionWarning/supervised.vue"),
  1311. },
  1312. /***********************************************************智慧检修************************************************************* */
  1313. /***********************************************************安全管控************************************************************* */
  1314. {
  1315. path: "/save",
  1316. name: "save",
  1317. component: () =>
  1318. import(
  1319. /* webpackChunkName: "personnel" */ "../views/NewPages/iframe4.vue"
  1320. ),
  1321. },
  1322. {
  1323. path: "/save/personnel",
  1324. name: "personnel",
  1325. component: () =>
  1326. import(
  1327. /* webpackChunkName: "personnel" */ "../views/NewPages/personnel.vue"
  1328. ),
  1329. },
  1330. {
  1331. path: "/globalMonitor", // 全局监视
  1332. name: "globalMonitor",
  1333. component: () =>
  1334. import(
  1335. /* webpackChunkName: "globalMonitor" */ "../views/Others/index.vue"
  1336. ),
  1337. },
  1338. /***********************************************************安全管控************************************************************* */
  1339. {
  1340. path: "/others/reportPandect", // 报表总览
  1341. name: "reportPandect",
  1342. component: () =>
  1343. import(
  1344. /* webpackChunkName: "reportPandect" */ "../views/reportPandect/index.vue"
  1345. ),
  1346. },
  1347. {
  1348. path: "/others/tjfx",
  1349. name: "tjfx",
  1350. component: () =>
  1351. import(/* webpackChunkName: "tjfx" */ "../views/report/tjfx.vue"),
  1352. },
  1353. {
  1354. path: "/others/bdzcx",
  1355. name: "bdzcx",
  1356. component: () =>
  1357. import(/* webpackChunkName: "bdzcx" */ "../views/report/bdzcx.vue"),
  1358. },
  1359. {
  1360. path: "/others/oafd",
  1361. name: "oafd",
  1362. component: () =>
  1363. import(/* webpackChunkName: "oafd" */ "../views/report/oafd.vue"),
  1364. },
  1365. {
  1366. path: "/others/oagf",
  1367. name: "oagf",
  1368. component: () =>
  1369. import(/* webpackChunkName: "oagf" */ "../views/report/oagf.vue"),
  1370. },
  1371. {
  1372. path: "/others/missfdrb",
  1373. name: "missfdrb",
  1374. component: () =>
  1375. import(/* webpackChunkName: "missfdrb" */ "../views/report/missfdrb.vue"),
  1376. },
  1377. {
  1378. path: "/others/missgfrb",
  1379. name: "missgfrb",
  1380. component: () =>
  1381. import(/* webpackChunkName: "missgfrb" */ "../views/report/missgfrb.vue"),
  1382. },
  1383. {
  1384. path: "/others/xnyfdscyb",
  1385. name: "xnyfdscyb",
  1386. component: () =>
  1387. import(
  1388. /* webpackChunkName: "xnyfdscyb" */ "../views/report/xnyfdscyb.vue"
  1389. ),
  1390. },
  1391. {
  1392. path: "/others/mhsscyb",
  1393. name: "mhsscyb",
  1394. component: () =>
  1395. import(/* webpackChunkName: "mhsscyb" */ "../views/report/mhsscyb.vue"),
  1396. },
  1397. {
  1398. path: "/others/nssscyb",
  1399. name: "nssscyb",
  1400. component: () =>
  1401. import(/* webpackChunkName: "nssscyb" */ "../views/report/nssscyb.vue"),
  1402. },
  1403. {
  1404. path: "/others/qsscyb",
  1405. name: "qsscyb",
  1406. component: () =>
  1407. import(/* webpackChunkName: "qsscyb" */ "../views/report/qsscyb.vue"),
  1408. },
  1409. {
  1410. path: "/others/sbqscyb",
  1411. name: "sbqscyb",
  1412. component: () =>
  1413. import(/* webpackChunkName: "sbqscyb" */ "../views/report/sbqscyb.vue"),
  1414. },
  1415. {
  1416. path: "/others/xsscyb",
  1417. name: "xsscyb",
  1418. component: () =>
  1419. import(/* webpackChunkName: "xsscyb" */ "../views/report/xsscyb.vue"),
  1420. },
  1421. {
  1422. path: "/others/xnygfscyb",
  1423. name: "xnygfscyb",
  1424. component: () =>
  1425. import(
  1426. /* webpackChunkName: "xnygfscyb" */ "../views/report/xnygfscyb.vue"
  1427. ),
  1428. },
  1429. {
  1430. path: "/others/dwkscyb",
  1431. name: "dwkscyb",
  1432. component: () =>
  1433. import(/* webpackChunkName: "dwkscyb" */ "../views/report/dwkscyb.vue"),
  1434. },
  1435. {
  1436. path: "/others/plscyb",
  1437. name: "plscyb",
  1438. component: () =>
  1439. import(/* webpackChunkName: "plscyb" */ "../views/report/plscyb.vue"),
  1440. },
  1441. {
  1442. path: "/others/xhscyb",
  1443. name: "xhscyb",
  1444. component: () =>
  1445. import(/* webpackChunkName: "xhscyb" */ "../views/report/xhscyb.vue"),
  1446. },
  1447. {
  1448. path: "/others/djyrbb",
  1449. name: "djyrbb",
  1450. component: () =>
  1451. import(
  1452. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/djyrbb.vue"
  1453. ),
  1454. },
  1455. {
  1456. path: "/others/hsmrbb",
  1457. name: "hsmrbb",
  1458. component: () =>
  1459. import(
  1460. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/hsmrbb.vue"
  1461. ),
  1462. },
  1463. {
  1464. path: "/others/mljrbb",
  1465. name: "mljrbb",
  1466. component: () =>
  1467. import(
  1468. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/mljrbb.vue"
  1469. ),
  1470. },
  1471. {
  1472. path: "/others/njlrbb",
  1473. name: "njlrbb",
  1474. component: () =>
  1475. import(
  1476. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/njlrbb.vue"
  1477. ),
  1478. },
  1479. {
  1480. path: "/others/pdlrbb",
  1481. name: "pdlrbb",
  1482. component: () =>
  1483. import(
  1484. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/pdlrbb.vue"
  1485. ),
  1486. },
  1487. {
  1488. path: "/others/ptzrbb",
  1489. name: "ptzrbb",
  1490. component: () =>
  1491. import(
  1492. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/ptzrbb.vue"
  1493. ),
  1494. },
  1495. {
  1496. path: "/others/xwtrbb",
  1497. name: "xwtrbb",
  1498. component: () =>
  1499. import(
  1500. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/xwtrbb.vue"
  1501. ),
  1502. },
  1503. {
  1504. path: "/others/ytyrbb",
  1505. name: "ytyrbb",
  1506. component: () =>
  1507. import(
  1508. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/ytyrbb.vue"
  1509. ),
  1510. },
  1511. {
  1512. path: "/others/ylzrbb",
  1513. name: "ylzrbb",
  1514. component: () =>
  1515. import(
  1516. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/ylzrbb.vue"
  1517. ),
  1518. },
  1519. {
  1520. path: "/others/yfrbb",
  1521. name: "yfrbb",
  1522. component: () =>
  1523. import(
  1524. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/yfrbb.vue"
  1525. ),
  1526. },
  1527. {
  1528. path: "/others/zkrbb",
  1529. name: "zkrbb",
  1530. component: () =>
  1531. import(
  1532. /* webpackChunkName: "fdczzdy" */ "../views/report/stationReport/zkrbb.vue"
  1533. ),
  1534. },
  1535. {
  1536. path: "/others/gfczzdy",
  1537. name: "gfczzdy",
  1538. component: () =>
  1539. import(/* webpackChunkName: "gfczzdy" */ "../views/report/gfczzdy.vue"),
  1540. },
  1541. {
  1542. path: "/others/gfxmzdy",
  1543. name: "gfxmzdy",
  1544. component: () =>
  1545. import(/* webpackChunkName: "gfxmzdy" */ "../views/report/gfxmzdy.vue"),
  1546. },
  1547. {
  1548. path: "/others/xnyrb",
  1549. name: "xnyrb",
  1550. component: () =>
  1551. import(/* webpackChunkName: "xnyrb" */ "../views/report/xnyrb.vue"),
  1552. },
  1553. {
  1554. path: "/others/weather",
  1555. name: "weather",
  1556. component: () => import("../views/report/weather.vue"),
  1557. },
  1558. {
  1559. path: "/others/ExportExcel",
  1560. name: "ExportExcel",
  1561. component: () => import("../views/report/ExportExcel.vue"),
  1562. },
  1563. {
  1564. path: "/others/realSearch", // 测点数据查询
  1565. name: "realSearch",
  1566. component: () => import("../views/realSearch/index.vue"),
  1567. },
  1568. {
  1569. path: "/others/historysearch",
  1570. name: "historysearch",
  1571. component: () =>
  1572. import(
  1573. /* webpackChunkName: "historysearch" */ "../views/NewPages/history-search.vue"
  1574. ),
  1575. },
  1576. {
  1577. path: "/others/historySearch", // 测点历史数据查询
  1578. name: "historySearch",
  1579. component: () => import("../views/historySearch/index.vue"),
  1580. },
  1581. {
  1582. path: "/others/alarmCenter/alarmcenter",
  1583. name: "alarmcenter",
  1584. component: () =>
  1585. import(
  1586. /* webpackChunkName: "personnel" */ "../views/NewPages/alarm-center.vue"
  1587. ),
  1588. },
  1589. {
  1590. path: "/others/alarmCenter/tjsj",
  1591. name: "tjsj",
  1592. component: () =>
  1593. import(/* webpackChunkName: "tjsj" */ "../views/warn/tjsj.vue"),
  1594. },
  1595. {
  1596. path: "/others/alarmCenter/xdgl",
  1597. name: "xdgl",
  1598. component: () =>
  1599. import(/* webpackChunkName: "xdgl" */ "../views/warn/xdgl.vue"),
  1600. }, // 报警中心-升压站报警
  1601. {
  1602. path: "/others/alarmCenter/ztzhjl",
  1603. name: "ztzhjl",
  1604. component: () =>
  1605. import(/* webpackChunkName: "ztzhjl" */ "../views/warn/ztzhjl.vue"),
  1606. },
  1607. {
  1608. path: "/others/alarmCenter/czjl",
  1609. name: "czjl",
  1610. component: () =>
  1611. import(/* webpackChunkName: "czjl" */ "../views/warn/czjl.vue"),
  1612. },
  1613. {
  1614. //光伏告警
  1615. path: "/others/alarmCenter/gfgj",
  1616. name: "gfgj",
  1617. component: () =>
  1618. import(/* webpackChunkName: "gfgj" */ "../views/warn/gfgj.vue"),
  1619. },
  1620. {
  1621. path: "/others/alarmCenter/boosterAlarm",
  1622. name: "boosterAlarm",
  1623. component: () => import("../views/alarmCenter/boosterAlarm.vue"),
  1624. },
  1625. //故障样本库
  1626. {
  1627. path: "/others/fault",
  1628. name: "fault",
  1629. component: () => import("../views/sampleDatabase/fault/index.vue"),
  1630. },
  1631. //性能样本库
  1632. {
  1633. path: "/others/performance",
  1634. name: "performance",
  1635. component: () => import("../views/sampleDatabase/performance/index.vue"),
  1636. },
  1637. //预警样本库
  1638. {
  1639. path: "/others/warning",
  1640. name: "warning",
  1641. component: () => import("../views/sampleDatabase/warning/index.vue"),
  1642. },
  1643. //性能预警综合分析
  1644. {
  1645. path: "/others/analysis",
  1646. name: "analysis",
  1647. component: () => import("../views/sampleDatabase/analysis/index.vue"),
  1648. },
  1649. //样本库功率曲线分析
  1650. {
  1651. path: "/others/powerline/analysis",
  1652. name: "powerlineAnalysis",
  1653. component: () =>
  1654. import("../views/sampleDatabase/powerlineAnalysis/index.vue"),
  1655. },
  1656. //知识库
  1657. {
  1658. path: "/others/knowledgeBase",
  1659. name: "knowledgeBase",
  1660. component: () => import("../views/sampleDatabase/knowledgeBase/index.vue"),
  1661. },
  1662. //发电能力分析
  1663. // {
  1664. // path: "/others/abilityAnalysis",
  1665. // name: "abilityAnalysis",
  1666. // component: () => import("../views/sampleDatabase/abilityAnalysis/index.vue")
  1667. // },
  1668. //智能营销样本库
  1669. {
  1670. path: "/others/market",
  1671. name: "market",
  1672. component: () => import("../views/sampleDatabase/market/index.vue"),
  1673. },
  1674. // 报警中心-SCADA报警
  1675. {
  1676. path: "/others/alarmCenter/scadaAlarm",
  1677. name: "scadaAlarm",
  1678. component: () => import("../views/alarmCenter/scadaAlarm.vue"),
  1679. },
  1680. // 报警中心-自定义报警
  1681. {
  1682. path: "/others/alarmCenter/customAlarm",
  1683. name: "customAlarm",
  1684. component: () => import("../views/alarmCenter/customAlarm.vue"),
  1685. },
  1686. // 报警中心-自定义报警统计
  1687. {
  1688. path: "/others/alarmCenter/customStatistics",
  1689. name: "customStatistics",
  1690. component: () => import("../views/alarmCenter/customStatistics.vue"),
  1691. },
  1692. {
  1693. path: "/others/knowledge/knowledge", //故障知识列表
  1694. name: "knowledge1",
  1695. component: () => import("../views/Knowledge/Knowledge1.vue"),
  1696. },
  1697. {
  1698. path: "/others/knowledge/knowledge2", //安全措施知识
  1699. name: "knowledge2",
  1700. component: () => import("../views/Knowledge/Knowledge2.vue"),
  1701. },
  1702. // {
  1703. // path: '/others/knowledge/knowledge3', //风险辨识知识
  1704. // name: 'knowledge3',
  1705. // component: () =>
  1706. // import('../views/Knowledge/Knowledge3.vue'),
  1707. // },
  1708. {
  1709. path: "/others/knowledge/knowledge4", //作业指导知识
  1710. name: "knowledge4",
  1711. component: () => import("../views/Knowledge/Knowledge4.vue"),
  1712. },
  1713. {
  1714. path: "/others/knowledge/knowledge4/AC", //安措内容分类
  1715. name: "knowledgeA",
  1716. component: () => import("../views/Knowledge/safety.vue"),
  1717. },
  1718. {
  1719. path: "/others/knowledge/knowledge4/WX", //危险地点内容
  1720. name: "knowledgeW",
  1721. component: () => import("../views/Knowledge/risk .vue"),
  1722. },
  1723. {
  1724. path: "/others/knowledge/knowledge5", //特征参数
  1725. name: "knowledge5",
  1726. component: () => import("../views/Knowledge/Knowledge5.vue"),
  1727. },
  1728. {
  1729. path: "/others/knowledge/knowledge6", //排查检修方案
  1730. name: "knowledge6",
  1731. component: () => import("../views/Knowledge/Knowledge6.vue"),
  1732. },
  1733. {
  1734. path: "/others/knowledge/knowledge7", //预警知识
  1735. name: "knowledge7",
  1736. component: () => import("../views/Knowledge/Knowledge7.vue"),
  1737. },
  1738. {
  1739. path: "/device/device", //设备管理
  1740. name: "device",
  1741. component: () => import("../views/device/device.vue"),
  1742. },
  1743. /***********************************************************其他************************************************************ */
  1744. {
  1745. path: "/planPower",
  1746. name: "planPower",
  1747. component: () =>
  1748. import(
  1749. /* webpackChunkName: "planPower" */ "../views/planPower/index.vue"
  1750. ),
  1751. },
  1752. {
  1753. path: "/new/intelligentalarmcenter",
  1754. name: "intelligentalarmcenter",
  1755. component: () =>
  1756. import(
  1757. /* webpackChunkName: "intelligentalarmcenter" */
  1758. "../views/NewPages/intelligent-alarm-center.vue"
  1759. ),
  1760. },
  1761. {
  1762. path: "/new/knowledgebase",
  1763. name: "knowledgebase",
  1764. component: () =>
  1765. import(
  1766. /* webpackChunkName: "knowledgebase" */ "../views/NewPages/knowledge-base.vue"
  1767. ),
  1768. },
  1769. {
  1770. path: "/new/dj",
  1771. name: "dj",
  1772. component: () =>
  1773. import(/* webpackChunkName: "dj" */ "../views/NewPages/dj.vue"),
  1774. },
  1775. {
  1776. path: "/new/dj2",
  1777. name: "dj2",
  1778. component: () =>
  1779. import(/* webpackChunkName: "dj2" */ "../views/NewPages/dj2.vue"),
  1780. },
  1781. {
  1782. path: "/new/dialog",
  1783. name: "dialog",
  1784. component: () =>
  1785. import(/* webpackChunkName: "dj2" */ "../views/NewPages/dialogs.vue"),
  1786. },
  1787. {
  1788. path: "/new/powerforecast2",
  1789. name: "powerforecast2",
  1790. component: () =>
  1791. import(
  1792. /* webpackChunkName: "powerforecast2" */ "../views/NewPages/power-forecast-2.vue"
  1793. ),
  1794. },
  1795. ];
  1796. const router = createRouter({
  1797. history: createWebHashHistory(),
  1798. base: "/nem/",
  1799. routes: [...constantRoutes, ...asyncRoutes],
  1800. });
  1801. // router.beforeEach((to, from, next) => {
  1802. // next();
  1803. // });
  1804. export default router;