Menu.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203
  1. <template>
  2. <div class="menu">
  3. <ul class="menu-list">
  4. <li
  5. class="menu-item"
  6. v-for="(menu, index) of currentMenu"
  7. :key="menu"
  8. @click="click(index)"
  9. :class="{ active: activeIndex == index }"
  10. @mouseenter="subMenuShow(menu.children, index)"
  11. >
  12. <router-link :to="menu.path">
  13. <el-tooltip
  14. class="item"
  15. effect="dark"
  16. :content="menu.text"
  17. placement="bottom"
  18. :show-after="500"
  19. :enterable="false"
  20. hide-after="10"
  21. >
  22. <div
  23. class="menu-icon svg-icon"
  24. :class="activeIndex == index ? 'svg-icon-green' : 'svg-icon-gray'"
  25. >
  26. <SvgIcon :svgid="menu.icon"></SvgIcon>
  27. </div>
  28. </el-tooltip>
  29. </router-link>
  30. <!-- <div v-if="menu.children" class="sub-menu-item">
  31. <div class="menu-icon svg-icon" :class="activeIndex == index ? 'svg-icon-green' : 'svg-icon-gray'">
  32. <SvgIcon :svgid="menu.icon"></SvgIcon>
  33. </div>
  34. </div> -->
  35. </li>
  36. </ul>
  37. </div>
  38. <div
  39. class="sub-menu"
  40. v-show="isShowSubMenu"
  41. @mouseleave="subMenuHide"
  42. v-if="$store.state.themeName === 'dark'"
  43. >
  44. <ul class="menu-list">
  45. <li
  46. class="menu-item"
  47. v-for="(menu, index) of subMenu"
  48. @click="subclick(index)"
  49. :key="menu"
  50. :class="{ active: subIndex == index }"
  51. >
  52. <router-link :to="menu.path">
  53. <div class="menu-icon svg-icon">
  54. <!-- <SvgIcon :svgid="menu.icon"></SvgIcon> -->
  55. </div>
  56. <div
  57. class="sub-menu-text"
  58. :class="subIndex == index ? 'green' : 'gray'"
  59. >
  60. {{ menu.text }}
  61. </div>
  62. </router-link>
  63. </li>
  64. </ul>
  65. </div>
  66. </template>
  67. <script>
  68. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  69. export default {
  70. components: {
  71. SvgIcon,
  72. },
  73. props: {},
  74. data() {
  75. return {
  76. currRoot: "monitor",
  77. menuData: [
  78. {
  79. id: "monitor",
  80. text: "驾驶舱",
  81. data: [
  82. // {
  83. // text: '驾驶舱',
  84. // icon: 'svg-lead-cockpit',
  85. // path: '/monitor/home'
  86. // },
  87. {
  88. text: "基础矩阵",
  89. icon: "svg-matrix",
  90. path: "/monitor/lightmatrix1",
  91. },
  92. {
  93. text: "明细矩阵",
  94. icon: "svg-mx-matrix",
  95. path: "/monitor/lightmatrix3",
  96. },
  97. {
  98. text: "欠发矩阵",
  99. icon: "svg-qf-matrix",
  100. path: "/monitor/lightmatrix2",
  101. },
  102. {
  103. text: "光伏矩阵",
  104. icon: "svg-gf-matrix",
  105. path: "/monitor/lightmatrix",
  106. },
  107. {
  108. text: "状态监视",
  109. icon: "svg-state-watch",
  110. path: "/monitor/status",
  111. },
  112. {
  113. text: "Agc",
  114. icon: "svg-agc",
  115. path: "/monitor/agc",
  116. },
  117. {
  118. text: "风场",
  119. icon: "svg-wind-site",
  120. path: "/monitor/windsite/home/MHS_FDC",
  121. },
  122. ],
  123. },
  124. {
  125. id: "decision",
  126. text: "经济运行",
  127. data: [
  128. // {
  129. // text: '经济运行首页',
  130. // icon: 'svg-wind-site',
  131. // // path: '/monitor/sandtable'
  132. // path: '/decision/pb'
  133. // },
  134. {
  135. text: "对标管理",
  136. icon: "svg-dbgl",
  137. path: "/decision/decision1",
  138. children: [
  139. {
  140. text: "风机绩效榜",
  141. icon: "svg-wind-site",
  142. path: "/decision/decision1",
  143. },
  144. {
  145. text: "五项损失率",
  146. icon: "svg-wind-site",
  147. path: "/decision/decision2",
  148. },
  149. {
  150. text: "场内对标",
  151. icon: "svg-wind-site",
  152. path: "/decision/decision2Cndb",
  153. },
  154. {
  155. text: "场际对标",
  156. icon: "svg-wind-site",
  157. path: "/decision/decision2Cjdb",
  158. },
  159. {
  160. text: "项目对标",
  161. icon: "svg-wind-site",
  162. path: "/decision/decision2Xmdb",
  163. },
  164. {
  165. text: "线路对标",
  166. icon: "svg-wind-site",
  167. path: "/decision/decision2Xldb",
  168. },
  169. {
  170. text: "性能对标",
  171. icon: "svg-wind-site",
  172. path: "/decision/decision3",
  173. },
  174. {
  175. text: "值际对标",
  176. icon: "svg-wind-site",
  177. path: "/decision/decision4",
  178. },
  179. {
  180. text: "单机横向对比",
  181. icon: "svg-matrix",
  182. path: "/decision/decision3db",
  183. },
  184. {
  185. text: "操作指令统计",
  186. icon: "svg-matrix",
  187. path: "/decision/decision4czzl",
  188. },
  189. ],
  190. },
  191. {
  192. text: "三率管理",
  193. icon: "svg-slgl",
  194. path: "/decision/fwjsl",
  195. children: [
  196. {
  197. text: "复位及时率",
  198. icon: "svg-wind-site",
  199. path: "/decision/fwjsl",
  200. },
  201. {
  202. text: "状态转换率",
  203. icon: "svg-wind-site",
  204. path: "/decision/ztzhl",
  205. },
  206. {
  207. text: "消缺及时率",
  208. icon: "svg-wind-site",
  209. path: "/decision/xqjsl",
  210. },
  211. ],
  212. },
  213. {
  214. text: "排行榜",
  215. icon: "svg-phb",
  216. path: "/decision/powerRank",
  217. children: [
  218. {
  219. text: "发电效率排行",
  220. icon: "svg-wind-site",
  221. path: "/decision/powerRank",
  222. },
  223. {
  224. text: "总发电效率排行",
  225. icon: "svg-wind-site",
  226. path: "/decision/totalPowerRank",
  227. },
  228. {
  229. text: "报警排行",
  230. icon: "svg-wind-site",
  231. path: "/decision/warningRank",
  232. },
  233. ],
  234. },
  235. {
  236. text: "专题分析",
  237. icon: "svg-ztfx",
  238. path: "/decision/ztfx",
  239. children: [
  240. {
  241. text: "综合分析",
  242. icon: "svg-wind-site",
  243. path: "/decision/ztfx",
  244. },
  245. {
  246. text: "风能利用率",
  247. icon: "svg-wind-site",
  248. path: "/decision/fnlyl",
  249. },
  250. {
  251. text: "维护损失率",
  252. icon: "svg-wind-site",
  253. path: "/decision/whssl",
  254. },
  255. {
  256. text: "故障损失率",
  257. icon: "svg-wind-site",
  258. path: "/decision/gzssl",
  259. },
  260. {
  261. text: "限电损失率",
  262. icon: "svg-wind-site",
  263. path: "/decision/xdssl",
  264. },
  265. {
  266. text: "性能损失率",
  267. icon: "svg-wind-site",
  268. path: "/decision/xnssl",
  269. },
  270. {
  271. text: "受累损失率",
  272. icon: "svg-wind-site",
  273. path: "/decision/slssl",
  274. },
  275. {
  276. text: "MTBF分析",
  277. icon: "svg-wind-site",
  278. path: "/decision/mtbf",
  279. },
  280. {
  281. text: "MTTR分析",
  282. icon: "svg-wind-site",
  283. path: "/decision/mttr",
  284. },
  285. {
  286. text: "复位分析",
  287. icon: "svg-wind-site",
  288. path: "/decision/zfwjsl",
  289. },
  290. {
  291. text: "状态分析",
  292. icon: "svg-wind-site",
  293. path: "/decision/zztzhl",
  294. },
  295. {
  296. text: "消缺分析",
  297. icon: "svg-wind-site",
  298. path: "/decision/zxqjsl",
  299. },
  300. {
  301. text: "发电量分析",
  302. icon: "svg-wind-site",
  303. path: "/decision/zfdl",
  304. },
  305. {
  306. text: "综合场用电量",
  307. icon: "svg-wind-site",
  308. path: "/decision/zzhcydl",
  309. },
  310. {
  311. text: "节能减排API",
  312. icon: "svg-wind-site",
  313. path: "/decision/zzhcydl",
  314. },
  315. ],
  316. },
  317. {
  318. text: "风机分析",
  319. icon: "svg-fjfx",
  320. path: "/decision/performanceAnalysis",
  321. children: [
  322. {
  323. text: "单机性能分析",
  324. icon: "svg-wind-site",
  325. path: "/decision/performanceAnalysis",
  326. },
  327. {
  328. text: "单机月度分析",
  329. icon: "svg-wind-site",
  330. path: "/decision/singleAnalysis",
  331. },
  332. ],
  333. },
  334. {
  335. text: "气象分析",
  336. icon: "svg-qxfx",
  337. path: "/decision/fs",
  338. },
  339. {
  340. text: "电量预测",
  341. icon: "svg-dlyc",
  342. path: "/decision/nhycfsdl",
  343. children: [
  344. {
  345. text: "预测拟合风速电量",
  346. icon: "svg-wind-sitenhycfsdl",
  347. path: "/decision/nhycfsdl",
  348. },
  349. {
  350. text: "修正预测风速电量",
  351. icon: "svg-wind-site",
  352. path: "/decision/xzycfsdl",
  353. },
  354. ],
  355. },
  356. // {
  357. // text: "单机分析",
  358. // icon: "svg-wind-site",
  359. // path: "/fgzyfx",
  360. // children: [
  361. // {
  362. // text: "单机分析详细",
  363. // icon: "svg-wind-site",
  364. // path: "/new/dj1",
  365. // },
  366. // {
  367. // text: "电量预测",
  368. // icon: "svg-wind-site",
  369. // path: "/new/pf1",
  370. // },
  371. // {
  372. // text: "气象预测",
  373. // icon: "svg-wind-site",
  374. // path: "/new/fs",
  375. // }
  376. // ]
  377. // }
  378. ],
  379. },
  380. {
  381. id: "health",
  382. text: "智慧检修",
  383. data: [
  384. // {
  385. // text: '沙盘',
  386. // icon: 'svg-沙盘',
  387. // // path: '/monitor/sandtable'
  388. // path: '/health/sandtable'
  389. // },
  390. {
  391. text: "等级评估",
  392. icon: "svg-等级评估",
  393. path: "/health/assess/index",
  394. children: [
  395. {
  396. text: "等级评估",
  397. icon: "svg-等级评估",
  398. path: "/health/assess/index",
  399. },
  400. {
  401. text: "自组合评级",
  402. icon: "svg-wind-site",
  403. path: "/health/assess/selfEvaluate",
  404. },
  405. ],
  406. },
  407. {
  408. text: "故障诊断",
  409. icon: "svg-故障诊断",
  410. path: "/health/gzzd/malfunctionDiagnose",
  411. children: [
  412. {
  413. text: "故障诊断",
  414. icon: "svg-wind-site",
  415. path: "/health/gzzd/malfunctionDiagnose",
  416. },
  417. {
  418. text: "故障回溯",
  419. icon: "svg-wind-site",
  420. path: "/health/gzzd/malfunctionRecall",
  421. },
  422. // {
  423. // text: "故障分类",
  424. // icon: "svg-wind-site",
  425. // path: "/health/gzzd/gzfl",
  426. // },
  427. // {
  428. // text: "预警分类",
  429. // icon: "svg-wind-site",
  430. // path: "/health/gzzd/yjfl",
  431. // },
  432. ],
  433. },
  434. {
  435. text: "健康管理",
  436. icon: "svg-健康管理",
  437. path: "/health/frist",
  438. children: [
  439. {
  440. text: "健康推荐",
  441. icon: "svg-wind-site",
  442. path: "/health/frist",
  443. },
  444. {
  445. text: "健康首页",
  446. icon: "svg-wind-site",
  447. path: "/health/health2",
  448. },
  449. {
  450. text: "健康总览",
  451. icon: "svg-wind-site",
  452. path: "/health/health6",
  453. },
  454. {
  455. text: "健康矩阵",
  456. icon: "svg-wind-site",
  457. path: "/health/health5",
  458. },
  459. // {
  460. // text: "健康列表",
  461. // icon: "svg-wind-site",
  462. // path: "/health/health6",
  463. // },
  464. {
  465. text: "健康列表",
  466. icon: "svg-wind-site",
  467. path: "/health/health8",
  468. },
  469. {
  470. text: "劣化状态分析",
  471. icon: "svg-q曲线",
  472. path: "/health/healthLineChart/MHS_FDC/MG01_01",
  473. },
  474. ],
  475. },
  476. {
  477. text: "全生命周期",
  478. icon: "svg-全生命周期",
  479. path: "/health/allLifeManage",
  480. },
  481. {
  482. text: "能效分析",
  483. icon: "svg-能效分析",
  484. path: "/health/nxfx/powerCurve",
  485. children: [
  486. {
  487. text: "功率曲线拟合",
  488. icon: "svg-wind-site",
  489. path: "/health/nxfx/powerCurve",
  490. },
  491. {
  492. text: "偏航对风分析",
  493. icon: "svg-wind-site",
  494. path: "/health/nxfx/phdffx",
  495. },
  496. {
  497. text: "切入切出分析",
  498. icon: "svg-wind-site",
  499. path: "/health/nxfx/cutAnalyse",
  500. },
  501. {
  502. text: "曲线偏差率分析",
  503. icon: "svg-wind-site",
  504. path: "/health/nxfx/qxpclfx",
  505. },
  506. {
  507. text: "单机饱和度",
  508. icon: "svg-wind-site",
  509. path: "/health/nxfx/wtSaturability",
  510. },
  511. ],
  512. },
  513. {
  514. text: "可靠性分析",
  515. icon: "svg-可靠性分析",
  516. path: "/health/kkxfx/alarmcenter1",
  517. children: [
  518. {
  519. text: "预警分析",
  520. icon: "svg-wind-site",
  521. path: "/health/kkxfx/alarmcenter1",
  522. },
  523. {
  524. text: "故障分析",
  525. icon: "svg-wind-site",
  526. path: "/health/kkxfx/alarmcenter2",
  527. },
  528. {
  529. text: "预警评判分析",
  530. icon: "svg-wind-site",
  531. path: "/health/kkxfx/warnStatistics",
  532. },
  533. {
  534. text: "故障评判分析",
  535. icon: "svg-wind-site",
  536. path: "/health/kkxfx/malfunctionStatistics",
  537. },
  538. {
  539. text: "部件评判分析",
  540. icon: "svg-wind-site",
  541. path: "/health/kkxfx/bjgltjb",
  542. },
  543. ],
  544. },
  545. {
  546. text: "风光资源分析",
  547. icon: "svg-风光资源分析",
  548. path: "/health/fzyfx/windAnalysis",
  549. children: [
  550. {
  551. text: "风资源散点",
  552. icon: "svg-wind-site",
  553. path: "/health/fzyfx/windAnalysis",
  554. },
  555. {
  556. text: "风资源风向",
  557. icon: "svg-wind-site",
  558. path: "/health/fzyfx/windAnalysis/fx",
  559. },
  560. ],
  561. },
  562. {
  563. text: "故障预警",
  564. icon: "svg-预警记录",
  565. path: "/health/MalfunctionWarning/",
  566. children: [
  567. {
  568. text: "无监督学习",
  569. icon: "svg-wind-site",
  570. path: "/health/MalfunctionWarning/",
  571. },
  572. {
  573. text: "有监督学习",
  574. icon: "svg-wind-site",
  575. path: "/health/MalfunctionWarning/Supervised",
  576. },
  577. ],
  578. },
  579. ],
  580. },
  581. {
  582. id: "save",
  583. text: "安全管控",
  584. data: [
  585. {
  586. text: "安全管控",
  587. icon: "svg-安全管控",
  588. path: "/save/personnel",
  589. children: [
  590. {
  591. text: "人员矩阵",
  592. icon: "svg-wind-site",
  593. path: "/save/personnel",
  594. },
  595. {
  596. text: "全局监视",
  597. icon: "svg-wind-site",
  598. path: "/save/globalMonitor",
  599. },
  600. ],
  601. },
  602. ],
  603. },
  604. // {
  605. // id: "znbb",
  606. // text: "智能报表",
  607. // data: [
  608. // {
  609. // text: '报表首页',
  610. // icon: 'svg-wind-site',
  611. // path: '/znbb/reportPandect'
  612. // },// 统计分析
  613. // {
  614. // text: "统计分析",
  615. // icon: "svg-matrix",
  616. // path: "/tjfx",
  617. // children: [
  618. // {
  619. // text: "统计分析",
  620. // icon: "svg-matrix",
  621. // path: "/tjfx",
  622. // },
  623. // {
  624. // text: "表底值查询",
  625. // icon: "svg-matrix",
  626. // path: "/bdzcx",
  627. // },
  628. // ],
  629. // },
  630. // {
  631. // text: "报表管理",
  632. // icon: "svg-matrix",
  633. // path: "/bdzcx",
  634. // children: [
  635. // {
  636. // text: "OA日报",
  637. // icon: "svg-matrix",
  638. // path: "/oafd",
  639. // },
  640. // {
  641. // text: "OA日报(光伏)",
  642. // icon: "svg-matrix",
  643. // path: "/oagf",
  644. // },
  645. // {
  646. // text: "新能源日报",
  647. // icon: "svg-matrix",
  648. // path: "/xnyrb",
  649. // },
  650. // {
  651. // text: "国电电力MISS日报(风电)",
  652. // icon: "svg-matrix",
  653. // path: "/missfdrb",
  654. // },
  655. // {
  656. // text: "国电电力MISS日报(光伏)",
  657. // icon: "svg-matrix",
  658. // path: "/missgfrb",
  659. // },
  660. // {
  661. // text: "新能源风电生产月报",
  662. // icon: "svg-matrix",
  663. // path: "/xnyfdscyb",
  664. // },
  665. // {
  666. // text: "麻黄山生产月报",
  667. // icon: "svg-matrix",
  668. // path: "/mhsscyb",
  669. // },
  670. // {
  671. // text: "牛首山生产月报",
  672. // icon: "svg-matrix",
  673. // path: "/nssscyb",
  674. // },
  675. // {
  676. // text: "青山生产月报",
  677. // icon: "svg-matrix",
  678. // path: "/qsscyb",
  679. // },
  680. // {
  681. // text: "石板泉生产月报",
  682. // icon: "svg-matrix",
  683. // path: "/sbqscyb",
  684. // },
  685. // {
  686. // text: "香山生产月报",
  687. // icon: "svg-matrix",
  688. // path: "/xsscyb",
  689. // },
  690. // {
  691. // text: "新能源光伏生产月报",
  692. // icon: "svg-matrix",
  693. // path: "/xnygfscyb",
  694. // },
  695. // {
  696. // text: "大武口生产月报",
  697. // icon: "svg-matrix",
  698. // path: "/dwkscyb",
  699. // },
  700. // {
  701. // text: "平罗生产月报",
  702. // icon: "svg-matrix",
  703. // path: "/plscyb",
  704. // },
  705. // {
  706. // text: "宣和生产月报",
  707. // icon: "svg-matrix",
  708. // path: "/xhscyb",
  709. // },
  710. // ],
  711. // },
  712. // {
  713. // text: "自定制报表管理",
  714. // icon: "svg-matrix",
  715. // path: "/fdczzdy",
  716. // children: [
  717. // {
  718. // text: "风电场站自定义",
  719. // icon: "svg-matrix",
  720. // path: "/fdczzdy",
  721. // },
  722. // {
  723. // text: "风电项目自定义",
  724. // icon: "svg-matrix",
  725. // path: "/fdxmzdy",
  726. // },
  727. // {
  728. // text: "光伏场站自定义",
  729. // icon: "svg-matrix",
  730. // path: "/gfczzdy",
  731. // },
  732. // {
  733. // text: "光伏项目自定义",
  734. // icon: "svg-matrix",
  735. // path: "/gfxmzdy",
  736. // },
  737. // ],
  738. // },
  739. // ],
  740. // },
  741. {
  742. id: "others",
  743. text: "其他",
  744. data: [
  745. {
  746. text: "统计分析",
  747. icon: "svg-统计分析",
  748. path: "/others/tjfx",
  749. children: [
  750. {
  751. text: "统计分析",
  752. icon: "svg-matrix",
  753. path: "/others/tjfx",
  754. },
  755. {
  756. text: "表底值查询",
  757. icon: "svg-matrix",
  758. path: "/others/bdzcx",
  759. },
  760. ],
  761. },
  762. {
  763. text: "报表管理",
  764. icon: "svg-报表管理",
  765. path: "/others/oafd",
  766. children: [
  767. {
  768. text: "OA日报",
  769. icon: "svg-matrix",
  770. path: "/others/oafd",
  771. },
  772. {
  773. text: "OA日报(光伏)",
  774. icon: "svg-matrix",
  775. path: "/others/oagf",
  776. },
  777. {
  778. text: "新能源日报",
  779. icon: "svg-matrix",
  780. path: "/others/xnyrb",
  781. },
  782. {
  783. text: "国电MIS日报(风电)",
  784. icon: "svg-matrix",
  785. path: "/others/missfdrb",
  786. },
  787. {
  788. text: "国电MIS日报(光伏)",
  789. icon: "svg-matrix",
  790. path: "/others/missgfrb",
  791. },
  792. {
  793. text: "新能源风电生产月报",
  794. icon: "svg-matrix",
  795. path: "/others/xnyfdscyb",
  796. },
  797. {
  798. text: "麻黄山生产月报",
  799. icon: "svg-matrix",
  800. path: "/others/mhsscyb",
  801. },
  802. {
  803. text: "牛首山生产月报",
  804. icon: "svg-matrix",
  805. path: "/others/nssscyb",
  806. },
  807. {
  808. text: "青山生产月报",
  809. icon: "svg-matrix",
  810. path: "/others/qsscyb",
  811. },
  812. {
  813. text: "石板泉生产月报",
  814. icon: "svg-matrix",
  815. path: "/others/sbqscyb",
  816. },
  817. {
  818. text: "香山生产月报",
  819. icon: "svg-matrix",
  820. path: "/others/xsscyb",
  821. },
  822. {
  823. text: "新能源光伏生产月报",
  824. icon: "svg-matrix",
  825. path: "/others/xnygfscyb",
  826. },
  827. {
  828. text: "大武口生产月报",
  829. icon: "svg-matrix",
  830. path: "/others/dwkscyb",
  831. },
  832. {
  833. text: "平罗生产月报",
  834. icon: "svg-matrix",
  835. path: "/others/plscyb",
  836. },
  837. {
  838. text: "宣和生产月报",
  839. icon: "svg-matrix",
  840. path: "/others/xhscyb",
  841. },
  842. ],
  843. },
  844. {
  845. text: "自定制报表管理",
  846. icon: "svg-自定制报表管理",
  847. path: "/others/fdczzdy",
  848. children: [
  849. {
  850. text: "风电场站自定义",
  851. icon: "svg-matrix",
  852. path: "/others/fdczzdy",
  853. },
  854. {
  855. text: "风电项目自定义",
  856. icon: "svg-matrix",
  857. path: "/others/fdxmzdy",
  858. },
  859. {
  860. text: "光伏场站自定义",
  861. icon: "svg-matrix",
  862. path: "/others/gfczzdy",
  863. },
  864. {
  865. text: "光伏项目自定义",
  866. icon: "svg-matrix",
  867. path: "/others/gfxmzdy",
  868. },
  869. ],
  870. },
  871. {
  872. text: "原始数据查询",
  873. icon: "svg-报表首页",
  874. path: "/others/realSearch",
  875. children: [
  876. {
  877. text: "测点数据查询",
  878. icon: "svg-wind-site",
  879. path: "/others/realSearch",
  880. },
  881. {
  882. text: "测点历史数据查询",
  883. icon: "svg-wind-site",
  884. path: "/others/historySearch",
  885. },
  886. {
  887. text: "气象历史数据",
  888. icon: "svg-wind-site",
  889. path: "/others/weather",
  890. },
  891. {
  892. text: "数据导出",
  893. icon: "svg-wind-site",
  894. path: "/others/ExportExcel",
  895. },
  896. {
  897. text: "设备管理",
  898. icon: "svg-wind-site",
  899. path: "/device/device",
  900. },
  901. ],
  902. },
  903. {
  904. text: "预警记录",
  905. icon: "svg-预警记录",
  906. path: "/others/alarmCenter/alarmcenter",
  907. children: [
  908. {
  909. text: "预警管理",
  910. icon: "svg-wind-site",
  911. path: "/others/alarmCenter/alarmcenter",
  912. },
  913. {
  914. text: "停机事件管理",
  915. icon: "svg-wind-site",
  916. path: "/others/alarmCenter/tjsj",
  917. },
  918. {
  919. text: "限电管理",
  920. icon: "svg-wind-site",
  921. path: "/others/alarmCenter/xdgl",
  922. },
  923. {
  924. text: "升压站报警",
  925. icon: "svg-wind-site",
  926. path: "/others/alarmCenter/boosterAlarm",
  927. },
  928. {
  929. text: "SCADA报警",
  930. icon: "svg-wind-site",
  931. path: "/others/alarmCenter/scadaAlarm",
  932. },
  933. {
  934. text: "自定义报警",
  935. icon: "svg-wind-site",
  936. path: "/others/alarmCenter/customAlarm",
  937. },
  938. {
  939. text: "自定义报警统计",
  940. icon: "svg-wind-site",
  941. path: "/others/alarmCenter/customStatistics",
  942. },
  943. ],
  944. },
  945. {
  946. text: "专家知识",
  947. icon: "svg-专家知识",
  948. path: "/others/knowledge/knowledge",
  949. children: [
  950. {
  951. text: "故障知识列表",
  952. icon: "svg-matrix",
  953. path: "/others/knowledge/knowledge",
  954. },
  955. {
  956. text: "安全措施知识",
  957. icon: "svg-matrix",
  958. path: "/others/knowledge/knowledge2",
  959. },
  960. {
  961. text: "排查检修方案",
  962. icon: "svg-matrix",
  963. path: "/others/knowledge/knowledge6",
  964. },
  965. {
  966. text: "预警知识",
  967. icon: "svg-matrix",
  968. path: "/others/knowledge/knowledge7",
  969. },
  970. {
  971. text: "特征参数",
  972. icon: "svg-matrix",
  973. path: "/others/knowledge/knowledge5",
  974. },
  975. {
  976. text: "风险辨识知识",
  977. icon: "svg-matrix",
  978. path: "/others/knowledge/knowledge3",
  979. },
  980. {
  981. text: "作业指导知识",
  982. icon: "svg-matrix",
  983. path: "/others/knowledge/knowledge4",
  984. },
  985. ],
  986. },
  987. {
  988. text: "样本库",
  989. icon: "svg-报表管理",
  990. path: "/others/fault",
  991. children: [
  992. {
  993. text: "故障训练样本库",
  994. icon: "svg-matrix",
  995. path: "/others/fault",
  996. },
  997. {
  998. text: "性能下降样本库",
  999. icon: "svg-matrix",
  1000. path: "/others/performance",
  1001. },
  1002. {
  1003. text: "预警分析样本库",
  1004. icon: "svg-matrix",
  1005. path: "/others/warning",
  1006. },
  1007. {
  1008. text: "性能预警综合分析",
  1009. icon: "svg-matrix",
  1010. path: "/others/analysis",
  1011. },
  1012. {
  1013. text: "知识库",
  1014. icon: "svg-matrix",
  1015. path: "/others/knowledgeBase",
  1016. },
  1017. // {
  1018. // text: "发电能力分析",
  1019. // icon: "svg-matrix",
  1020. // path: "/others/abilityAnalysis",
  1021. // },
  1022. // {
  1023. // text: "风电营销样本库",
  1024. // icon: "svg-matrix",
  1025. // path: "/others/market",
  1026. // }
  1027. ],
  1028. },
  1029. ],
  1030. },
  1031. ],
  1032. activeIndex: 0,
  1033. isShowSubMenu: false,
  1034. parentIndex: null,
  1035. subMenu: [],
  1036. subIndex: null,
  1037. };
  1038. },
  1039. methods: {
  1040. click(index) {
  1041. this.activeIndex = index;
  1042. this.subIndex = null;
  1043. },
  1044. subMenuShow(children, index) {
  1045. if (children) {
  1046. this.isShowSubMenu = true;
  1047. this.parentIndex = index;
  1048. } else {
  1049. this.isShowSubMenu = false;
  1050. this.parentIndex = null;
  1051. }
  1052. this.subMenu = children;
  1053. },
  1054. subMenuHide() {
  1055. this.isShowSubMenu = false;
  1056. this.parentIndex = null;
  1057. // this.subMenu = [];
  1058. },
  1059. subclick(index) {
  1060. this.activeIndex = this.parentIndex;
  1061. this.subIndex = index;
  1062. },
  1063. },
  1064. computed: {
  1065. currentMenu() {
  1066. let data = this.menuData.filter((t) => {
  1067. return t.id == this.currRoot;
  1068. })[0].data;
  1069. return data;
  1070. },
  1071. },
  1072. watch: {
  1073. // 监听路由
  1074. $route: {
  1075. handler: function (val, oldVal) {
  1076. this.menuData.some((element, index) => {
  1077. if (val.path.includes(element.id)) {
  1078. this.$nextTick(() => {
  1079. this.currRoot = element.id;
  1080. this.$nextTick(() => {
  1081. this.currentMenu.some((element, index) => {
  1082. if (val.path == element.path) {
  1083. this.activeIndex = index;
  1084. }
  1085. });
  1086. });
  1087. });
  1088. return true;
  1089. }
  1090. });
  1091. },
  1092. //深度观察监听
  1093. deep: true,
  1094. },
  1095. },
  1096. };
  1097. </script>
  1098. <style lang="less">
  1099. .menu {
  1100. padding-top: 1.481vh;
  1101. .menu-list {
  1102. margin: 0;
  1103. padding: 0;
  1104. list-style: none;
  1105. .menu-item {
  1106. padding: 1.481vh 0;
  1107. text-align: center;
  1108. .menu-icon {
  1109. display: flex;
  1110. justify-content: center;
  1111. }
  1112. &.active i {
  1113. color: #05bb4c;
  1114. transition: color 1s;
  1115. }
  1116. }
  1117. }
  1118. i {
  1119. font-size: 2.222vh;
  1120. color: rgba(255, 255, 255, 50%);
  1121. }
  1122. }
  1123. .sub-menu {
  1124. position: absolute;
  1125. top: 0;
  1126. left: 5.3704vh;
  1127. width: 158px;
  1128. height: 100%;
  1129. padding-top: 1.481vh;
  1130. background: fade(#192a26, 75);
  1131. border-right: 1px solid fade(@green, 50);
  1132. box-shadow: inset 11px 0px 20px 0px fade(#021412, 60);
  1133. .menu-list {
  1134. margin: 0;
  1135. padding: 0;
  1136. list-style: none;
  1137. .menu-item {
  1138. display: flex;
  1139. text-align: center;
  1140. line-height: 1.5;
  1141. padding: 8px 0;
  1142. background: #121d1c;
  1143. a {
  1144. display: flex;
  1145. width: 100%;
  1146. height: 100%;
  1147. padding: 0 1.4815vh;
  1148. font-size: @fontsize-s;
  1149. text-decoration: unset;
  1150. .menu-icon {
  1151. display: flex;
  1152. align-items: center;
  1153. svg {
  1154. width: 14px;
  1155. height: 14px;
  1156. use {
  1157. fill: fade(@green, 75);
  1158. }
  1159. }
  1160. }
  1161. }
  1162. &.active {
  1163. background: #323e70;
  1164. .menu-icon {
  1165. display: flex;
  1166. svg use {
  1167. fill: fade(@white, 75);
  1168. }
  1169. }
  1170. }
  1171. .sub-menu-text {
  1172. margin-left: 1.1111vh;
  1173. color: @gray-l;
  1174. }
  1175. & + .menu-item {
  1176. border-top: 1px solid fade(@darkgray, 40);
  1177. }
  1178. }
  1179. }
  1180. i {
  1181. font-size: 2.222vh;
  1182. color: rgba(255, 255, 255, 50%);
  1183. }
  1184. }
  1185. </style>