index.js 54 KB

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