sys_menu.json 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178
  1. [
  2. {
  3. "name": "仪表盘",
  4. "type": 1,
  5. "icon": "client",
  6. "order": 1,
  7. "permission": "",
  8. "route_name": "Dashboard",
  9. "route_path": "/dashboard",
  10. "component_path": null,
  11. "status": "0",
  12. "keep_alive": true,
  13. "hidden": false,
  14. "always_show": true,
  15. "title": "仪表盘",
  16. "params": null,
  17. "affix": false,
  18. "redirect": "/dashboard/workplace",
  19. "description": "初始化数据",
  20. "children": [
  21. {
  22. "name": "工作台",
  23. "type": 2,
  24. "icon": "el-icon-PieChart",
  25. "order": 1,
  26. "permission": "dashboard:workplace:query",
  27. "route_name": "Workplace",
  28. "route_path": "/dashboard/workplace",
  29. "component_path": "dashboard/workplace",
  30. "status": "0",
  31. "keep_alive": true,
  32. "hidden": false,
  33. "always_show": false,
  34. "title": "工作台",
  35. "params": null,
  36. "affix": false,
  37. "redirect": null,
  38. "description": "初始化数据"
  39. }
  40. ]
  41. },
  42. {
  43. "name": "系统管理",
  44. "type": 1,
  45. "icon": "system",
  46. "order": 2,
  47. "permission": null,
  48. "route_name": "System",
  49. "route_path": "/system",
  50. "component_path": null,
  51. "status": "0",
  52. "keep_alive": true,
  53. "hidden": false,
  54. "always_show": false,
  55. "title": "系统管理",
  56. "params": null,
  57. "affix": false,
  58. "redirect": "/system/menu",
  59. "description": "初始化数据",
  60. "children": [
  61. {
  62. "name": "菜单管理",
  63. "type": 2,
  64. "icon": "menu",
  65. "order": 1,
  66. "permission": "module_system:menu:query",
  67. "route_name": "Menu",
  68. "route_path": "/system/menu",
  69. "component_path": "module_system/menu/index",
  70. "status": "0",
  71. "keep_alive": true,
  72. "hidden": false,
  73. "always_show": false,
  74. "title": "菜单管理",
  75. "params": null,
  76. "affix": false,
  77. "redirect": null,
  78. "description": "初始化数据",
  79. "children": [
  80. {
  81. "name": "创建菜单",
  82. "type": 3,
  83. "icon": null,
  84. "order": 1,
  85. "permission": "module_system:menu:create",
  86. "route_name": null,
  87. "route_path": null,
  88. "component_path": null,
  89. "status": "0",
  90. "keep_alive": true,
  91. "hidden": false,
  92. "always_show": false,
  93. "title": "创建菜单",
  94. "params": null,
  95. "affix": false,
  96. "redirect": null,
  97. "description": "初始化数据"
  98. },
  99. {
  100. "name": "修改菜单",
  101. "type": 3,
  102. "icon": null,
  103. "order": 2,
  104. "permission": "module_system:menu:update",
  105. "route_name": null,
  106. "route_path": null,
  107. "component_path": null,
  108. "status": "0",
  109. "keep_alive": true,
  110. "hidden": false,
  111. "always_show": false,
  112. "title": "修改菜单",
  113. "params": null,
  114. "affix": false,
  115. "redirect": null,
  116. "description": "初始化数据"
  117. },
  118. {
  119. "name": "删除菜单",
  120. "type": 3,
  121. "icon": null,
  122. "order": 3,
  123. "permission": "module_system:menu:delete",
  124. "route_name": null,
  125. "route_path": null,
  126. "component_path": null,
  127. "status": "0",
  128. "keep_alive": true,
  129. "hidden": false,
  130. "always_show": false,
  131. "title": "删除菜单",
  132. "params": null,
  133. "affix": false,
  134. "redirect": null,
  135. "description": "初始化数据"
  136. },
  137. {
  138. "name": "批量修改菜单状态",
  139. "type": 3,
  140. "icon": null,
  141. "order": 4,
  142. "permission": "module_system:menu:patch",
  143. "route_name": null,
  144. "route_path": null,
  145. "component_path": null,
  146. "status": "0",
  147. "keep_alive": true,
  148. "hidden": false,
  149. "always_show": false,
  150. "title": "批量修改菜单状态",
  151. "params": null,
  152. "affix": false,
  153. "redirect": null,
  154. "description": "初始化数据"
  155. }
  156. ]
  157. },
  158. {
  159. "name": "部门管理",
  160. "type": 2,
  161. "icon": "tree",
  162. "order": 2,
  163. "permission": "module_system:dept:query",
  164. "route_name": "Dept",
  165. "route_path": "/system/dept",
  166. "component_path": "module_system/dept/index",
  167. "status": "0",
  168. "keep_alive": true,
  169. "always_show": false,
  170. "title": "部门管理",
  171. "params": null,
  172. "affix": false,
  173. "hidden": false,
  174. "redirect": null,
  175. "description": "初始化数据",
  176. "children": [
  177. {
  178. "name": "创建部门",
  179. "type": 3,
  180. "icon": null,
  181. "order": 1,
  182. "permission": "module_system:dept:create",
  183. "route_name": null,
  184. "route_path": null,
  185. "component_path": null,
  186. "status": "0",
  187. "keep_alive": true,
  188. "hidden": false,
  189. "always_show": false,
  190. "title": "创建部门",
  191. "params": null,
  192. "affix": false,
  193. "redirect": null,
  194. "description": "初始化数据"
  195. },
  196. {
  197. "name": "修改部门",
  198. "type": 3,
  199. "icon": null,
  200. "order": 2,
  201. "permission": "module_system:dept:update",
  202. "route_name": null,
  203. "route_path": null,
  204. "component_path": null,
  205. "status": "0",
  206. "keep_alive": true,
  207. "hidden": false,
  208. "always_show": false,
  209. "title": "修改部门",
  210. "params": null,
  211. "affix": false,
  212. "redirect": null,
  213. "description": "初始化数据"
  214. },
  215. {
  216. "name": "删除部门",
  217. "type": 3,
  218. "icon": null,
  219. "order": 3,
  220. "permission": "module_system:dept:delete",
  221. "route_name": null,
  222. "route_path": null,
  223. "component_path": null,
  224. "status": "0",
  225. "keep_alive": true,
  226. "hidden": false,
  227. "always_show": false,
  228. "title": "删除部门",
  229. "params": null,
  230. "affix": false,
  231. "redirect": null,
  232. "description": "初始化数据"
  233. },
  234. {
  235. "name": "批量修改部门状态",
  236. "type": 3,
  237. "icon": null,
  238. "order": 4,
  239. "permission": "module_system:dept:patch",
  240. "route_name": null,
  241. "route_path": null,
  242. "component_path": null,
  243. "status": "0",
  244. "keep_alive": true,
  245. "hidden": false,
  246. "always_show": false,
  247. "title": "批量修改部门状态",
  248. "params": null,
  249. "affix": false,
  250. "redirect": null,
  251. "description": "初始化数据"
  252. }
  253. ]
  254. },
  255. {
  256. "name": "岗位管理",
  257. "type": 2,
  258. "icon": "el-icon-Coordinate",
  259. "order": 3,
  260. "permission": "module_system:position:query",
  261. "route_name": "Position",
  262. "route_path": "/system/position",
  263. "component_path": "module_system/position/index",
  264. "status": "0",
  265. "keep_alive": true,
  266. "always_show": false,
  267. "title": "岗位管理",
  268. "params": null,
  269. "affix": false,
  270. "hidden": false,
  271. "redirect": null,
  272. "description": "初始化数据",
  273. "children": [
  274. {
  275. "name": "创建岗位",
  276. "type": 3,
  277. "icon": null,
  278. "order": 1,
  279. "permission": "module_system:position:create",
  280. "route_name": null,
  281. "route_path": null,
  282. "component_path": null,
  283. "status": "0",
  284. "keep_alive": true,
  285. "hidden": false,
  286. "always_show": false,
  287. "title": "创建岗位",
  288. "params": null,
  289. "affix": false,
  290. "redirect": null,
  291. "description": "初始化数据"
  292. },
  293. {
  294. "name": "修改岗位",
  295. "type": 3,
  296. "icon": null,
  297. "order": 2,
  298. "permission": "module_system:position:update",
  299. "route_name": null,
  300. "route_path": null,
  301. "component_path": null,
  302. "status": "0",
  303. "keep_alive": true,
  304. "hidden": false,
  305. "always_show": false,
  306. "title": "修改岗位",
  307. "params": null,
  308. "affix": false,
  309. "redirect": null,
  310. "description": "初始化数据"
  311. },
  312. {
  313. "name": "删除岗位",
  314. "type": 3,
  315. "icon": null,
  316. "order": 3,
  317. "permission": "module_system:position:delete",
  318. "route_name": null,
  319. "route_path": null,
  320. "component_path": null,
  321. "status": "0",
  322. "keep_alive": true,
  323. "hidden": false,
  324. "always_show": false,
  325. "title": "修改岗位",
  326. "params": null,
  327. "affix": false,
  328. "redirect": null,
  329. "description": "初始化数据"
  330. },
  331. {
  332. "name": "批量修改岗位状态",
  333. "type": 3,
  334. "icon": null,
  335. "order": 4,
  336. "permission": "module_system:position:patch",
  337. "route_name": null,
  338. "route_path": null,
  339. "component_path": null,
  340. "status": "0",
  341. "keep_alive": true,
  342. "hidden": false,
  343. "always_show": false,
  344. "title": "批量修改岗位状态",
  345. "params": null,
  346. "affix": false,
  347. "redirect": null,
  348. "description": "初始化数据"
  349. },
  350. {
  351. "name": "岗位导出",
  352. "type": 3,
  353. "icon": null,
  354. "order": 5,
  355. "permission": "module_system:position:export",
  356. "route_name": null,
  357. "route_path": null,
  358. "component_path": null,
  359. "status": "0",
  360. "keep_alive": true,
  361. "hidden": false,
  362. "always_show": false,
  363. "title": "岗位导出",
  364. "params": null,
  365. "affix": false,
  366. "redirect": null,
  367. "description": "初始化数据"
  368. },
  369. {
  370. "name": "设置角色权限",
  371. "type": 3,
  372. "icon": null,
  373. "order": 8,
  374. "permission": "module_system:role:permission",
  375. "route_name": null,
  376. "route_path": null,
  377. "component_path": null,
  378. "status": "0",
  379. "keep_alive": true,
  380. "hidden": false,
  381. "always_show": false,
  382. "title": "设置角色权限",
  383. "params": null,
  384. "affix": false,
  385. "redirect": null,
  386. "description": "初始化数据"
  387. }
  388. ]
  389. },
  390. {
  391. "name": "角色管理",
  392. "type": 2,
  393. "icon": "role",
  394. "order": 4,
  395. "permission": "module_system:role:query",
  396. "route_name": "Role",
  397. "route_path": "/system/role",
  398. "component_path": "module_system/role/index",
  399. "status": "0",
  400. "keep_alive": true,
  401. "hidden": false,
  402. "always_show": false,
  403. "title": "角色管理",
  404. "params": null,
  405. "affix": false,
  406. "redirect": null,
  407. "description": "初始化数据",
  408. "children": [
  409. {
  410. "name": "创建角色",
  411. "type": 3,
  412. "icon": null,
  413. "order": 1,
  414. "permission": "module_system:role:create",
  415. "route_name": null,
  416. "route_path": null,
  417. "component_path": null,
  418. "status": "0",
  419. "keep_alive": true,
  420. "hidden": false,
  421. "always_show": false,
  422. "title": "创建角色",
  423. "params": null,
  424. "affix": false,
  425. "redirect": null,
  426. "description": "初始化数据"
  427. },
  428. {
  429. "name": "修改角色",
  430. "type": 3,
  431. "icon": null,
  432. "order": 2,
  433. "permission": "module_system:role:update",
  434. "route_name": null,
  435. "route_path": null,
  436. "component_path": null,
  437. "status": "0",
  438. "keep_alive": true,
  439. "hidden": false,
  440. "always_show": false,
  441. "title": "修改角色",
  442. "params": null,
  443. "affix": false,
  444. "redirect": null,
  445. "description": "初始化数据"
  446. },
  447. {
  448. "name": "删除角色",
  449. "type": 3,
  450. "icon": null,
  451. "order": 3,
  452. "permission": "module_system:role:delete",
  453. "route_name": null,
  454. "route_path": null,
  455. "component_path": null,
  456. "status": "0",
  457. "keep_alive": true,
  458. "hidden": false,
  459. "always_show": false,
  460. "title": "删除角色",
  461. "params": null,
  462. "affix": false,
  463. "redirect": null,
  464. "description": "初始化数据"
  465. },
  466. {
  467. "name": "批量修改角色状态",
  468. "type": 3,
  469. "icon": null,
  470. "order": 4,
  471. "permission": "module_system:role:patch",
  472. "route_name": null,
  473. "route_path": null,
  474. "component_path": null,
  475. "status": "0",
  476. "keep_alive": true,
  477. "hidden": false,
  478. "always_show": false,
  479. "title": "批量修改角色状态",
  480. "params": null,
  481. "affix": false,
  482. "redirect": null,
  483. "description": "初始化数据"
  484. },
  485. {
  486. "name": "角色导出",
  487. "type": 3,
  488. "icon": null,
  489. "order": 6,
  490. "permission": "module_system:role:export",
  491. "route_name": null,
  492. "route_path": null,
  493. "component_path": null,
  494. "status": "0",
  495. "keep_alive": true,
  496. "hidden": false,
  497. "always_show": false,
  498. "title": "角色导出",
  499. "params": null,
  500. "affix": false,
  501. "redirect": null,
  502. "description": "初始化数据"
  503. }
  504. ]
  505. },
  506. {
  507. "name": "用户管理",
  508. "type": 2,
  509. "icon": "el-icon-User",
  510. "order": 5,
  511. "permission": "module_system:user:query",
  512. "route_name": "User",
  513. "route_path": "/system/user",
  514. "component_path": "module_system/user/index",
  515. "status": "0",
  516. "keep_alive": true,
  517. "hidden": false,
  518. "always_show": false,
  519. "title": "用户管理",
  520. "params": null,
  521. "affix": false,
  522. "redirect": null,
  523. "description": "初始化数据",
  524. "children": [
  525. {
  526. "name": "创建用户",
  527. "type": 3,
  528. "icon": null,
  529. "order": 1,
  530. "permission": "module_system:user:create",
  531. "route_name": null,
  532. "route_path": null,
  533. "component_path": null,
  534. "status": "0",
  535. "keep_alive": true,
  536. "hidden": false,
  537. "always_show": false,
  538. "title": "创建用户",
  539. "params": null,
  540. "affix": false,
  541. "redirect": null,
  542. "description": "初始化数据"
  543. },
  544. {
  545. "name": "修改用户",
  546. "type": 3,
  547. "icon": null,
  548. "order": 2,
  549. "permission": "module_system:user:update",
  550. "route_name": null,
  551. "route_path": null,
  552. "component_path": null,
  553. "status": "0",
  554. "keep_alive": true,
  555. "hidden": false,
  556. "always_show": false,
  557. "title": "修改用户",
  558. "params": null,
  559. "affix": false,
  560. "redirect": null,
  561. "description": "初始化数据"
  562. },
  563. {
  564. "name": "删除用户",
  565. "type": 3,
  566. "icon": null,
  567. "order": 3,
  568. "permission": "module_system:user:delete",
  569. "route_name": null,
  570. "route_path": null,
  571. "component_path": null,
  572. "status": "0",
  573. "keep_alive": true,
  574. "hidden": false,
  575. "always_show": false,
  576. "title": "删除用户",
  577. "params": null,
  578. "affix": false,
  579. "redirect": null,
  580. "description": "初始化数据"
  581. },
  582. {
  583. "name": "批量修改用户状态",
  584. "type": 3,
  585. "icon": null,
  586. "order": 4,
  587. "permission": "module_system:user:patch",
  588. "route_name": null,
  589. "route_path": null,
  590. "component_path": null,
  591. "status": "0",
  592. "keep_alive": true,
  593. "hidden": false,
  594. "always_show": false,
  595. "title": "批量修改用户状态",
  596. "params": null,
  597. "affix": false,
  598. "redirect": null,
  599. "description": "初始化数据"
  600. },
  601. {
  602. "name": "导出用户",
  603. "type": 3,
  604. "icon": null,
  605. "order": 5,
  606. "permission": "module_system:user:export",
  607. "route_name": null,
  608. "route_path": null,
  609. "component_path": null,
  610. "status": "0",
  611. "keep_alive": true,
  612. "hidden": false,
  613. "always_show": false,
  614. "title": "导出用户",
  615. "params": null,
  616. "affix": false,
  617. "redirect": null,
  618. "description": "初始化数据"
  619. },
  620. {
  621. "name": "导入用户",
  622. "type": 3,
  623. "icon": null,
  624. "order": 6,
  625. "permission": "module_system:user:import",
  626. "route_name": null,
  627. "route_path": null,
  628. "component_path": null,
  629. "status": "0",
  630. "keep_alive": true,
  631. "hidden": false,
  632. "always_show": false,
  633. "title": "导入用户",
  634. "params": null,
  635. "affix": false,
  636. "redirect": null,
  637. "description": "初始化数据"
  638. }
  639. ]
  640. },
  641. {
  642. "name": "日志管理",
  643. "type": 2,
  644. "icon": "el-icon-Aim",
  645. "order": 6,
  646. "permission": "module_system:log:query",
  647. "route_name": "Log",
  648. "route_path": "/system/log",
  649. "component_path": "module_system/log/index",
  650. "status": "0",
  651. "keep_alive": true,
  652. "hidden": false,
  653. "always_show": false,
  654. "title": "日志管理",
  655. "params": null,
  656. "affix": false,
  657. "redirect": null,
  658. "description": "初始化数据",
  659. "children": [
  660. {
  661. "name": "日志删除",
  662. "type": 3,
  663. "icon": null,
  664. "order": 1,
  665. "permission": "module_system:log:delete",
  666. "route_name": null,
  667. "route_path": null,
  668. "component_path": null,
  669. "status": "0",
  670. "keep_alive": true,
  671. "hidden": false,
  672. "always_show": false,
  673. "title": "日志删除",
  674. "params": null,
  675. "affix": false,
  676. "redirect": null,
  677. "description": "初始化数据"
  678. },
  679. {
  680. "name": "日志导出",
  681. "type": 3,
  682. "icon": null,
  683. "order": 2,
  684. "permission": "module_system:log:export",
  685. "route_name": null,
  686. "route_path": null,
  687. "component_path": null,
  688. "status": "0",
  689. "keep_alive": true,
  690. "hidden": false,
  691. "always_show": false,
  692. "title": "日志导出",
  693. "params": null,
  694. "affix": false,
  695. "redirect": null,
  696. "description": "初始化数据"
  697. }
  698. ]
  699. },
  700. {
  701. "name": "公告管理",
  702. "type": 2,
  703. "icon": "bell",
  704. "order": 7,
  705. "permission": "module_system:notice:query",
  706. "route_name": "Notice",
  707. "route_path": "/system/notice",
  708. "component_path": "module_system/notice/index",
  709. "status": "0",
  710. "keep_alive": true,
  711. "hidden": false,
  712. "always_show": false,
  713. "title": "公告管理",
  714. "params": null,
  715. "affix": false,
  716. "redirect": null,
  717. "description": "初始化数据",
  718. "children": [
  719. {
  720. "name": "公告创建",
  721. "type": 3,
  722. "icon": null,
  723. "order": 1,
  724. "permission": "module_system:notice:create",
  725. "route_name": null,
  726. "route_path": null,
  727. "component_path": null,
  728. "status": "0",
  729. "keep_alive": true,
  730. "hidden": false,
  731. "always_show": false,
  732. "title": "公告创建",
  733. "params": null,
  734. "affix": false,
  735. "redirect": null,
  736. "description": "初始化数据"
  737. },
  738. {
  739. "name": "公告修改",
  740. "type": 3,
  741. "icon": null,
  742. "order": 2,
  743. "permission": "module_system:notice:update",
  744. "route_name": null,
  745. "route_path": null,
  746. "component_path": null,
  747. "status": "0",
  748. "keep_alive": true,
  749. "hidden": false,
  750. "always_show": false,
  751. "title": "修改用户",
  752. "params": null,
  753. "affix": false,
  754. "redirect": null,
  755. "description": "初始化数据"
  756. },
  757. {
  758. "name": "公告删除",
  759. "type": 3,
  760. "icon": null,
  761. "order": 3,
  762. "permission": "module_system:notice:delete",
  763. "route_name": null,
  764. "route_path": null,
  765. "component_path": null,
  766. "status": "0",
  767. "keep_alive": true,
  768. "hidden": false,
  769. "always_show": false,
  770. "title": "公告删除",
  771. "params": null,
  772. "affix": false,
  773. "redirect": null,
  774. "description": "初始化数据"
  775. },
  776. {
  777. "name": "公告导出",
  778. "type": 3,
  779. "icon": null,
  780. "order": 4,
  781. "permission": "module_system:notice:export",
  782. "route_name": null,
  783. "route_path": null,
  784. "component_path": null,
  785. "status": "0",
  786. "keep_alive": true,
  787. "hidden": false,
  788. "always_show": false,
  789. "title": "公告导出",
  790. "params": null,
  791. "affix": false,
  792. "redirect": null,
  793. "description": "初始化数据"
  794. },
  795. {
  796. "name": "公告批量修改状态",
  797. "type": 3,
  798. "icon": null,
  799. "order": 5,
  800. "permission": "module_system:notice:patch",
  801. "route_name": null,
  802. "route_path": null,
  803. "component_path": null,
  804. "status": "0",
  805. "keep_alive": true,
  806. "hidden": false,
  807. "always_show": false,
  808. "title": "公告批量修改状态",
  809. "params": null,
  810. "affix": false,
  811. "redirect": null,
  812. "description": "初始化数据"
  813. }
  814. ]
  815. },
  816. {
  817. "name": "参数管理",
  818. "type": 2,
  819. "icon": "setting",
  820. "order": 8,
  821. "permission": "module_system:param:query",
  822. "route_name": "Params",
  823. "route_path": "/system/param",
  824. "component_path": "module_system/param/index",
  825. "status": "0",
  826. "keep_alive": true,
  827. "hidden": false,
  828. "always_show": false,
  829. "title": "参数管理",
  830. "params": null,
  831. "affix": false,
  832. "redirect": null,
  833. "description": "初始化数据",
  834. "children": [
  835. {
  836. "name": "创建参数",
  837. "type": 3,
  838. "icon": null,
  839. "order": 1,
  840. "permission": "module_system:param:create",
  841. "route_name": null,
  842. "route_path": null,
  843. "component_path": null,
  844. "status": "0",
  845. "keep_alive": true,
  846. "hidden": false,
  847. "always_show": false,
  848. "title": "创建参数",
  849. "params": null,
  850. "affix": false,
  851. "redirect": null,
  852. "description": "初始化数据"
  853. },
  854. {
  855. "name": "修改参数",
  856. "type": 3,
  857. "icon": null,
  858. "order": 2,
  859. "permission": "module_system:param:update",
  860. "route_name": null,
  861. "route_path": null,
  862. "component_path": null,
  863. "status": "0",
  864. "keep_alive": true,
  865. "hidden": false,
  866. "always_show": false,
  867. "title": "修改参数",
  868. "params": null,
  869. "affix": false,
  870. "redirect": null,
  871. "description": "初始化数据"
  872. },
  873. {
  874. "name": "删除参数",
  875. "type": 3,
  876. "icon": null,
  877. "order": 3,
  878. "permission": "module_system:param:delete",
  879. "route_name": null,
  880. "route_path": null,
  881. "component_path": null,
  882. "status": "0",
  883. "keep_alive": true,
  884. "hidden": false,
  885. "always_show": false,
  886. "title": "删除参数",
  887. "params": null,
  888. "affix": false,
  889. "redirect": null,
  890. "description": "初始化数据"
  891. },
  892. {
  893. "name": "导出参数",
  894. "type": 3,
  895. "icon": null,
  896. "order": 4,
  897. "permission": "module_system:param:export",
  898. "route_name": null,
  899. "route_path": null,
  900. "component_path": null,
  901. "status": "0",
  902. "keep_alive": true,
  903. "hidden": false,
  904. "always_show": false,
  905. "title": "导出参数",
  906. "params": null,
  907. "affix": false,
  908. "redirect": null,
  909. "description": "初始化数据"
  910. },
  911. {
  912. "name": "参数上传",
  913. "type": 3,
  914. "icon": null,
  915. "order": 5,
  916. "permission": "module_system:param:upload",
  917. "route_name": null,
  918. "route_path": null,
  919. "component_path": null,
  920. "status": "0",
  921. "keep_alive": true,
  922. "hidden": false,
  923. "always_show": false,
  924. "title": "参数上传",
  925. "params": null,
  926. "affix": false,
  927. "redirect": null,
  928. "description": "初始化数据"
  929. }
  930. ]
  931. },
  932. {
  933. "name": "字典管理",
  934. "type": 2,
  935. "icon": "dict",
  936. "order": 9,
  937. "permission": "module_system:dict_type:query",
  938. "route_name": "Dict",
  939. "route_path": "/system/dict",
  940. "component_path": "module_system/dict/index",
  941. "status": "0",
  942. "keep_alive": true,
  943. "hidden": false,
  944. "always_show": false,
  945. "title": "字典管理",
  946. "params": null,
  947. "affix": false,
  948. "redirect": null,
  949. "description": "初始化数据",
  950. "children": [
  951. {
  952. "name": "创建字典类型",
  953. "type": 3,
  954. "icon": null,
  955. "order": 1,
  956. "permission": "module_system:dict_type:create",
  957. "route_name": null,
  958. "route_path": null,
  959. "component_path": null,
  960. "status": "0",
  961. "keep_alive": true,
  962. "hidden": false,
  963. "always_show": false,
  964. "title": "创建字典类型",
  965. "params": null,
  966. "affix": false,
  967. "redirect": null,
  968. "description": "初始化数据"
  969. },
  970. {
  971. "name": "修改字典类型",
  972. "type": 3,
  973. "icon": null,
  974. "order": 2,
  975. "permission": "module_system:dict_type:update",
  976. "route_name": null,
  977. "route_path": null,
  978. "component_path": null,
  979. "status": "0",
  980. "keep_alive": true,
  981. "hidden": false,
  982. "always_show": false,
  983. "title": "修改字典类型",
  984. "params": null,
  985. "affix": false,
  986. "redirect": null,
  987. "description": "初始化数据"
  988. },
  989. {
  990. "name": "删除字典类型",
  991. "type": 3,
  992. "icon": null,
  993. "order": 3,
  994. "permission": "module_system:dict_type:delete",
  995. "route_name": null,
  996. "route_path": null,
  997. "component_path": null,
  998. "status": "0",
  999. "keep_alive": true,
  1000. "hidden": false,
  1001. "always_show": false,
  1002. "title": "删除字典类型",
  1003. "params": null,
  1004. "affix": false,
  1005. "redirect": null,
  1006. "description": "初始化数据"
  1007. },
  1008. {
  1009. "name": "导出字典类型",
  1010. "type": 3,
  1011. "icon": null,
  1012. "order": 4,
  1013. "permission": "module_system:dict_type:export",
  1014. "route_name": null,
  1015. "route_path": null,
  1016. "component_path": null,
  1017. "status": "0",
  1018. "keep_alive": true,
  1019. "hidden": false,
  1020. "always_show": false,
  1021. "title": "导出字典类型",
  1022. "params": null,
  1023. "affix": false,
  1024. "redirect": null,
  1025. "description": "初始化数据"
  1026. },
  1027. {
  1028. "name": "批量修改字典状态",
  1029. "type": 3,
  1030. "icon": null,
  1031. "order": 5,
  1032. "permission": "module_system:dict_type:patch",
  1033. "route_name": null,
  1034. "route_path": null,
  1035. "component_path": null,
  1036. "status": "0",
  1037. "keep_alive": true,
  1038. "hidden": false,
  1039. "always_show": false,
  1040. "title": "导出字典类型",
  1041. "params": null,
  1042. "affix": false,
  1043. "redirect": null,
  1044. "description": "初始化数据"
  1045. },
  1046. {
  1047. "name": "字典数据查询",
  1048. "type": 3,
  1049. "icon": null,
  1050. "order": 6,
  1051. "permission": "module_system:dict_data:query",
  1052. "route_name": null,
  1053. "route_path": null,
  1054. "component_path": null,
  1055. "status": "0",
  1056. "keep_alive": true,
  1057. "hidden": false,
  1058. "always_show": false,
  1059. "title": "字典数据查询",
  1060. "params": null,
  1061. "affix": false,
  1062. "redirect": null,
  1063. "description": "初始化数据"
  1064. },
  1065. {
  1066. "name": "创建字典数据",
  1067. "type": 3,
  1068. "icon": null,
  1069. "order": 7,
  1070. "permission": "module_system:dict_data:create",
  1071. "route_name": null,
  1072. "route_path": null,
  1073. "component_path": null,
  1074. "status": "0",
  1075. "keep_alive": true,
  1076. "hidden": false,
  1077. "always_show": false,
  1078. "title": "创建字典数据",
  1079. "params": null,
  1080. "affix": false,
  1081. "redirect": null,
  1082. "description": "初始化数据"
  1083. },
  1084. {
  1085. "name": "修改字典数据",
  1086. "type": 3,
  1087. "icon": null,
  1088. "order": 8,
  1089. "permission": "module_system:dict_data:update",
  1090. "route_name": null,
  1091. "route_path": null,
  1092. "component_path": null,
  1093. "status": "0",
  1094. "keep_alive": true,
  1095. "hidden": false,
  1096. "always_show": false,
  1097. "title": "修改字典数据",
  1098. "params": null,
  1099. "affix": false,
  1100. "redirect": null,
  1101. "description": "初始化数据"
  1102. },
  1103. {
  1104. "name": "删除字典数据",
  1105. "type": 3,
  1106. "icon": null,
  1107. "order": 9,
  1108. "permission": "module_system:dict_data:delete",
  1109. "route_name": null,
  1110. "route_path": null,
  1111. "component_path": null,
  1112. "status": "0",
  1113. "keep_alive": true,
  1114. "hidden": false,
  1115. "always_show": false,
  1116. "title": "删除字典数据",
  1117. "params": null,
  1118. "affix": false,
  1119. "redirect": null,
  1120. "description": "初始化数据"
  1121. },
  1122. {
  1123. "name": "导出字典数据",
  1124. "type": 3,
  1125. "icon": null,
  1126. "order": 10,
  1127. "permission": "module_system:dict_data:export",
  1128. "route_name": null,
  1129. "route_path": null,
  1130. "component_path": null,
  1131. "status": "0",
  1132. "keep_alive": true,
  1133. "hidden": false,
  1134. "always_show": false,
  1135. "title": "导出字典数据",
  1136. "params": null,
  1137. "affix": false,
  1138. "redirect": null,
  1139. "description": "初始化数据"
  1140. },
  1141. {
  1142. "name": "批量修改字典数据状态",
  1143. "type": 3,
  1144. "icon": null,
  1145. "order": 11,
  1146. "permission": "module_system:dict_data:patch",
  1147. "route_name": null,
  1148. "route_path": null,
  1149. "component_path": null,
  1150. "status": "0",
  1151. "keep_alive": true,
  1152. "hidden": false,
  1153. "always_show": false,
  1154. "title": "批量修改字典数据状态",
  1155. "params": null,
  1156. "affix": false,
  1157. "redirect": null,
  1158. "description": "初始化数据"
  1159. }
  1160. ]
  1161. }
  1162. ]
  1163. },
  1164. {
  1165. "name": "应用管理",
  1166. "type": 1,
  1167. "icon": "el-icon-ShoppingBag",
  1168. "order": 3,
  1169. "permission": null,
  1170. "route_name": "Application",
  1171. "route_path": "/application",
  1172. "component_path": null,
  1173. "status": "0",
  1174. "keep_alive": false,
  1175. "hidden": false,
  1176. "always_show": false,
  1177. "title": "应用管理",
  1178. "params": null,
  1179. "affix": false,
  1180. "redirect": "/application/myapp",
  1181. "description": "初始化数据",
  1182. "children": [
  1183. {
  1184. "name": "我的应用",
  1185. "type": 2,
  1186. "icon": "el-icon-ShoppingCartFull",
  1187. "order": 1,
  1188. "permission": "module_application:myapp:query",
  1189. "route_name": "MYAPP",
  1190. "route_path": "/application/myapp",
  1191. "component_path": "module_application/myapp/index",
  1192. "status": "0",
  1193. "keep_alive": true,
  1194. "hidden": false,
  1195. "always_show": false,
  1196. "title": "我的应用",
  1197. "params": null,
  1198. "affix": false,
  1199. "redirect": null,
  1200. "description": "初始化数据",
  1201. "children": [
  1202. {
  1203. "name": "创建应用",
  1204. "type": 3,
  1205. "icon": null,
  1206. "order": 1,
  1207. "permission": "module_application:myapp:create",
  1208. "route_name": null,
  1209. "route_path": null,
  1210. "component_path": null,
  1211. "status": "0",
  1212. "keep_alive": true,
  1213. "hidden": false,
  1214. "always_show": false,
  1215. "title": "创建应用",
  1216. "params": null,
  1217. "affix": false,
  1218. "redirect": null,
  1219. "description": "初始化数据"
  1220. },
  1221. {
  1222. "name": "修改应用",
  1223. "type": 3,
  1224. "icon": null,
  1225. "order": 2,
  1226. "permission": "module_application:myapp:update",
  1227. "route_name": null,
  1228. "route_path": null,
  1229. "component_path": null,
  1230. "status": "0",
  1231. "keep_alive": true,
  1232. "hidden": false,
  1233. "always_show": false,
  1234. "title": "修改应用",
  1235. "params": null,
  1236. "affix": false,
  1237. "redirect": null,
  1238. "description": "初始化数据"
  1239. },
  1240. {
  1241. "name": "删除应用",
  1242. "type": 3,
  1243. "icon": null,
  1244. "order": 3,
  1245. "permission": "module_application:myapp:delete",
  1246. "route_name": null,
  1247. "route_path": null,
  1248. "component_path": null,
  1249. "status": "0",
  1250. "keep_alive": true,
  1251. "hidden": false,
  1252. "always_show": false,
  1253. "title": "删除应用",
  1254. "params": null,
  1255. "affix": false,
  1256. "redirect": null,
  1257. "description": "初始化数据"
  1258. },
  1259. {
  1260. "name": "批量修改应用状态",
  1261. "type": 3,
  1262. "icon": null,
  1263. "order": 4,
  1264. "permission": "module_application:myapp:patch",
  1265. "route_name": null,
  1266. "route_path": null,
  1267. "component_path": null,
  1268. "status": "0",
  1269. "keep_alive": true,
  1270. "hidden": false,
  1271. "always_show": false,
  1272. "title": "批量修改应用状态",
  1273. "params": null,
  1274. "affix": false,
  1275. "redirect": null,
  1276. "description": "初始化数据"
  1277. }
  1278. ]
  1279. },
  1280. {
  1281. "name": "任务管理",
  1282. "type": 2,
  1283. "icon": "el-icon-DataLine",
  1284. "order": 2,
  1285. "permission": "module_application:job:query",
  1286. "route_name": "Job",
  1287. "route_path": "/application/job",
  1288. "component_path": "module_application/job/index",
  1289. "status": "0",
  1290. "keep_alive": true,
  1291. "hidden": false,
  1292. "always_show": false,
  1293. "title": "任务管理",
  1294. "params": null,
  1295. "affix": false,
  1296. "redirect": null,
  1297. "description": "初始化数据",
  1298. "children": [
  1299. {
  1300. "name": "创建任务",
  1301. "type": 3,
  1302. "icon": null,
  1303. "order": 1,
  1304. "permission": "module_application:job:create",
  1305. "route_name": null,
  1306. "route_path": null,
  1307. "component_path": null,
  1308. "status": "0",
  1309. "keep_alive": true,
  1310. "hidden": false,
  1311. "always_show": false,
  1312. "title": "创建任务",
  1313. "params": null,
  1314. "affix": false,
  1315. "redirect": null,
  1316. "description": "初始化数据"
  1317. },
  1318. {
  1319. "name": "修改和操作任务",
  1320. "type": 3,
  1321. "icon": null,
  1322. "order": 2,
  1323. "permission": "module_application:job:update",
  1324. "route_name": null,
  1325. "route_path": null,
  1326. "component_path": null,
  1327. "status": "0",
  1328. "keep_alive": true,
  1329. "hidden": false,
  1330. "always_show": false,
  1331. "title": "修改和操作任务",
  1332. "params": null,
  1333. "affix": false,
  1334. "redirect": null,
  1335. "description": "初始化数据"
  1336. },
  1337. {
  1338. "name": "删除和清除任务",
  1339. "type": 3,
  1340. "icon": null,
  1341. "order": 3,
  1342. "permission": "module_application:job:delete",
  1343. "route_name": null,
  1344. "route_path": null,
  1345. "component_path": null,
  1346. "status": "0",
  1347. "keep_alive": true,
  1348. "hidden": false,
  1349. "always_show": false,
  1350. "title": "删除和清除任务",
  1351. "params": null,
  1352. "affix": false,
  1353. "redirect": null,
  1354. "description": "初始化数据"
  1355. },
  1356. {
  1357. "name": "导出定时任务",
  1358. "type": 3,
  1359. "icon": null,
  1360. "order": 4,
  1361. "permission": "module_application:job:export",
  1362. "route_name": null,
  1363. "route_path": null,
  1364. "component_path": null,
  1365. "status": "0",
  1366. "keep_alive": true,
  1367. "hidden": false,
  1368. "always_show": false,
  1369. "title": "导出定时任务",
  1370. "params": null,
  1371. "affix": false,
  1372. "redirect": null,
  1373. "description": "初始化数据"
  1374. }
  1375. ]
  1376. },
  1377. {
  1378. "name": "AI智能助手",
  1379. "type": 2,
  1380. "icon": "el-icon-ToiletPaper",
  1381. "order": 3,
  1382. "permission": "module_application:ai:chat",
  1383. "route_name": "AI",
  1384. "route_path": "/application/ai",
  1385. "component_path": "module_application/ai/index",
  1386. "status": "0",
  1387. "keep_alive": true,
  1388. "hidden": false,
  1389. "always_show": false,
  1390. "title": "AI智能助手",
  1391. "params": null,
  1392. "affix": false,
  1393. "redirect": null,
  1394. "description": "AI智能助手",
  1395. "children": [
  1396. {
  1397. "name": "智能对话",
  1398. "type": 3,
  1399. "icon": null,
  1400. "order": 1,
  1401. "permission": "module_application:ai:chat",
  1402. "route_name": null,
  1403. "route_path": null,
  1404. "component_path": null,
  1405. "status": "0",
  1406. "keep_alive": true,
  1407. "hidden": false,
  1408. "always_show": false,
  1409. "title": "智能对话",
  1410. "params": null,
  1411. "affix": false,
  1412. "redirect": null,
  1413. "description": "智能对话"
  1414. }
  1415. ]
  1416. },
  1417. {
  1418. "name": "流程管理",
  1419. "type": 2,
  1420. "icon": "el-icon-ShoppingBag",
  1421. "order": 4,
  1422. "permission": "module_application:workflow:query",
  1423. "route_name": "Workflow",
  1424. "route_path": "/application/workflow",
  1425. "component_path": "module_application/workflow/index",
  1426. "status": "0",
  1427. "keep_alive": true,
  1428. "hidden": false,
  1429. "always_show": false,
  1430. "title": "我的流程",
  1431. "params": null,
  1432. "affix": false,
  1433. "redirect": null,
  1434. "description": "我的流程"
  1435. }
  1436. ]
  1437. },
  1438. {
  1439. "name": "监控管理",
  1440. "type": 1,
  1441. "icon": "monitor",
  1442. "order": 4,
  1443. "permission": null,
  1444. "route_name": "Monitor",
  1445. "route_path": "/monitor",
  1446. "component_path": null,
  1447. "status": "0",
  1448. "keep_alive": false,
  1449. "hidden": false,
  1450. "always_show": false,
  1451. "title": "监控管理",
  1452. "params": null,
  1453. "affix": false,
  1454. "redirect": "/monitor/online",
  1455. "description": "初始化数据",
  1456. "children": [
  1457. {
  1458. "name": "在线用户",
  1459. "type": 2,
  1460. "icon": "el-icon-Headset",
  1461. "order": 1,
  1462. "permission": "module_monitor:online:query",
  1463. "route_name": "MonitorOnline",
  1464. "route_path": "/monitor/online",
  1465. "component_path": "module_monitor/online/index",
  1466. "status": "0",
  1467. "keep_alive": false,
  1468. "hidden": false,
  1469. "always_show": false,
  1470. "title": "在线用户",
  1471. "params": null,
  1472. "affix": false,
  1473. "redirect": null,
  1474. "description": "初始化数据",
  1475. "children": [
  1476. {
  1477. "name": "在线用户强制下线",
  1478. "type": 3,
  1479. "icon": null,
  1480. "order": 1,
  1481. "permission": "module_monitor:online:delete",
  1482. "route_name": null,
  1483. "route_path": null,
  1484. "component_path": null,
  1485. "status": "0",
  1486. "keep_alive": false,
  1487. "hidden": false,
  1488. "always_show": false,
  1489. "title": "在线用户强制下线",
  1490. "params": null,
  1491. "affix": false,
  1492. "redirect": null,
  1493. "description": "初始化数据"
  1494. }
  1495. ]
  1496. },
  1497. {
  1498. "name": "服务器监控",
  1499. "type": 2,
  1500. "icon": "el-icon-Odometer",
  1501. "order": 2,
  1502. "permission": "module_monitor:server:query",
  1503. "route_name": "MonitorServer",
  1504. "route_path": "/monitor/server",
  1505. "component_path": "module_monitor/server/index",
  1506. "status": "0",
  1507. "keep_alive": false,
  1508. "hidden": false,
  1509. "always_show": false,
  1510. "title": "服务器监控",
  1511. "params": null,
  1512. "affix": false,
  1513. "redirect": null,
  1514. "description": "初始化数据"
  1515. },
  1516. {
  1517. "name": "缓存监控",
  1518. "type": 2,
  1519. "icon": "el-icon-Stopwatch",
  1520. "order": 3,
  1521. "permission": "module_monitor:cache:query",
  1522. "route_name": "MonitorCache",
  1523. "route_path": "/monitor/cache",
  1524. "component_path": "module_monitor/cache/index",
  1525. "status": "0",
  1526. "keep_alive": false,
  1527. "hidden": false,
  1528. "always_show": false,
  1529. "title": "缓存监控",
  1530. "params": null,
  1531. "affix": false,
  1532. "redirect": null,
  1533. "description": "初始化数据",
  1534. "children": [
  1535. {
  1536. "name": "清除缓存",
  1537. "type": 3,
  1538. "icon": null,
  1539. "order": 1,
  1540. "permission": "module_monitor:cache:delete",
  1541. "route_name": null,
  1542. "route_path": null,
  1543. "component_path": null,
  1544. "status": "0",
  1545. "keep_alive": false,
  1546. "hidden": false,
  1547. "always_show": false,
  1548. "title": "清除缓存",
  1549. "params": null,
  1550. "affix": false,
  1551. "redirect": null,
  1552. "description": "初始化数据"
  1553. }
  1554. ]
  1555. },
  1556. {
  1557. "name": "文件管理",
  1558. "type": 2,
  1559. "icon": "el-icon-Files",
  1560. "order": 4,
  1561. "permission": "module_monitor:resource:query",
  1562. "route_name": "Resource",
  1563. "route_path": "/monitor/resource",
  1564. "component_path": "module_monitor/resource/index",
  1565. "status": "0",
  1566. "keep_alive": true,
  1567. "hidden": false,
  1568. "always_show": false,
  1569. "title": "文件管理",
  1570. "params": null,
  1571. "affix": false,
  1572. "redirect": null,
  1573. "description": "初始化数据",
  1574. "children": [
  1575. {
  1576. "name": "文件上传",
  1577. "type": 3,
  1578. "icon": null,
  1579. "order": 1,
  1580. "permission": "module_monitor:resource:upload",
  1581. "route_name": null,
  1582. "route_path": null,
  1583. "component_path": null,
  1584. "status": "0",
  1585. "keep_alive": true,
  1586. "hidden": false,
  1587. "always_show": false,
  1588. "title": "文件上传",
  1589. "params": null,
  1590. "affix": false,
  1591. "redirect": null,
  1592. "description": "初始化数据"
  1593. },
  1594. {
  1595. "name": "文件下载",
  1596. "type": 3,
  1597. "icon": null,
  1598. "order": 2,
  1599. "permission": "module_monitor:resource:download",
  1600. "route_name": null,
  1601. "route_path": null,
  1602. "component_path": null,
  1603. "status": "0",
  1604. "keep_alive": true,
  1605. "hidden": false,
  1606. "always_show": false,
  1607. "title": "文件下载",
  1608. "params": null,
  1609. "affix": false,
  1610. "redirect": null,
  1611. "description": "初始化数据"
  1612. },
  1613. {
  1614. "name": "文件删除",
  1615. "type": 3,
  1616. "icon": null,
  1617. "order": 3,
  1618. "permission": "module_monitor:resource:delete",
  1619. "route_name": null,
  1620. "route_path": null,
  1621. "component_path": null,
  1622. "status": "0",
  1623. "keep_alive": true,
  1624. "hidden": false,
  1625. "always_show": false,
  1626. "title": "文件删除",
  1627. "params": null,
  1628. "affix": false,
  1629. "redirect": null,
  1630. "description": "初始化数据"
  1631. },
  1632. {
  1633. "name": "文件移动",
  1634. "type": 3,
  1635. "icon": null,
  1636. "order": 4,
  1637. "permission": "module_monitor:resource:move",
  1638. "route_name": null,
  1639. "route_path": null,
  1640. "component_path": null,
  1641. "status": "0",
  1642. "keep_alive": true,
  1643. "hidden": false,
  1644. "always_show": false,
  1645. "title": "文件移动",
  1646. "params": null,
  1647. "affix": false,
  1648. "redirect": null,
  1649. "description": "初始化数据"
  1650. },
  1651. {
  1652. "name": "文件复制",
  1653. "type": 3,
  1654. "icon": null,
  1655. "order": 5,
  1656. "permission": "module_monitor:resource:copy",
  1657. "route_name": null,
  1658. "route_path": null,
  1659. "component_path": null,
  1660. "status": "0",
  1661. "keep_alive": true,
  1662. "hidden": false,
  1663. "always_show": false,
  1664. "title": "文件复制",
  1665. "params": null,
  1666. "affix": false,
  1667. "redirect": null,
  1668. "description": "初始化数据"
  1669. },
  1670. {
  1671. "name": "文件重命名",
  1672. "type": 3,
  1673. "icon": null,
  1674. "order": 6,
  1675. "permission": "module_monitor:resource:rename",
  1676. "route_name": null,
  1677. "route_path": null,
  1678. "component_path": null,
  1679. "status": "0",
  1680. "keep_alive": true,
  1681. "hidden": false,
  1682. "always_show": false,
  1683. "title": "文件重命名",
  1684. "params": null,
  1685. "affix": false,
  1686. "redirect": null,
  1687. "description": "初始化数据"
  1688. },
  1689. {
  1690. "name": "创建目录",
  1691. "type": 3,
  1692. "icon": null,
  1693. "order": 7,
  1694. "permission": "module_monitor:resource:create_dir",
  1695. "route_name": null,
  1696. "route_path": null,
  1697. "component_path": null,
  1698. "status": "0",
  1699. "keep_alive": true,
  1700. "hidden": false,
  1701. "always_show": false,
  1702. "title": "创建目录",
  1703. "params": null,
  1704. "affix": false,
  1705. "redirect": null,
  1706. "description": "初始化数据"
  1707. },
  1708. {
  1709. "name": "导出文件列表",
  1710. "type": 3,
  1711. "icon": null,
  1712. "order": 9,
  1713. "permission": "module_monitor:resource:export",
  1714. "route_name": null,
  1715. "route_path": null,
  1716. "component_path": null,
  1717. "status": "0",
  1718. "keep_alive": true,
  1719. "hidden": false,
  1720. "always_show": false,
  1721. "title": "导出文件列表",
  1722. "params": null,
  1723. "affix": false,
  1724. "redirect": null,
  1725. "description": "初始化数据"
  1726. }
  1727. ]
  1728. }
  1729. ]
  1730. },
  1731. {
  1732. "name": "代码管理",
  1733. "type": 1,
  1734. "icon": "code",
  1735. "order": 5,
  1736. "permission": null,
  1737. "route_name": "Generator",
  1738. "route_path": "/generator",
  1739. "component_path": null,
  1740. "status": "0",
  1741. "keep_alive": false,
  1742. "hidden": false,
  1743. "always_show": false,
  1744. "title": "代码管理",
  1745. "params": null,
  1746. "affix": false,
  1747. "redirect": "/generator/gencode",
  1748. "description": "代码管理",
  1749. "children": [
  1750. {
  1751. "name": "代码生成",
  1752. "type": 2,
  1753. "icon": "code",
  1754. "order": 1,
  1755. "permission": "module_generator:gencode:query",
  1756. "route_name": "GenCode",
  1757. "route_path": "/generator/gencode",
  1758. "component_path": "module_generator/gencode/index",
  1759. "status": "0",
  1760. "keep_alive": true,
  1761. "hidden": false,
  1762. "always_show": false,
  1763. "title": "代码生成",
  1764. "params": null,
  1765. "affix": false,
  1766. "redirect": null,
  1767. "description": "代码生成",
  1768. "children": [
  1769. {
  1770. "name": "查询代码生成业务表列表",
  1771. "type": 3,
  1772. "icon": null,
  1773. "order": 1,
  1774. "permission": "module_generator:gencode:query",
  1775. "route_name": null,
  1776. "route_path": null,
  1777. "component_path": null,
  1778. "status": "0",
  1779. "keep_alive": true,
  1780. "hidden": false,
  1781. "always_show": false,
  1782. "title": "查询代码生成业务表列表",
  1783. "params": null,
  1784. "affix": false,
  1785. "redirect": null,
  1786. "description": "查询代码生成业务表列表"
  1787. },
  1788. {
  1789. "name": "创建表结构",
  1790. "type": 3,
  1791. "icon": null,
  1792. "order": 2,
  1793. "permission": "module_generator:gencode:create",
  1794. "route_name": null,
  1795. "route_path": null,
  1796. "component_path": null,
  1797. "status": "0",
  1798. "keep_alive": true,
  1799. "hidden": false,
  1800. "always_show": false,
  1801. "title": "创建表结构",
  1802. "params": null,
  1803. "affix": false,
  1804. "redirect": null,
  1805. "description": "创建表结构"
  1806. },
  1807. {
  1808. "name": "编辑业务表信息",
  1809. "type": 3,
  1810. "icon": null,
  1811. "order": 3,
  1812. "permission": "module_generator:gencode:update",
  1813. "route_name": null,
  1814. "route_path": null,
  1815. "component_path": null,
  1816. "status": "0",
  1817. "keep_alive": true,
  1818. "hidden": false,
  1819. "always_show": false,
  1820. "title": "编辑业务表信息",
  1821. "params": null,
  1822. "affix": false,
  1823. "redirect": null,
  1824. "description": "编辑业务表信息"
  1825. },
  1826. {
  1827. "name": "删除业务表信息",
  1828. "type": 3,
  1829. "icon": null,
  1830. "order": 4,
  1831. "permission": "module_generator:gencode:delete",
  1832. "route_name": null,
  1833. "route_path": null,
  1834. "component_path": null,
  1835. "status": "0",
  1836. "keep_alive": true,
  1837. "hidden": false,
  1838. "always_show": false,
  1839. "title": "删除业务表信息",
  1840. "params": null,
  1841. "affix": false,
  1842. "redirect": null,
  1843. "description": "删除业务表信息"
  1844. },
  1845. {
  1846. "name": "导入表结构",
  1847. "type": 3,
  1848. "icon": null,
  1849. "order": 5,
  1850. "permission": "module_generator:gencode:import",
  1851. "route_name": null,
  1852. "route_path": null,
  1853. "component_path": null,
  1854. "status": "0",
  1855. "keep_alive": true,
  1856. "hidden": false,
  1857. "always_show": false,
  1858. "title": "导入表结构",
  1859. "params": null,
  1860. "affix": false,
  1861. "redirect": null,
  1862. "description": "导入表结构"
  1863. },
  1864. {
  1865. "name": "批量生成代码",
  1866. "type": 3,
  1867. "icon": null,
  1868. "order": 6,
  1869. "permission": "module_generator:gencode:operate",
  1870. "route_name": null,
  1871. "route_path": null,
  1872. "component_path": null,
  1873. "status": "0",
  1874. "keep_alive": true,
  1875. "hidden": false,
  1876. "always_show": false,
  1877. "title": "批量生成代码",
  1878. "params": null,
  1879. "affix": false,
  1880. "redirect": null,
  1881. "description": "批量生成代码"
  1882. },
  1883. {
  1884. "name": "生成代码到指定路径",
  1885. "type": 3,
  1886. "icon": null,
  1887. "order": 7,
  1888. "permission": "module_generator:gencode:code",
  1889. "route_name": null,
  1890. "route_path": null,
  1891. "component_path": null,
  1892. "status": "0",
  1893. "keep_alive": true,
  1894. "hidden": false,
  1895. "always_show": false,
  1896. "title": "生成代码到指定路径",
  1897. "params": null,
  1898. "affix": false,
  1899. "redirect": null,
  1900. "description": "生成代码到指定路径"
  1901. },
  1902. {
  1903. "name": "查询数据库表列表",
  1904. "type": 3,
  1905. "icon": null,
  1906. "order": 8,
  1907. "permission": "module_generator:dblist:query",
  1908. "route_name": null,
  1909. "route_path": null,
  1910. "component_path": null,
  1911. "status": "0",
  1912. "keep_alive": true,
  1913. "hidden": false,
  1914. "always_show": false,
  1915. "title": "查询数据库表列表",
  1916. "params": null,
  1917. "affix": false,
  1918. "redirect": null,
  1919. "description": "查询数据库表列表"
  1920. },
  1921. {
  1922. "name": "同步数据库",
  1923. "type": 3,
  1924. "icon": null,
  1925. "order": 9,
  1926. "permission": "module_generator:db:sync",
  1927. "route_name": null,
  1928. "route_path": null,
  1929. "component_path": null,
  1930. "status": "0",
  1931. "keep_alive": true,
  1932. "hidden": false,
  1933. "always_show": false,
  1934. "title": "同步数据库",
  1935. "params": null,
  1936. "affix": false,
  1937. "redirect": null,
  1938. "description": "同步数据库"
  1939. }
  1940. ]
  1941. }
  1942. ]
  1943. },
  1944. {
  1945. "name": "接口管理",
  1946. "type": 1,
  1947. "icon": "document",
  1948. "order": 6,
  1949. "permission": null,
  1950. "route_name": "Common",
  1951. "route_path": "/common",
  1952. "component_path": null,
  1953. "status": "0",
  1954. "keep_alive": false,
  1955. "hidden": false,
  1956. "always_show": false,
  1957. "title": "接口管理",
  1958. "params": null,
  1959. "affix": false,
  1960. "redirect": "/common/docs",
  1961. "description": "初始化数据",
  1962. "children": [
  1963. {
  1964. "name": "Swagger文档",
  1965. "type": 4,
  1966. "icon": "api",
  1967. "order": 1,
  1968. "permission": "module_common:docs:query",
  1969. "route_name": "Docs",
  1970. "route_path": "/common/docs",
  1971. "component_path": "module_common/docs/index",
  1972. "status": "0",
  1973. "keep_alive": false,
  1974. "hidden": false,
  1975. "always_show": false,
  1976. "title": "Swagger文档",
  1977. "params": null,
  1978. "affix": false,
  1979. "redirect": null,
  1980. "description": "初始化数据"
  1981. },
  1982. {
  1983. "name": "Redoc文档",
  1984. "type": 4,
  1985. "icon": "el-icon-Document",
  1986. "order": 2,
  1987. "permission": "module_common:redoc:query",
  1988. "route_name": "Redoc",
  1989. "route_path": "/common/redoc",
  1990. "component_path": "module_common/redoc/index",
  1991. "status": "0",
  1992. "keep_alive": false,
  1993. "hidden": false,
  1994. "always_show": false,
  1995. "title": "Redoc文档",
  1996. "params": null,
  1997. "affix": false,
  1998. "redirect": null,
  1999. "description": "初始化数据"
  2000. }
  2001. ]
  2002. },
  2003. {
  2004. "name": "模块管理",
  2005. "type": 1,
  2006. "icon": "menu",
  2007. "order": 7,
  2008. "permission": null,
  2009. "route_name": "Gencode",
  2010. "route_path": "/gencode",
  2011. "component_path": null,
  2012. "status": "0",
  2013. "keep_alive": false,
  2014. "hidden": false,
  2015. "always_show": false,
  2016. "title": "模块管理",
  2017. "params": null,
  2018. "affix": false,
  2019. "redirect": "/gencode/demo",
  2020. "description": "模块管理",
  2021. "children": [
  2022. {
  2023. "name": "示例管理",
  2024. "type": 2,
  2025. "icon": "menu",
  2026. "order": 1,
  2027. "permission": "module_gencode:demo:query",
  2028. "route_name": "Demo",
  2029. "route_path": "/gencode/demo",
  2030. "component_path": "module_gencode/demo/index",
  2031. "status": "0",
  2032. "keep_alive": true,
  2033. "hidden": false,
  2034. "always_show": false,
  2035. "title": "示例管理",
  2036. "params": null,
  2037. "affix": false,
  2038. "redirect": null,
  2039. "description": "示例管理",
  2040. "children": [
  2041. {
  2042. "name": "创建示例",
  2043. "type": 3,
  2044. "icon": null,
  2045. "order": 1,
  2046. "permission": "module_gencode:demo:create",
  2047. "route_name": null,
  2048. "route_path": null,
  2049. "component_path": null,
  2050. "status": "0",
  2051. "keep_alive": true,
  2052. "hidden": false,
  2053. "always_show": false,
  2054. "title": "创建示例",
  2055. "params": null,
  2056. "affix": false,
  2057. "redirect": null,
  2058. "description": "初始化数据"
  2059. },
  2060. {
  2061. "name": "更新示例",
  2062. "type": 3,
  2063. "icon": null,
  2064. "order": 2,
  2065. "permission": "module_gencode:demo:update",
  2066. "route_name": null,
  2067. "route_path": null,
  2068. "component_path": null,
  2069. "status": "0",
  2070. "keep_alive": true,
  2071. "hidden": false,
  2072. "always_show": false,
  2073. "title": "更新示例",
  2074. "params": null,
  2075. "affix": false,
  2076. "redirect": null,
  2077. "description": "初始化数据"
  2078. },
  2079. {
  2080. "name": "删除示例",
  2081. "type": 3,
  2082. "icon": null,
  2083. "order": 3,
  2084. "permission": "module_gencode:demo:delete",
  2085. "route_name": null,
  2086. "route_path": null,
  2087. "component_path": null,
  2088. "status": "0",
  2089. "keep_alive": true,
  2090. "hidden": false,
  2091. "always_show": false,
  2092. "title": "删除示例",
  2093. "params": null,
  2094. "affix": false,
  2095. "redirect": null,
  2096. "description": "初始化数据"
  2097. },
  2098. {
  2099. "name": "批量修改示例状态",
  2100. "type": 3,
  2101. "icon": null,
  2102. "order": 4,
  2103. "permission": "module_gencode:demo:patch",
  2104. "route_name": null,
  2105. "route_path": null,
  2106. "component_path": null,
  2107. "status": "0",
  2108. "keep_alive": true,
  2109. "hidden": false,
  2110. "always_show": false,
  2111. "title": "批量修改示例状态",
  2112. "params": null,
  2113. "affix": false,
  2114. "redirect": null,
  2115. "description": "初始化数据"
  2116. },
  2117. {
  2118. "name": "导出示例",
  2119. "type": 3,
  2120. "icon": null,
  2121. "order": 5,
  2122. "permission": "module_gencode:demo:export",
  2123. "route_name": null,
  2124. "route_path": null,
  2125. "component_path": null,
  2126. "status": "0",
  2127. "keep_alive": true,
  2128. "hidden": false,
  2129. "always_show": false,
  2130. "title": "导出示例",
  2131. "params": null,
  2132. "affix": false,
  2133. "redirect": null,
  2134. "description": "初始化数据"
  2135. },
  2136. {
  2137. "name": "导入示例",
  2138. "type": 3,
  2139. "icon": null,
  2140. "order": 6,
  2141. "permission": "module_gencode:demo:import",
  2142. "route_name": null,
  2143. "route_path": null,
  2144. "component_path": null,
  2145. "status": "0",
  2146. "keep_alive": true,
  2147. "hidden": false,
  2148. "always_show": false,
  2149. "title": "导入示例",
  2150. "params": null,
  2151. "affix": false,
  2152. "redirect": null,
  2153. "description": "初始化数据"
  2154. },
  2155. {
  2156. "name": "下载导入示例模版",
  2157. "type": 3,
  2158. "icon": null,
  2159. "order": 7,
  2160. "permission": "module_gencode:demo:download",
  2161. "route_name": null,
  2162. "route_path": null,
  2163. "component_path": null,
  2164. "status": "0",
  2165. "keep_alive": true,
  2166. "hidden": false,
  2167. "always_show": false,
  2168. "title": "下载导入示例模版",
  2169. "params": null,
  2170. "affix": false,
  2171. "redirect": null,
  2172. "description": "初始化数据"
  2173. }
  2174. ]
  2175. }
  2176. ]
  2177. }
  2178. ]