global.js 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911
  1. /** 静态菜单 */
  2. const __STATIC_ROUTES__ = [
  3. {
  4. redirect: undefined,
  5. path: '/dashboard',
  6. component: 'PLAIN_LAYOUT',
  7. // component: 'LAYOUT',
  8. children: [
  9. // {
  10. // path: '/dashboard/sealedgoaf',
  11. // component: '/dashboard/SealedGoaf',
  12. // meta: {
  13. // keepAlive: true,
  14. // internalOrExternal: false,
  15. // icon: '',
  16. // componentName: 'SealedGoaf',
  17. // title: '老空区永久密闭首页',
  18. // },
  19. // name: 'dashboard-sealedgoaf',
  20. // },
  21. // {
  22. // path: '/dashboard/sealedgoaf',
  23. // component: '/dashboard/SealedGoafMine',
  24. // meta: {
  25. // keepAlive: true,
  26. // internalOrExternal: false,
  27. // icon: '',
  28. // componentName: 'SealedGoafMine',
  29. // title: '老空区永久密闭首页',
  30. // },
  31. // name: 'dashboard-sealedgoaf-mine',
  32. // },
  33. {
  34. path: '/dashboard/hiddenSurface',
  35. component: '/dashboard/HiddenSurface',
  36. meta: {
  37. keepAlive: true,
  38. internalOrExternal: false,
  39. icon: '',
  40. componentName: 'HiddenSurface',
  41. title: '测风数据监测首页',
  42. },
  43. name: 'dashboard-hiddenSurface',
  44. },
  45. // {
  46. // path: '/dashboard/analysis',
  47. // component: 'dashboard/Analysis',
  48. // meta: {
  49. // keepAlive: true,
  50. // internalOrExternal: false,
  51. // icon: '',
  52. // componentName: 'Analysis',
  53. // title: '首页',
  54. // },
  55. // name: 'dashboard-analysis',
  56. // },
  57. // {
  58. // path: '/portal-view/system',
  59. // component: '1',
  60. // meta: {
  61. // keepAlive: false,
  62. // internalOrExternal: false,
  63. // icon: '',
  64. // componentName: '1',
  65. // title: '主门户',
  66. // },
  67. // name: 'portal-view-system',
  68. // },
  69. // {
  70. // path: '/portal-view/personal',
  71. // component: '1',
  72. // meta: {
  73. // keepAlive: false,
  74. // internalOrExternal: false,
  75. // icon: '',
  76. // componentName: '1',
  77. // title: '个人工作台',
  78. // },
  79. // name: 'portal-view-personal',
  80. // },
  81. // {
  82. // path: '/dashboard/workbench',
  83. // component: 'dashboard/workbench/index',
  84. // meta: {
  85. // keepAlive: false,
  86. // internalOrExternal: false,
  87. // icon: '',
  88. // componentName: 'index',
  89. // title: '工作台',
  90. // },
  91. // name: 'dashboard-workbench',
  92. // },
  93. ],
  94. meta: {
  95. keepAlive: false,
  96. internalOrExternal: false,
  97. icon: 'ant-design:home-outlined',
  98. componentName: 'index',
  99. title: '主页',
  100. hideMenu: true,
  101. hideBreadcrumb: true,
  102. hideTab: true
  103. },
  104. name: 'dashboard',
  105. },
  106. {
  107. redirect: undefined,
  108. path: '/basicinfo',
  109. component: 'LAYOUT',
  110. children: [
  111. // {
  112. // path: '/basicinfo/overhaul',
  113. // component: 'dashboard/Overhaul',
  114. // meta: {
  115. // keepAlive: true,
  116. // internalOrExternal: false,
  117. // icon: '',
  118. // componentName: 'index',
  119. // title: '信息汇总',
  120. // },
  121. // name: 'basicinfo-overhaul',
  122. // },
  123. {
  124. path: '/basicinfo/mines-info',
  125. component: 'dashboard/basicInfo/minesInfo',
  126. meta: {
  127. keepAlive: true,
  128. internalOrExternal: false,
  129. icon: '',
  130. componentName: 'index',
  131. title: '矿山信息',
  132. },
  133. name: 'basicinfo-mines-info',
  134. },
  135. {
  136. path: '/basicinfo/access-statistics',
  137. component: 'dashboard/basicInfo/accessStatistics',
  138. meta: {
  139. keepAlive: true,
  140. internalOrExternal: false,
  141. icon: '',
  142. componentName: 'index',
  143. title: '接入统计',
  144. },
  145. name: 'basicinfo-access-statistics',
  146. },
  147. {
  148. path: '/basicinfo/closed-statistics',
  149. component: 'dashboard/basicInfo/closedStatistics',
  150. meta: {
  151. keepAlive: true,
  152. internalOrExternal: false,
  153. icon: '',
  154. componentName: 'index',
  155. title: '密闭统计',
  156. },
  157. name: 'basicinfo-closed-statistics',
  158. },
  159. // {
  160. // path: '/basicinfo/data-quality',
  161. // component: 'dashboard/basicInfo/dataQuality',
  162. // meta: {
  163. // keepAlive: true,
  164. // internalOrExternal: false,
  165. // icon: '',
  166. // componentName: 'index',
  167. // title: '数据质量',
  168. // },
  169. // name: 'basicinfo-data-quality',
  170. // },
  171. // {
  172. // path: '/basicinfo/problem-report',
  173. // component: 'dashboard/basicInfo/problemReport',
  174. // meta: {
  175. // keepAlive: true,
  176. // internalOrExternal: false,
  177. // icon: '',
  178. // componentName: 'index',
  179. // title: '密闭墙问题反馈',
  180. // },
  181. // name: 'basicinfo-problem-report',
  182. // },
  183. ],
  184. meta: {
  185. keepAlive: false,
  186. internalOrExternal: false,
  187. icon: 'menu-info|svg',
  188. componentName: 'index',
  189. title: '矿山基础信息',
  190. },
  191. name: 'basicInfo',
  192. },
  193. {
  194. redirect: undefined,
  195. path: '/warning-analysis',
  196. component: 'LAYOUT',
  197. children: [
  198. // {
  199. // path: '/warning-analysis/air-leak-status',
  200. // component: '/analysis/warningAnalysis/airLeakStatus/index',
  201. // meta: {
  202. // keepAlive: true,
  203. // internalOrExternal: false,
  204. // icon: '',
  205. // componentName: 'index',
  206. // title: '密闭漏风状态判定',
  207. // },
  208. // name: 'airLeakStatus',
  209. // },
  210. // {
  211. // path: '/warning-analysis/pressure-diff-analysis',
  212. // component: '/analysis/warningAnalysis/pressureDiffAnalysis/index',
  213. // meta: {
  214. // keepAlive: true,
  215. // internalOrExternal: false,
  216. // icon: '',
  217. // componentName: 'index',
  218. // title: '内外压差变化风险分析',
  219. // },
  220. // name: 'pressureDiffAnalysis',
  221. // },
  222. // {
  223. // path: '/warningAnalysis/autoFire-analysis',
  224. // component: '/analysis/warningAnalysis/autoFireAnalysis/index',
  225. // meta: {
  226. // keepAlive: true,
  227. // internalOrExternal: false,
  228. // icon: '',
  229. // componentName: 'index',
  230. // title: '闭内自燃发火隐患分级',
  231. // },
  232. // name: 'warningAnalysis-autoFire-analysis',
  233. // },
  234. // {
  235. // path: '/warningAnalysis/autoFireOut-analysis',
  236. // component: '/analysis/warningAnalysis/autoFireOutAnalysis/index',
  237. // meta: {
  238. // keepAlive: true,
  239. // internalOrExternal: false,
  240. // icon: '',
  241. // componentName: 'index',
  242. // title: '闭外自燃发火隐患分级',
  243. // },
  244. // name: 'warningAnalysis-autoFireOut-analysis',
  245. // },
  246. // {
  247. // path: '/warningAnalysis/fireArea-judge',
  248. // component: '/analysis/warningAnalysis/fireAreaJudgeAnalysis/index',
  249. // meta: {
  250. // keepAlive: true,
  251. // internalOrExternal: false,
  252. // icon: '',
  253. // componentName: 'index',
  254. // title: '火区密闭启封判定',
  255. // },
  256. // name: 'warningAnalysis-fireArea-judge',
  257. // },
  258. // {
  259. // path: '/warningAnalysis/sealRisk-judge',
  260. // component: '/analysis/warningAnalysis/sealRiskJudgeAnalysis/index',
  261. // meta: {
  262. // keepAlive: true,
  263. // internalOrExternal: false,
  264. // icon: '',
  265. // componentName: 'index',
  266. // title: '密闭爆炸危险性判定',
  267. // },
  268. // name: 'warningAnalysis-sealRisk-judge',
  269. // },
  270. // {
  271. // path: '/warningAnalysis/overlimit-alarm',
  272. // component: '/analysis/warningAnalysis/overlimitAlarm/index',
  273. // meta: {
  274. // keepAlive: true,
  275. // internalOrExternal: false,
  276. // icon: '',
  277. // componentName: 'index',
  278. // title: '闭内超限报警',
  279. // },
  280. // name: 'warningAnalysis-overlimit-alarm',
  281. // },
  282. // {
  283. // path: '/warningAnalysis/overlimit-alarm-out',
  284. // component: '/analysis/warningAnalysis/overlimitAlarmOut/index',
  285. // meta: {
  286. // keepAlive: true,
  287. // internalOrExternal: false,
  288. // icon: '',
  289. // componentName: 'index',
  290. // title: '闭外超限报警',
  291. // },
  292. // name: 'warningAnalysis-overlimit-alarm-out',
  293. // },
  294. // {
  295. // path: '/warningAnalysis/report-analysis',
  296. // component: '/analysis/warningAnalysis/reportAnalysis/index',
  297. // meta: {
  298. // keepAlive: true,
  299. // internalOrExternal: false,
  300. // icon: '',
  301. // componentName: 'index',
  302. // title: '数据中断分析',
  303. // },
  304. // name: 'warningAnalysis-report-analysis',
  305. // },
  306. // {
  307. // path: '/warningAnalysis/connectAnalysis',
  308. // component: '/analysis/warningAnalysis/connectAnalysis/index',
  309. // meta: {
  310. // keepAlive: true,
  311. // internalOrExternal: false,
  312. // icon: '',
  313. // componentName: 'index',
  314. // title: '关联分析',
  315. // },
  316. // name: 'warningAnalysis-connect',
  317. // },
  318. {
  319. path: '/warningAnalysis/global-alarm',
  320. component: '/analysis/warningAnalysis/globalAlarm/index',
  321. meta: {
  322. keepAlive: true,
  323. internalOrExternal: false,
  324. icon: '',
  325. componentName: 'index',
  326. title: '预警信息全览',
  327. },
  328. name: 'warningAnalysis-global-alarm',
  329. },
  330. {
  331. path: '/warningAnalysis/wind-point-manage',
  332. component: '/analysis/warningAnalysis/windPointManage/index',
  333. meta: {
  334. keepAlive: true,
  335. internalOrExternal: false,
  336. icon: '',
  337. componentName: 'index',
  338. title: '测风点位管理',
  339. },
  340. name: 'warningAnalysis-wind-point-manage',
  341. },
  342. {
  343. path: '/warningAnalysis/cadFile',
  344. component: '/system/cadFile/index',
  345. meta: {
  346. keepAlive: true,
  347. internalOrExternal: false,
  348. icon: '',
  349. componentName: 'index',
  350. title: '地图布点管理',
  351. },
  352. name: 'warningAnalysis-cadFile',
  353. },
  354. ],
  355. meta: {
  356. keepAlive: false,
  357. internalOrExternal: false,
  358. icon: 'menu-warning|svg',
  359. componentName: 'index',
  360. title: '预警研判',
  361. },
  362. name: 'warningAnalysis',
  363. },
  364. {
  365. redirect: undefined,
  366. path: '/surface',
  367. component: '/monitor/surfaceMonitor/index',
  368. children: [
  369. {
  370. path: '/surface/${id}',
  371. component: '/monitor/surfaceMonitor/index',
  372. meta: {
  373. keepAlive: true,
  374. internalOrExternal: false,
  375. icon: '',
  376. componentName: 'index',
  377. title: '${departName}',
  378. hideMenu: true,
  379. generation: false,
  380. // orderNo: '${departOrder}',
  381. },
  382. name: 'surface-${id}',
  383. }
  384. ],
  385. meta: {
  386. keepAlive: false,
  387. internalOrExternal: false,
  388. icon: 'menu-analysis|svg',
  389. componentName: 'index',
  390. title: '隐蔽工作面监测',
  391. generation: true,
  392. },
  393. name: 'surface',
  394. },
  395. {
  396. redirect: undefined,
  397. path: '/sensor',
  398. component: '/monitor/sensorMonitor/index',
  399. children: [
  400. {
  401. path: '/sensor/${id}',
  402. component: '/monitor/sensorMonitor/index',
  403. meta: {
  404. keepAlive: true,
  405. internalOrExternal: false,
  406. icon: '',
  407. componentName: 'index',
  408. title: '${departName}',
  409. hideMenu: true,
  410. generation: false,
  411. // orderNo: '${departOrder}',
  412. },
  413. name: 'sensor-${id}',
  414. }
  415. ],
  416. meta: {
  417. keepAlive: false,
  418. internalOrExternal: false,
  419. icon: 'menu-analysis|svg',
  420. componentName: 'index',
  421. title: '风速风量监测',
  422. generation: true,
  423. },
  424. name: 'sensor',
  425. },
  426. // {
  427. // redirect: undefined,
  428. // path: '/smart-analysis',
  429. // component: 'LAYOUT',
  430. // children: [
  431. // // {
  432. // // path: '/smart-analysis/association',
  433. // // component: '/demo/table/Basic',
  434. // // meta: {
  435. // // keepAlive: true,
  436. // // internalOrExternal: false,
  437. // // icon: '',
  438. // // componentName: 'index',
  439. // // title: '关联分析',
  440. // // },
  441. // // name: 'association',
  442. // // },
  443. // ],
  444. // meta: {
  445. // keepAlive: false,
  446. // internalOrExternal: false,
  447. // icon: 'menu-smart|svg',
  448. // componentName: 'index',
  449. // title: '智能分析',
  450. // },
  451. // name: 'smartAnalysis',
  452. // },
  453. // {
  454. // redirect: undefined,
  455. // path: '/manage',
  456. // component: 'LAYOUT',
  457. // children: [
  458. // {
  459. // path: '/manage/map',
  460. // component: '/system/cadFile/index',
  461. // meta: {
  462. // keepAlive: true,
  463. // internalOrExternal: false,
  464. // icon: '',
  465. // componentName: 'index',
  466. // title: '地图管理',
  467. // // hideMenu: true,
  468. // },
  469. // name: 'cadFile',
  470. // },
  471. // {
  472. // path: '/manage/mapView',
  473. // component: '/system/cadFile/mapView/index',
  474. // meta: {
  475. // keepAlive: true,
  476. // internalOrExternal: false,
  477. // icon: '',
  478. // componentName: 'index',
  479. // title: '图纸布点',
  480. // hideMenu: true,
  481. // },
  482. // name: 'cadFile-mapView',
  483. // },
  484. // // 预警模型管理:配置煤层/采空区预警判据的关联表达式
  485. // {
  486. // path: '/manage/model',
  487. // component: '/system/algorithm/index',
  488. // meta: {
  489. // keepAlive: true,
  490. // internalOrExternal: false,
  491. // // compact: true,
  492. // icon: '',
  493. // componentName: 'index',
  494. // title: '预警模型管理',
  495. // },
  496. // name: 'association',
  497. // },
  498. // ],
  499. // meta: {
  500. // keepAlive: false,
  501. // internalOrExternal: false,
  502. // icon: 'menu-model|svg',
  503. // componentName: 'index',
  504. // title: '模型与地图管理',
  505. // },
  506. // name: 'manage',
  507. // },
  508. {
  509. redirect: undefined,
  510. path: '/system',
  511. component: 'LAYOUT',
  512. children: [
  513. // {
  514. // path: '/system/menu',
  515. // component: 'system/menu/index',
  516. // meta: {
  517. // keepAlive: false,
  518. // internalOrExternal: false,
  519. // icon: '',
  520. // componentName: 'index',
  521. // title: '系统菜单',
  522. // },
  523. // name: 'system-menu',
  524. // },
  525. {
  526. path: '/system/user',
  527. component: 'system/user/index',
  528. meta: {
  529. keepAlive: true,
  530. internalOrExternal: false,
  531. icon: '',
  532. componentName: 'index',
  533. title: '系统用户',
  534. },
  535. name: 'system-user',
  536. },
  537. // {
  538. // path: '/system/home-config',
  539. // component: 'system/homeConfig/index',
  540. // meta: {
  541. // keepAlive: false,
  542. // internalOrExternal: false,
  543. // icon: '',
  544. // componentName: 'index',
  545. // title: '首页配置',
  546. // },
  547. // name: 'system-home-config',
  548. // },
  549. {
  550. path: '/system/role',
  551. component: 'system/role/index',
  552. meta: {
  553. keepAlive: true,
  554. internalOrExternal: false,
  555. icon: '',
  556. componentName: 'index',
  557. title: '系统角色',
  558. },
  559. name: 'system-role',
  560. },
  561. {
  562. path: '/system/dict',
  563. component: 'system/dict/index',
  564. meta: {
  565. keepAlive: false,
  566. internalOrExternal: false,
  567. icon: '',
  568. componentName: 'index',
  569. title: '数据字典',
  570. },
  571. name: 'system-dict',
  572. },
  573. {
  574. path: '/system/depart',
  575. component: 'system/depart/index',
  576. meta: {
  577. keepAlive: false,
  578. internalOrExternal: false,
  579. icon: '',
  580. componentName: 'index',
  581. title: '部门管理',
  582. },
  583. name: 'system-depart',
  584. },
  585. // {
  586. // path: '/system/tenant',
  587. // component: 'system/tenant/index',
  588. // meta: {
  589. // keepAlive: false,
  590. // internalOrExternal: false,
  591. // icon: '',
  592. // componentName: 'index',
  593. // title: '多租户管理',
  594. // },
  595. // name: 'system-tenant',
  596. // },
  597. // {
  598. // path: '/tenant/TenantDefaultPack',
  599. // component: 'system/tenant/pack/TenantDefaultPackList',
  600. // meta: {
  601. // keepAlive: false,
  602. // internalOrExternal: false,
  603. // icon: '',
  604. // componentName: 'TenantDefaultPackList',
  605. // title: '租户默认套餐',
  606. // },
  607. // name: 'tenant-TenantDefaultPack',
  608. // },
  609. // {
  610. // path: '/system/position',
  611. // component: 'system/position/index',
  612. // meta: {
  613. // keepAlive: false,
  614. // internalOrExternal: false,
  615. // icon: '',
  616. // componentName: 'index',
  617. // title: '职务级别',
  618. // },
  619. // name: 'system-position',
  620. // },
  621. // {
  622. // path: '/system/category',
  623. // component: 'system/category/index',
  624. // meta: {
  625. // keepAlive: false,
  626. // internalOrExternal: false,
  627. // icon: '',
  628. // componentName: 'index',
  629. // title: '分类字典',
  630. // },
  631. // name: 'system-category',
  632. // },
  633. {
  634. path: '/system/notice',
  635. component: 'system/notice/index',
  636. meta: {
  637. keepAlive: false,
  638. internalOrExternal: false,
  639. icon: '',
  640. componentName: 'index',
  641. title: '通知公告',
  642. },
  643. name: 'system-notice',
  644. },
  645. // {
  646. // path: '/system/depart-user',
  647. // component: 'system/departUser/index',
  648. // meta: {
  649. // keepAlive: false,
  650. // internalOrExternal: false,
  651. // icon: '',
  652. // componentName: 'index',
  653. // title: '我的部门',
  654. // },
  655. // name: 'system-depart-user',
  656. // },
  657. {
  658. path: '/system/usersetting',
  659. component: 'system/usersetting/UserSetting',
  660. meta: {
  661. hideMenu: true,
  662. keepAlive: false,
  663. internalOrExternal: false,
  664. icon: '',
  665. componentName: 'UserSetting',
  666. title: '用户设置',
  667. },
  668. name: 'system-usersetting',
  669. },
  670. // {
  671. // path: '/monitor/datalog',
  672. // component: 'monitor/datalog/index',
  673. // meta: {
  674. // keepAlive: false,
  675. // internalOrExternal: false,
  676. // icon: '',
  677. // componentName: 'index',
  678. // title: '数据日志',
  679. // },
  680. // name: 'monitor-datalog',
  681. // },
  682. {
  683. path: '/monitor/log',
  684. component: 'monitor/log/index',
  685. meta: {
  686. keepAlive: false,
  687. internalOrExternal: false,
  688. icon: '',
  689. componentName: 'index',
  690. title: '日志管理',
  691. },
  692. name: 'monitor-log',
  693. },
  694. // {
  695. // path: '/third/app',
  696. // component: 'system/appconfig/ThirdAppConfigList',
  697. // meta: {
  698. // keepAlive: false,
  699. // internalOrExternal: false,
  700. // icon: '',
  701. // componentName: 'ThirdAppConfigList',
  702. // title: '第三方配置',
  703. // },
  704. // name: 'third-app',
  705. // },
  706. {
  707. path: '/system/configurable',
  708. component: 'system/configurable/index',
  709. meta: {
  710. keepAlive: false,
  711. internalOrExternal: false,
  712. icon: '',
  713. componentName: 'index',
  714. title: '可配置模块管理',
  715. },
  716. name: 'configurable-manage',
  717. },
  718. ],
  719. meta: {
  720. keepAlive: false,
  721. internalOrExternal: false,
  722. icon: 'menu-manage|svg',
  723. componentName: 'index',
  724. title: '系统管理',
  725. },
  726. name: 'isystem',
  727. },
  728. // {
  729. // redirect: undefined,
  730. // path: '/monitor',
  731. // component: 'LAYOUT',
  732. // children: [
  733. // {
  734. // path: '/monitor/route',
  735. // component: 'monitor/route/index',
  736. // meta: {
  737. // keepAlive: false,
  738. // internalOrExternal: false,
  739. // icon: '',
  740. // componentName: 'index',
  741. // title: '网关路由',
  742. // },
  743. // name: 'monitor-route',
  744. // },
  745. // {
  746. // path: '/monitor/quartz',
  747. // component: 'monitor/quartz/index',
  748. // meta: {
  749. // keepAlive: false,
  750. // internalOrExternal: false,
  751. // icon: '',
  752. // componentName: 'index',
  753. // title: '定时任务',
  754. // },
  755. // name: 'monitor-quartz',
  756. // },
  757. // {
  758. // path: '/monitor/datasource',
  759. // component: 'monitor/datasource/index',
  760. // meta: {
  761. // keepAlive: false,
  762. // internalOrExternal: false,
  763. // icon: '',
  764. // componentName: 'index',
  765. // title: '数据源管理',
  766. // },
  767. // name: 'monitor-datasource',
  768. // },
  769. // {
  770. // path: '/monitor/datalog',
  771. // component: 'monitor/datalog/index',
  772. // meta: {
  773. // keepAlive: false,
  774. // internalOrExternal: false,
  775. // icon: '',
  776. // componentName: 'index',
  777. // title: '数据日志',
  778. // },
  779. // name: 'monitor-datalog',
  780. // },
  781. // {
  782. // path: '/monitor/log',
  783. // component: 'monitor/log/index',
  784. // meta: {
  785. // keepAlive: false,
  786. // internalOrExternal: false,
  787. // icon: '',
  788. // componentName: 'index',
  789. // title: '日志管理',
  790. // },
  791. // name: 'monitor-log',
  792. // },
  793. // {
  794. // path: '/monitor/druid',
  795. // component: "{{ window._CONFIG['domianURL'] }}/druid",
  796. // meta: {
  797. // keepAlive: false,
  798. // internalOrExternal: true,
  799. // icon: '',
  800. // componentName: 'druid',
  801. // title: 'SQL监控',
  802. // },
  803. // name: 'monitor-druid',
  804. // },
  805. // {
  806. // path: '/monitor/server',
  807. // component: 'monitor/server/index',
  808. // meta: {
  809. // keepAlive: false,
  810. // internalOrExternal: false,
  811. // icon: '',
  812. // componentName: 'index',
  813. // title: '性能监控',
  814. // },
  815. // name: 'monitor-server',
  816. // },
  817. // {
  818. // path: '/monitor/redis',
  819. // component: 'monitor/redis/index',
  820. // meta: {
  821. // keepAlive: false,
  822. // internalOrExternal: false,
  823. // icon: '',
  824. // componentName: 'index',
  825. // title: 'Redis监控',
  826. // },
  827. // name: 'monitor-redis',
  828. // },
  829. // {
  830. // path: '/monitor/trace',
  831. // component: 'monitor/trace/index',
  832. // meta: {
  833. // keepAlive: false,
  834. // internalOrExternal: false,
  835. // icon: '',
  836. // componentName: 'index',
  837. // title: '请求追踪',
  838. // },
  839. // name: 'monitor-trace',
  840. // },
  841. // {
  842. // path: '/system/onlineuser',
  843. // component: 'system/onlineuser/OnlineUserList',
  844. // meta: {
  845. // keepAlive: false,
  846. // internalOrExternal: false,
  847. // icon: '',
  848. // componentName: 'OnlineUserList',
  849. // title: '在线用户',
  850. // },
  851. // name: 'system-onlineuser',
  852. // },
  853. // {
  854. // path: '/openapi',
  855. // component: 'layouts/RouteView',
  856. // children: [
  857. // {
  858. // path: '/openapi/openApiAuthList',
  859. // component: 'openapi/OpenApiAuthList',
  860. // meta: {
  861. // keepAlive: false,
  862. // internalOrExternal: false,
  863. // componentName: 'OpenApiAuthList',
  864. // title: '授权管理',
  865. // },
  866. // name: 'openapi-openApiAuthList',
  867. // },
  868. // {
  869. // path: '/openapi/openApiList',
  870. // component: 'openapi/OpenApiList',
  871. // meta: {
  872. // keepAlive: false,
  873. // internalOrExternal: false,
  874. // componentName: 'OpenApiList',
  875. // title: '接口管理',
  876. // },
  877. // name: 'openapi-openApiList',
  878. // },
  879. // {
  880. // path: '/openapi/SwaggerUI',
  881. // component: 'openapi/SwaggerUI',
  882. // meta: {
  883. // keepAlive: false,
  884. // internalOrExternal: false,
  885. // componentName: 'SwaggerUI',
  886. // title: '接口文档',
  887. // },
  888. // name: 'openapi-SwaggerUI',
  889. // },
  890. // ],
  891. // meta: {
  892. // keepAlive: false,
  893. // internalOrExternal: false,
  894. // icon: '',
  895. // componentName: 'RouteView',
  896. // title: 'OpenAPI',
  897. // },
  898. // name: 'openapi',
  899. // },
  900. // ],
  901. // meta: {
  902. // keepAlive: false,
  903. // internalOrExternal: false,
  904. // icon: '',
  905. // componentName: 'index',
  906. // title: '系统监控',
  907. // },
  908. // name: 'monitor',
  909. // },
  910. ]