menu.ts 177 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634
  1. import { resultSuccess, resultError, getRequestToken, requestParams, baseUrl } from '../_util';
  2. import { MockMethod } from 'vite-plugin-mock';
  3. export default [
  4. {
  5. url: `${baseUrl}/sys/permission/getUserPermissionByToken`,
  6. timeout: 1000,
  7. method: 'get',
  8. response: (request: requestParams) => {
  9. const token = getRequestToken(request);
  10. if (!token) {
  11. return resultError('Invalid token!');
  12. }
  13. return resultSuccess({
  14. allAuth: [
  15. {
  16. action: 'system:user:edit',
  17. describe: '编辑用户',
  18. type: '1',
  19. status: '1',
  20. },
  21. {
  22. action: 'system:user:addTenantUser',
  23. describe: '新增用户',
  24. type: '1',
  25. status: '1',
  26. },
  27. {
  28. action: 'system:user:add',
  29. describe: '新增用户',
  30. type: '1',
  31. status: '1',
  32. },
  33. {
  34. action: 'demo.dbarray',
  35. describe: '禁用',
  36. type: '2',
  37. status: '1',
  38. },
  39. {
  40. action: 'online:form:generateCode',
  41. describe: '代码生成',
  42. type: '1',
  43. status: '1',
  44. },
  45. {
  46. action: 'desform:list:deleteBatch',
  47. describe: '批量删除',
  48. type: '1',
  49. status: '1',
  50. },
  51. {
  52. action: 'online:report:deleteBatch',
  53. describe: '批量删除',
  54. type: '1',
  55. status: '1',
  56. },
  57. {
  58. action: 'online:graphreport:deleteBatch',
  59. describe: '批量删除',
  60. type: '1',
  61. status: '1',
  62. },
  63. {
  64. action: 'online:form:deleteBatch',
  65. describe: '批量删除',
  66. type: '1',
  67. status: '1',
  68. },
  69. {
  70. action: 'online:form:enhanceSql:save',
  71. describe: '新建SQL增强',
  72. type: '1',
  73. status: '1',
  74. },
  75. {
  76. action: 'sys:role:update',
  77. describe: '角色修改',
  78. type: '1',
  79. status: '1',
  80. },
  81. {
  82. action: 'act:des:process:save',
  83. describe: '流程设计保存',
  84. type: '1',
  85. status: '1',
  86. },
  87. {
  88. action: 'act:des:process:deleteBatch',
  89. describe: '批量删除流程设计',
  90. type: '1',
  91. status: '1',
  92. },
  93. {
  94. action: 'act:des:process:delete',
  95. describe: '删除流程设计',
  96. type: '1',
  97. status: '1',
  98. },
  99. {
  100. action: 'act:des:process:upload',
  101. describe: '流程设计上传',
  102. type: '1',
  103. status: '1',
  104. },
  105. {
  106. action: 'act:des:process:deploy',
  107. describe: '流程设计发布',
  108. type: '1',
  109. status: '1',
  110. },
  111. {
  112. action: 'act:listener:edit',
  113. describe: '编辑监听',
  114. type: '1',
  115. status: '1',
  116. },
  117. {
  118. action: 'act:listener:delete',
  119. describe: '删除监听',
  120. type: '1',
  121. status: '1',
  122. },
  123. {
  124. action: 'act:listener:deleteBatch',
  125. describe: '批量删除监听',
  126. type: '1',
  127. status: '1',
  128. },
  129. {
  130. action: 'act:expression:edit',
  131. describe: '编辑表达式',
  132. type: '1',
  133. status: '1',
  134. },
  135. {
  136. action: 'act:expression:add',
  137. describe: '添加表达式',
  138. type: '1',
  139. status: '1',
  140. },
  141. {
  142. action: 'act:expression:delete',
  143. describe: '删除表达式',
  144. type: '1',
  145. status: '1',
  146. },
  147. {
  148. action: 'act:expression:deleteBatch',
  149. describe: '批量删除表达式',
  150. type: '1',
  151. status: '1',
  152. },
  153. {
  154. action: 'act:des:process:node:add',
  155. describe: '添加流程节点',
  156. type: '1',
  157. status: '1',
  158. },
  159. {
  160. action: 'act:des:process:node:edit',
  161. describe: '编辑流程节点',
  162. type: '1',
  163. status: '1',
  164. },
  165. {
  166. action: 'act:des:process:node:delete',
  167. describe: '删除流程节点',
  168. type: '1',
  169. status: '1',
  170. },
  171. {
  172. action: 'act:des:process:node:deleteBatch',
  173. describe: '批量删除流程节点',
  174. type: '1',
  175. status: '1',
  176. },
  177. {
  178. action: 'act:des:process_form_config:edit',
  179. describe: '编辑_流程表单配置',
  180. type: '1',
  181. status: '1',
  182. },
  183. {
  184. action: 'act:des:process_form_config:add',
  185. describe: '添加_流程表单配置',
  186. type: '1',
  187. status: '1',
  188. },
  189. {
  190. action: 'act:des:process_form_config:delete',
  191. describe: '删除_流程表单配置',
  192. type: '1',
  193. status: '1',
  194. },
  195. {
  196. action: 'act:des:process_form_config:deleteBatch',
  197. describe: '批量删除_流程表单配置',
  198. type: '1',
  199. status: '1',
  200. },
  201. {
  202. action: 'online:form:enhanceSql:edit',
  203. describe: '编辑SQL增强',
  204. type: '1',
  205. status: '1',
  206. },
  207. {
  208. action: 'online:form:enhanceSql:delete',
  209. describe: '删除SQL增强',
  210. type: '1',
  211. status: '1',
  212. },
  213. {
  214. action: 'online:form:enhanceSql:batchDelete',
  215. describe: '批量删除SQL增强',
  216. type: '1',
  217. status: '1',
  218. },
  219. {
  220. action: 'online:form:importTable',
  221. describe: '导入数据库表',
  222. type: '1',
  223. status: '1',
  224. },
  225. {
  226. action: 'online:form:enhanceJava:save',
  227. describe: '添加JAVA增强',
  228. type: '1',
  229. status: '1',
  230. },
  231. {
  232. action: 'online:form:enhanceJava:edit',
  233. describe: '修改JAVA增强',
  234. type: '1',
  235. status: '1',
  236. },
  237. {
  238. action: 'online:form:delete',
  239. describe: '删除Online表单',
  240. type: '1',
  241. status: '1',
  242. },
  243. {
  244. action: 'online:form:remove',
  245. describe: '移除Online表单',
  246. type: '1',
  247. status: '1',
  248. },
  249. {
  250. action: 'onl:drag:page:delete',
  251. describe: '删除仪表盘',
  252. type: '1',
  253. status: '1',
  254. },
  255. {
  256. action: 'onl:drag:comp:delete',
  257. describe: '删除组件',
  258. type: '1',
  259. status: '1',
  260. },
  261. {
  262. action: 'onl:drag:comp:edit',
  263. describe: '修改组件',
  264. type: '1',
  265. status: '1',
  266. },
  267. {
  268. action: 'onl:drag:comp:add',
  269. describe: '添加组件',
  270. type: '1',
  271. status: '1',
  272. },
  273. {
  274. action: 'onl:drag:comp:deleteBatch',
  275. describe: '批量删除组件',
  276. type: '1',
  277. status: '1',
  278. },
  279. {
  280. action: 'bigscreen:remove',
  281. describe: '逻辑删除大屏',
  282. type: '1',
  283. status: '1',
  284. },
  285. {
  286. action: 'bigscreen:delete',
  287. describe: '真实删除大屏',
  288. type: '1',
  289. status: '1',
  290. },
  291. {
  292. action: 'bigscreen:vip:executeUrl',
  293. describe: '代理接口',
  294. type: '1',
  295. status: '1',
  296. },
  297. {
  298. action: 'bigscreen:map:delete',
  299. describe: '删除地图',
  300. type: '1',
  301. status: '1',
  302. },
  303. {
  304. action: 'bigscreen:map:deleteBatch',
  305. describe: '批量删除地图',
  306. type: '1',
  307. status: '1',
  308. },
  309. {
  310. action: 'bigscreen:category:addOrUpdate',
  311. describe: '变更大屏分类',
  312. type: '1',
  313. status: '1',
  314. },
  315. {
  316. action: 'bigscreen:category:delete',
  317. describe: '删除大屏分类',
  318. type: '1',
  319. status: '1',
  320. },
  321. {
  322. action: 'bigscreen:category:importExcel',
  323. describe: '导入大屏分类',
  324. type: '1',
  325. status: '1',
  326. },
  327. {
  328. action: 'bigscreen:datasource:saveOrUpate',
  329. describe: '变更大屏数据源',
  330. type: '1',
  331. status: '1',
  332. },
  333. {
  334. action: 'bigscreen:datasource:delete',
  335. describe: '删除大屏数据源',
  336. type: '1',
  337. status: '1',
  338. },
  339. {
  340. action: 'bigscreen:datasource:clear',
  341. describe: '清空大屏数据源缓存',
  342. type: '1',
  343. status: '1',
  344. },
  345. {
  346. action: 'online:codeGenerate:projectPath',
  347. describe: '选择代码生成路径',
  348. type: '1',
  349. status: '1',
  350. },
  351. {
  352. action: 'drag:template:edit',
  353. describe: '模板设置',
  354. type: '2',
  355. status: '1',
  356. },
  357. {
  358. action: 'system:user:changepwd',
  359. describe: '修改密码',
  360. type: '1',
  361. status: '1',
  362. },
  363. {
  364. action: 'system:user:addUserRole',
  365. describe: '给指定角色添加用户',
  366. type: '1',
  367. status: '1',
  368. },
  369. {
  370. action: 'system:permission:add',
  371. describe: '添加菜单',
  372. type: '1',
  373. status: '1',
  374. },
  375. {
  376. action: 'system:permission:saveRole',
  377. describe: '保存角色授权',
  378. type: '1',
  379. status: '1',
  380. },
  381. {
  382. action: 'system:user:delete',
  383. describe: '删除用户',
  384. type: '1',
  385. status: '1',
  386. },
  387. {
  388. action: 'system:user:delete',
  389. describe: '删除用户',
  390. type: '1',
  391. status: '1',
  392. },
  393. {
  394. action: 'system:user:deleteBatch',
  395. describe: '批量删除用户',
  396. type: '1',
  397. status: '1',
  398. },
  399. {
  400. action: 'system:user:frozenBatch',
  401. describe: '冻结/解冻用户',
  402. type: '1',
  403. status: '1',
  404. },
  405. {
  406. action: 'system:user:updatepwd',
  407. describe: '首页用户重置密码',
  408. type: '1',
  409. status: '1',
  410. },
  411. {
  412. action: 'system:user:addUserRole',
  413. describe: '给指定角色添加用户',
  414. type: '1',
  415. status: '1',
  416. },
  417. {
  418. action: 'system:user:deleteRole',
  419. describe: '删除指定角色的用户关系',
  420. type: '1',
  421. status: '1',
  422. },
  423. {
  424. action: 'system:user:deleteRole',
  425. describe: '删除指定角色的用户关系',
  426. type: '1',
  427. status: '1',
  428. },
  429. {
  430. action: 'system:user:deleteRoleBatch',
  431. describe: '批量删除指定角色的用户关系',
  432. type: '1',
  433. status: '1',
  434. },
  435. {
  436. action: 'system:user:deleteRoleBatch',
  437. describe: '批量删除指定角色的用户关系',
  438. type: '1',
  439. status: '1',
  440. },
  441. {
  442. action: 'system:user:editDepartWithUser',
  443. describe: '给指定部门添加对应的用户',
  444. type: '1',
  445. status: '1',
  446. },
  447. {
  448. action: 'system:user:deleteUserInDepart',
  449. describe: '删除指定机构的用户关系',
  450. type: '1',
  451. status: '1',
  452. },
  453. {
  454. action: 'system:user:deleteUserInDepartBatch',
  455. describe: '批量删除指定机构的用户关系',
  456. type: '1',
  457. status: '1',
  458. },
  459. {
  460. action: 'system:user:deleteRecycleBin',
  461. describe: '彻底删除用户',
  462. type: '1',
  463. status: '1',
  464. },
  465. {
  466. action: 'system:datasource:list',
  467. describe: '多数据源分页列表',
  468. type: '1',
  469. status: '1',
  470. },
  471. {
  472. action: 'system:depart:add',
  473. describe: '部门添加',
  474. type: '1',
  475. status: '1',
  476. },
  477. {
  478. action: 'system:depart:add',
  479. describe: '部门添加',
  480. type: '1',
  481. status: '1',
  482. },
  483. {
  484. action: 'system:permission:editRule',
  485. describe: '编辑菜单权限数据',
  486. type: '1',
  487. status: '1',
  488. },
  489. {
  490. action: 'system:permission:edit',
  491. describe: '编辑菜单',
  492. type: '1',
  493. status: '1',
  494. },
  495. {
  496. action: 'system:depart:edit',
  497. describe: '部门编辑',
  498. type: '1',
  499. status: '1',
  500. },
  501. {
  502. action: 'system:depart:edit',
  503. describe: '部门编辑',
  504. type: '1',
  505. status: '1',
  506. },
  507. {
  508. action: 'system:depart:delete',
  509. describe: '部门删除',
  510. type: '1',
  511. status: '1',
  512. },
  513. {
  514. action: 'system:depart:delete',
  515. describe: '部门删除',
  516. type: '1',
  517. status: '1',
  518. },
  519. {
  520. action: 'system:depart:deleteBatch',
  521. describe: '部门批量删除',
  522. type: '1',
  523. status: '1',
  524. },
  525. {
  526. action: 'system:depart:deleteBatch',
  527. describe: '部门批量删除',
  528. type: '1',
  529. status: '1',
  530. },
  531. {
  532. action: 'system:depart:importExcel',
  533. describe: '部门导入',
  534. type: '1',
  535. status: '1',
  536. },
  537. {
  538. action: 'system:depart:role:add',
  539. describe: '部门角色添加',
  540. type: '1',
  541. status: '1',
  542. },
  543. {
  544. action: 'system:depart:role:edit',
  545. describe: '部门角色编辑',
  546. type: '1',
  547. status: '1',
  548. },
  549. {
  550. action: 'system:depart:role:delete',
  551. describe: '部门角色删除',
  552. type: '1',
  553. status: '1',
  554. },
  555. {
  556. action: 'system:depart:role:deleteBatch',
  557. describe: '部门角色批量删除',
  558. type: '1',
  559. status: '1',
  560. },
  561. {
  562. action: 'system:depart:role:userAdd',
  563. describe: '部门角色用户授权',
  564. type: '1',
  565. status: '1',
  566. },
  567. {
  568. action: 'system:dict:add',
  569. describe: '字典新增',
  570. type: '1',
  571. status: '1',
  572. },
  573. {
  574. action: 'system:dict:edit',
  575. describe: '字典编辑',
  576. type: '1',
  577. status: '1',
  578. },
  579. {
  580. action: 'system:dict:delete',
  581. describe: '字典删除',
  582. type: '1',
  583. status: '1',
  584. },
  585. {
  586. action: 'system:dict:deleteBatch',
  587. describe: '字典批量删除',
  588. type: '1',
  589. status: '1',
  590. },
  591. {
  592. action: 'system:dict:importExcel',
  593. describe: '字典导入',
  594. type: '1',
  595. status: '1',
  596. },
  597. {
  598. action: 'system:getway:delete',
  599. describe: '路由网关删除',
  600. type: '1',
  601. status: '1',
  602. },
  603. {
  604. action: 'system:permission:delete',
  605. describe: '删除菜单',
  606. type: '1',
  607. status: '1',
  608. },
  609. {
  610. action: 'system:permission:deleteBatch',
  611. describe: '批量删除菜单',
  612. type: '1',
  613. status: '1',
  614. },
  615. {
  616. action: 'system:permission:addRule',
  617. describe: '添加菜单权限数据',
  618. type: '1',
  619. status: '1',
  620. },
  621. {
  622. action: 'system:permission:deleteRule',
  623. describe: '删除菜单权限数据',
  624. type: '1',
  625. status: '1',
  626. },
  627. {
  628. action: 'system:permission:saveDepart',
  629. describe: '保存部门授权',
  630. type: '1',
  631. status: '1',
  632. },
  633. {
  634. action: 'system:role:list',
  635. describe: '查询角色列表数据',
  636. type: '1',
  637. status: '1',
  638. },
  639. {
  640. action: 'system:role:add',
  641. describe: '角色添加',
  642. type: '1',
  643. status: '1',
  644. },
  645. {
  646. action: 'system:role:add',
  647. describe: '角色添加',
  648. type: '1',
  649. status: '1',
  650. },
  651. {
  652. action: 'system:role:edit',
  653. describe: '角色编辑',
  654. type: '1',
  655. status: '1',
  656. },
  657. {
  658. action: 'system:role:edit',
  659. describe: '角色编辑',
  660. type: '1',
  661. status: '1',
  662. },
  663. {
  664. action: 'system:role:delete',
  665. describe: '角色删除',
  666. type: '1',
  667. status: '1',
  668. },
  669. {
  670. action: 'system:role:delete',
  671. describe: '角色删除',
  672. type: '1',
  673. status: '1',
  674. },
  675. {
  676. action: 'system:role:deleteBatch',
  677. describe: '角色批量删除',
  678. type: '1',
  679. status: '1',
  680. },
  681. {
  682. action: 'system:roleindex:add',
  683. describe: '角色首页配置添加',
  684. type: '1',
  685. status: '1',
  686. },
  687. {
  688. action: 'system:roleindex:edit',
  689. describe: '角色首页配置编辑',
  690. type: '1',
  691. status: '1',
  692. },
  693. {
  694. action: 'system:user:listAll',
  695. describe: '查询全部用户',
  696. type: '1',
  697. status: '1',
  698. },
  699. {
  700. action: 'desform:list:delete',
  701. describe: '表单删除',
  702. type: '1',
  703. status: '1',
  704. },
  705. {
  706. action: 'system:dict:item:add',
  707. describe: '字典子项新增',
  708. type: '1',
  709. status: '1',
  710. },
  711. {
  712. action: 'system:dict:item:edit',
  713. describe: '字典子项编辑',
  714. type: '1',
  715. status: '1',
  716. },
  717. {
  718. action: 'system:dict:item:delete',
  719. describe: '字典子项删除',
  720. type: '1',
  721. status: '1',
  722. },
  723. {
  724. action: 'system:dict:item:deleteBatch',
  725. describe: '字典子项批量删除',
  726. type: '1',
  727. status: '1',
  728. },
  729. {
  730. action: 'system:quartzJob:add',
  731. describe: '添加定时任务',
  732. type: '1',
  733. status: '1',
  734. },
  735. {
  736. action: 'system:quartzJob:edit',
  737. describe: '更新定时任务',
  738. type: '1',
  739. status: '1',
  740. },
  741. {
  742. action: 'system:quartzJob:delete',
  743. describe: '删除定时任务',
  744. type: '1',
  745. status: '1',
  746. },
  747. {
  748. action: 'system:quartzJob:deleteBatch',
  749. describe: '批量删除定时任务',
  750. type: '1',
  751. status: '1',
  752. },
  753. {
  754. action: 'system:quartzJob:pause',
  755. describe: '停止定时任务',
  756. type: '1',
  757. status: '1',
  758. },
  759. {
  760. action: 'system:quartzJob:resume',
  761. describe: '启动定时任务',
  762. type: '1',
  763. status: '1',
  764. },
  765. {
  766. action: 'system:quartzJob:execute',
  767. describe: '立即执行定时任务',
  768. type: '1',
  769. status: '1',
  770. },
  771. {
  772. action: 'system:ossFile:upload',
  773. describe: '文件oos上传',
  774. type: '1',
  775. status: '1',
  776. },
  777. {
  778. action: 'system:user:export',
  779. describe: '用户导出',
  780. type: '1',
  781. status: '1',
  782. },
  783. {
  784. action: 'system:user:setting:edit',
  785. describe: '账户设置用户编辑权限',
  786. type: '1',
  787. status: '1',
  788. },
  789. {
  790. action: 'system:user:queryById',
  791. describe: '通过ID查询用户信息接口',
  792. type: '1',
  793. status: '1',
  794. },
  795. {
  796. action: 'system:tenant:invitation:user',
  797. describe: '邀请用户',
  798. type: '1',
  799. status: '1',
  800. },
  801. {
  802. action: 'system:tenant:invitation:user',
  803. describe: '邀请用户',
  804. type: '1',
  805. status: '1',
  806. },
  807. {
  808. action: 'system:tenant:user:list',
  809. describe: '查询租户下用户',
  810. type: '1',
  811. status: '1',
  812. },
  813. {
  814. action: 'system:tenant:user:list',
  815. describe: '查询租户下用户',
  816. type: '1',
  817. status: '1',
  818. },
  819. {
  820. action: 'system:tenant:leave',
  821. describe: '租户请离',
  822. type: '1',
  823. status: '1',
  824. },
  825. {
  826. action: 'system:tenant:leave',
  827. describe: '租户请离',
  828. type: '1',
  829. status: '1',
  830. },
  831. {
  832. action: 'system:user:list',
  833. describe: '用户列表查询',
  834. type: '1',
  835. status: '1',
  836. },
  837. {
  838. action: 'system:tenant:packList',
  839. describe: '产品包分页列表查询',
  840. type: '1',
  841. status: '1',
  842. },
  843. {
  844. action: 'system:tenant:packList',
  845. describe: '产品包分页列表查询',
  846. type: '1',
  847. status: '1',
  848. },
  849. {
  850. action: 'system:tenant:add:pack',
  851. describe: '创建租户产品包',
  852. type: '1',
  853. status: '1',
  854. },
  855. {
  856. action: 'system:tenant:edit:pack',
  857. describe: '编辑租户产品包',
  858. type: '1',
  859. status: '1',
  860. },
  861. {
  862. action: 'system:tenant:delete:pack',
  863. describe: '批量删除租户产品包',
  864. type: '1',
  865. status: '1',
  866. },
  867. {
  868. action: 'system:tenant:tenantPageList',
  869. describe: '分页获取租户用户数据',
  870. type: '1',
  871. status: '1',
  872. },
  873. {
  874. action: 'system:tenant:getTenantListByUserId',
  875. describe: '通过用户id获取租户列表',
  876. type: '1',
  877. status: '1',
  878. },
  879. {
  880. action: 'system:tenant:updateUserTenantStatus',
  881. describe: '更新用户租户关系状态',
  882. type: '1',
  883. status: '1',
  884. },
  885. {
  886. action: 'system:tenant:list',
  887. describe: '租户列表',
  888. type: '1',
  889. status: '1',
  890. },
  891. {
  892. action: 'system:tenant:cancelTenant',
  893. describe: '注销租户',
  894. type: '1',
  895. status: '1',
  896. },
  897. {
  898. action: 'system:tenant:delete',
  899. describe: '删除租户',
  900. type: '1',
  901. status: '1',
  902. },
  903. {
  904. action: 'system:role:add',
  905. describe: '添加角色',
  906. type: '1',
  907. status: '1',
  908. },
  909. {
  910. action: 'system:role:edit',
  911. describe: '编辑角色',
  912. type: '1',
  913. status: '1',
  914. },
  915. {
  916. action: 'system:role:delete',
  917. describe: '删除角色',
  918. type: '1',
  919. status: '1',
  920. },
  921. {
  922. action: 'system:user:edit',
  923. describe: '编辑用户',
  924. type: '1',
  925. status: '1',
  926. },
  927. {
  928. action: 'system:user:add',
  929. describe: '新增用户',
  930. type: '1',
  931. status: '1',
  932. },
  933. {
  934. action: 'system:tenant:edit',
  935. describe: '编辑租户',
  936. type: '1',
  937. status: '1',
  938. },
  939. {
  940. action: 'system:tenant:deleteBatch',
  941. describe: '批量删除租户',
  942. type: '1',
  943. status: '1',
  944. },
  945. {
  946. action: 'system:tenant:recycleBinPageList',
  947. describe: '获取租户删除的列表',
  948. type: '1',
  949. status: '1',
  950. },
  951. {
  952. action: 'system:tenant:deleteTenantLogic',
  953. describe: '彻底删除租户',
  954. type: '1',
  955. status: '1',
  956. },
  957. {
  958. action: 'system:tenant:revertTenantLogic',
  959. describe: '租户还原',
  960. type: '1',
  961. status: '1',
  962. },
  963. {
  964. action: 'system:tenant:add',
  965. describe: '添加租户',
  966. type: '1',
  967. status: '1',
  968. },
  969. {
  970. action: 'system:log:list',
  971. describe: '日志列表',
  972. type: '1',
  973. status: '1',
  974. },
  975. {
  976. action: 'system:log:delete',
  977. describe: '日志删除',
  978. type: '1',
  979. status: '1',
  980. },
  981. {
  982. action: 'system:log:deleteBatch',
  983. describe: '日志批量删除',
  984. type: '1',
  985. status: '1',
  986. },
  987. {
  988. action: 'system:tenant:queryList',
  989. describe: '根据ids查询租户',
  990. type: '1',
  991. status: '1',
  992. },
  993. {
  994. action: 'drag:analysis:sql',
  995. describe: '数据集解析SQL',
  996. type: '1',
  997. status: '1',
  998. },
  999. {
  1000. action: 'drag:datasource:saveOrUpate',
  1001. describe: '数据源添加',
  1002. type: '1',
  1003. status: '1',
  1004. },
  1005. {
  1006. action: 'drag:datasource:delete',
  1007. describe: '数据源删除',
  1008. type: '1',
  1009. status: '1',
  1010. },
  1011. {
  1012. action: 'drag:datasource:deleteBatch',
  1013. describe: '数据源批量删除',
  1014. type: '1',
  1015. status: '1',
  1016. },
  1017. {
  1018. action: 'online:form:syncDb',
  1019. describe: '同步数据库',
  1020. type: '1',
  1021. status: '1',
  1022. },
  1023. {
  1024. action: 'online:form:add',
  1025. describe: '添加Online表单',
  1026. type: '1',
  1027. status: '1',
  1028. },
  1029. {
  1030. action: 'online:form:edit',
  1031. describe: '修改Online表单',
  1032. type: '1',
  1033. status: '1',
  1034. },
  1035. {
  1036. action: 'online:form:queryTables',
  1037. describe: '查询数据库表名',
  1038. type: '1',
  1039. status: '1',
  1040. },
  1041. {
  1042. action: 'online:report:getDictList',
  1043. describe: '获取字典列表',
  1044. type: '1',
  1045. status: '1',
  1046. },
  1047. {
  1048. action: 'online:report:parseSql',
  1049. describe: 'SQL解析',
  1050. type: '1',
  1051. status: '1',
  1052. },
  1053. {
  1054. action: 'online:report:add',
  1055. describe: '添加Online报表',
  1056. type: '1',
  1057. status: '1',
  1058. },
  1059. {
  1060. action: 'online:report:edit',
  1061. describe: '修改Online报表',
  1062. type: '1',
  1063. status: '1',
  1064. },
  1065. {
  1066. action: 'online:report:delete',
  1067. describe: '删除Online报表',
  1068. type: '1',
  1069. status: '1',
  1070. },
  1071. {
  1072. action: 'drag:datasource:testConnection',
  1073. describe: '数据源连接',
  1074. type: '1',
  1075. status: '1',
  1076. },
  1077. {
  1078. action: 'bigscreen:datasource:testConnection',
  1079. describe: '大屏数据源连接',
  1080. type: '1',
  1081. status: '1',
  1082. },
  1083. {
  1084. action: 'bigscreen:analysis:sql',
  1085. describe: '大屏解析sql',
  1086. type: '1',
  1087. status: '1',
  1088. },
  1089. {
  1090. action: 'demo:field:show',
  1091. describe: '字段权限',
  1092. type: '1',
  1093. status: '1',
  1094. },
  1095. {
  1096. action: 'demo:btn:show',
  1097. describe: '按钮权限',
  1098. type: '1',
  1099. status: '1',
  1100. },
  1101. {
  1102. action: 'system:user:queryUserRole',
  1103. describe: '查询某个用户的角色',
  1104. type: '1',
  1105. status: '1',
  1106. },
  1107. {
  1108. action: 'system:role:queryallNoByTenant',
  1109. describe: '查询所有角色不考虑租户',
  1110. type: '1',
  1111. status: '1',
  1112. },
  1113. {
  1114. action: 'system:permission:setDefIndex',
  1115. describe: '设置默认首页',
  1116. type: '1',
  1117. status: '1',
  1118. },
  1119. {
  1120. action: 'online:report:testConnection',
  1121. describe: '数据源测试',
  1122. type: '1',
  1123. status: '1',
  1124. },
  1125. {
  1126. action: 'system:tableWhite:list',
  1127. describe: '列表权限',
  1128. type: '1',
  1129. status: '1',
  1130. },
  1131. {
  1132. action: 'system:tableWhite:add',
  1133. describe: '添加权限',
  1134. type: '1',
  1135. status: '1',
  1136. },
  1137. {
  1138. action: 'system:tableWhite:edit',
  1139. describe: '修改权限',
  1140. type: '1',
  1141. status: '1',
  1142. },
  1143. {
  1144. action: 'system:tableWhite:delete',
  1145. describe: '删除权限',
  1146. type: '1',
  1147. status: '1',
  1148. },
  1149. {
  1150. action: 'system:tableWhite:deleteBatch',
  1151. describe: '批量删除',
  1152. type: '1',
  1153. status: '1',
  1154. },
  1155. {
  1156. action: 'system:tableWhite:queryById',
  1157. describe: '通过id查询',
  1158. type: '1',
  1159. status: '1',
  1160. },
  1161. {
  1162. action: 'system:user:app:edit',
  1163. describe: 'app端编辑用户',
  1164. type: '1',
  1165. status: '1',
  1166. },
  1167. {
  1168. action: 'system:dict:deleteRecycleBin',
  1169. describe: '批量彻底删除',
  1170. type: '1',
  1171. status: '1',
  1172. },
  1173. {
  1174. action: 'system:gateway:deleteRecycleBin',
  1175. describe: '彻底删除',
  1176. type: '1',
  1177. status: '1',
  1178. },
  1179. {
  1180. action: 'system:gateway:copyRoute',
  1181. describe: '复制路由',
  1182. type: '1',
  1183. status: '1',
  1184. },
  1185. {
  1186. action: 'system:gateway:putRecycleBin',
  1187. describe: '还原逻辑删除',
  1188. type: '1',
  1189. status: '1',
  1190. },
  1191. {
  1192. action: 'sys:order_apply:sort',
  1193. describe: '工单申请排序',
  1194. type: '1',
  1195. status: '1',
  1196. },
  1197. {
  1198. action: 'onl:drag:category:delete',
  1199. describe: '目录删除',
  1200. type: '1',
  1201. status: '1',
  1202. },
  1203. {
  1204. action: 'onl:drag:clear:recovery',
  1205. describe: '清空回收站',
  1206. type: '1',
  1207. status: '1',
  1208. },
  1209. {
  1210. action: 'drag:design:getTotalData',
  1211. describe: '表单设计页面查询',
  1212. type: '1',
  1213. status: '1',
  1214. },
  1215. {
  1216. action: 'system:tenant:syncDefaultPack',
  1217. describe: '初始化套餐包',
  1218. type: '1',
  1219. status: '1',
  1220. },
  1221. {
  1222. action: 'airag:app:edit',
  1223. describe: '新增或编辑AI应用',
  1224. type: '1',
  1225. status: '1',
  1226. },
  1227. {
  1228. action: 'airag:app:delete',
  1229. describe: '删除AI应用',
  1230. type: '1',
  1231. status: '1',
  1232. },
  1233. {
  1234. action: 'airag:knowledge:add',
  1235. describe: '添加AI知识库',
  1236. type: '1',
  1237. status: '1',
  1238. },
  1239. {
  1240. action: 'airag:knowledge:edit',
  1241. describe: '编辑AI知识库',
  1242. type: '1',
  1243. status: '1',
  1244. },
  1245. {
  1246. action: 'airag:knowledge:rebuild',
  1247. describe: '重建AI知识库',
  1248. type: '1',
  1249. status: '1',
  1250. },
  1251. {
  1252. action: 'airag:knowledge:delete',
  1253. describe: '删除AI知识库',
  1254. type: '1',
  1255. status: '1',
  1256. },
  1257. {
  1258. action: 'airag:knowledge:doc:edit',
  1259. describe: '新增编辑AI知识库文档',
  1260. type: '1',
  1261. status: '1',
  1262. },
  1263. {
  1264. action: 'airag:knowledge:doc:zip',
  1265. describe: '导入AI知识库文档',
  1266. type: '1',
  1267. status: '1',
  1268. },
  1269. {
  1270. action: 'airag:knowledge:doc:rebuild',
  1271. describe: '向量化AI知识库文档',
  1272. type: '1',
  1273. status: '1',
  1274. },
  1275. {
  1276. action: 'airag:knowledge:doc:deleteBatch',
  1277. describe: '批量删除AI知识库文档',
  1278. type: '1',
  1279. status: '1',
  1280. },
  1281. {
  1282. action: 'airag:knowledge:doc:deleteAll',
  1283. describe: '清空AI知识库文档',
  1284. type: '1',
  1285. status: '1',
  1286. },
  1287. {
  1288. action: 'airag:model:add',
  1289. describe: '新增AI模型',
  1290. type: '1',
  1291. status: '1',
  1292. },
  1293. {
  1294. action: 'airag:model:edit',
  1295. describe: '编辑AI模型',
  1296. type: '1',
  1297. status: '1',
  1298. },
  1299. {
  1300. action: 'airag:model:delete',
  1301. describe: '删除AI模型',
  1302. type: '1',
  1303. status: '1',
  1304. },
  1305. {
  1306. action: 'airag:flow:add',
  1307. describe: '新增AI流程',
  1308. type: '1',
  1309. status: '1',
  1310. },
  1311. {
  1312. action: 'airag:flow:edit',
  1313. describe: '编辑AI流程',
  1314. type: '1',
  1315. status: '1',
  1316. },
  1317. {
  1318. action: 'airag:flow:designSave',
  1319. describe: '保存AI流程设计',
  1320. type: '1',
  1321. status: '1',
  1322. },
  1323. {
  1324. action: 'airag:flow:debug',
  1325. describe: 'AI流程测试',
  1326. type: '1',
  1327. status: '1',
  1328. },
  1329. {
  1330. action: 'airag:flow:delete',
  1331. describe: '删除AI流程',
  1332. type: '1',
  1333. status: '1',
  1334. },
  1335. {
  1336. action: 'system:roleindex:add',
  1337. describe: '首页配置-添加',
  1338. type: '1',
  1339. status: '1',
  1340. },
  1341. {
  1342. action: 'system:roleindex:edit',
  1343. describe: '首页配置-编辑',
  1344. type: '1',
  1345. status: '1',
  1346. },
  1347. {
  1348. action: 'system:roleindex:delete',
  1349. describe: '首页配置-删除',
  1350. type: '1',
  1351. status: '1',
  1352. },
  1353. {
  1354. action: 'system:roleindex:deleteBatch',
  1355. describe: '首页配置-批量删除',
  1356. type: '1',
  1357. status: '1',
  1358. },
  1359. {
  1360. action: 'app:edit:version',
  1361. describe: 'APP版本编辑',
  1362. type: '1',
  1363. status: '1',
  1364. },
  1365. {
  1366. action: 'portal:system:template:edit',
  1367. describe: '系统/模版门户编辑',
  1368. type: '1',
  1369. status: '1',
  1370. },
  1371. {
  1372. action: 'oa:sign:permission:manager',
  1373. describe: '考勤管理员管理权限',
  1374. type: '1',
  1375. status: '1',
  1376. },
  1377. {
  1378. action: 'system:third:config:delete',
  1379. describe: '第三方配置删除',
  1380. type: '1',
  1381. status: '1',
  1382. },
  1383. {
  1384. action: 'desform:version:create',
  1385. describe: '版本:新增',
  1386. type: '1',
  1387. status: '1',
  1388. },
  1389. {
  1390. action: 'desform:version:update',
  1391. describe: '版本:更新',
  1392. type: '1',
  1393. status: '1',
  1394. },
  1395. {
  1396. action: 'desform:version:deleteById',
  1397. describe: '版本:单个删除',
  1398. type: '1',
  1399. status: '1',
  1400. },
  1401. {
  1402. action: 'desform:version:deleteBatchById',
  1403. describe: '版本:批量删除',
  1404. type: '1',
  1405. status: '1',
  1406. },
  1407. {
  1408. action: 'eoa:car:scrap',
  1409. describe: '车辆报废',
  1410. type: '1',
  1411. status: '1',
  1412. },
  1413. {
  1414. action: 'eoa:duty:member:add',
  1415. describe: '值班人员管理-添加',
  1416. type: '1',
  1417. status: '1',
  1418. },
  1419. {
  1420. action: 'eoa:duty:member:edit',
  1421. describe: '值班人员管理-编辑',
  1422. type: '1',
  1423. status: '1',
  1424. },
  1425. {
  1426. action: 'eoa:duty:member:delete',
  1427. describe: '值班人员管理-通过id删除',
  1428. type: '1',
  1429. status: '1',
  1430. },
  1431. {
  1432. action: 'eoa:duty:member:deleteBatch',
  1433. describe: '值班人员管理-批量删除',
  1434. type: '1',
  1435. status: '1',
  1436. },
  1437. {
  1438. action: 'eoa:duty:member:exportXls',
  1439. describe: '值班人员管理-导出',
  1440. type: '1',
  1441. status: '1',
  1442. },
  1443. {
  1444. action: 'eoa:duty:member:importExcel',
  1445. describe: '值班人员管理-导入',
  1446. type: '1',
  1447. status: '1',
  1448. },
  1449. {
  1450. action: 'eoa:duty:date:add',
  1451. describe: '值班日期管理-添加',
  1452. type: '1',
  1453. status: '1',
  1454. },
  1455. {
  1456. action: 'eoa:duty:date:edit',
  1457. describe: '值班日期管理-编辑',
  1458. type: '1',
  1459. status: '1',
  1460. },
  1461. {
  1462. action: 'eoa:duty:date:delete',
  1463. describe: '值班日期管理-通过id删除',
  1464. type: '1',
  1465. status: '1',
  1466. },
  1467. {
  1468. action: 'eoa:duty:date:deleteBatch',
  1469. describe: '值班日期管理-批量删除',
  1470. type: '1',
  1471. status: '1',
  1472. },
  1473. {
  1474. action: 'eoa:duty:date:exportXls',
  1475. describe: '值班日期管理-导出',
  1476. type: '1',
  1477. status: '1',
  1478. },
  1479. {
  1480. action: 'eoa:duty:date:importExcel',
  1481. describe: '值班日期管理-导入',
  1482. type: '1',
  1483. status: '1',
  1484. },
  1485. {
  1486. action: 'eoa:collaboration:publish',
  1487. describe: '发布协同工作事项',
  1488. type: '1',
  1489. status: '1',
  1490. },
  1491. {
  1492. action: 'eoa:collaboration:delete:force',
  1493. describe: '批量删除协同工作事项',
  1494. type: '1',
  1495. status: '1',
  1496. },
  1497. {
  1498. action: 'eoa:duty:schedule:generate',
  1499. describe: 'OA值班 - 生成排班计划',
  1500. type: '1',
  1501. status: '1',
  1502. },
  1503. {
  1504. action: 'eoa:duty:schedule:edit',
  1505. describe: 'OA值班 - 值班排班表-编辑',
  1506. type: '1',
  1507. status: '1',
  1508. },
  1509. {
  1510. action: 'eoa:duty:schedule:delete',
  1511. describe: 'OA值班 - 值班排班表-通过id删除',
  1512. type: '1',
  1513. status: '1',
  1514. },
  1515. {
  1516. action: 'eoa:duty:schedule:deleteBatch',
  1517. describe: 'OA值班 - 值班排班表-批量删除',
  1518. type: '1',
  1519. status: '1',
  1520. },
  1521. {
  1522. action: 'eoa:collaboration:toNotice',
  1523. describe: '转公告',
  1524. type: '1',
  1525. status: '1',
  1526. },
  1527. {
  1528. action: 'eoa:duty:schedule:swap:delete',
  1529. describe: 'OA值班 - 换班申请-通过id删除',
  1530. type: '1',
  1531. status: '1',
  1532. },
  1533. {
  1534. action: 'eoa:duty:schedule:swap:deleteBatch',
  1535. describe: 'OA值班 - 换班申请-批量删除',
  1536. type: '1',
  1537. status: '1',
  1538. },
  1539. {
  1540. action: 'eoa:duty:schedule:swap:admin',
  1541. describe: 'OA值班 - 换班申请-管理员换班',
  1542. type: '1',
  1543. status: '1',
  1544. },
  1545. {
  1546. action: 'oa:office:form:auth',
  1547. describe: '工单授权',
  1548. type: '1',
  1549. status: '1',
  1550. },
  1551. {
  1552. action: 'system:tenant:addPacksUser',
  1553. describe: '添加一个用户和多个套餐关系',
  1554. type: '1',
  1555. status: '1',
  1556. },
  1557. {
  1558. action: 'oa:sign:stats:month:recalc',
  1559. describe: '月度汇总重新计算权限',
  1560. type: '1',
  1561. status: '1',
  1562. },
  1563. {
  1564. action: 'sys:approval_group:delete',
  1565. describe: '审批分组删除',
  1566. type: '1',
  1567. status: '1',
  1568. },
  1569. {
  1570. action: 'sys:approval_role:delete',
  1571. describe: '审批角色删除',
  1572. type: '1',
  1573. status: '1',
  1574. },
  1575. {
  1576. action: 'sys:approval_role_user:delete',
  1577. describe: '审批角色用户删除',
  1578. type: '1',
  1579. status: '1',
  1580. },
  1581. {
  1582. action: 'system:depart:updateChange',
  1583. describe: '部门管理拖拽修改上下级',
  1584. type: '1',
  1585. status: '1',
  1586. },
  1587. {
  1588. action: 'system:user:resetPassword',
  1589. describe: '重置系统密码',
  1590. type: '1',
  1591. status: '1',
  1592. },
  1593. {
  1594. action: 'user:form:phone',
  1595. describe: '手机号禁用',
  1596. type: '2',
  1597. status: '1',
  1598. },
  1599. {
  1600. action: 'system:user:queryUserRole',
  1601. describe: '通过ID查询用户拥有的角色',
  1602. type: '1',
  1603. status: '1',
  1604. },
  1605. {
  1606. action: 'openapi:open_api:add',
  1607. describe: '添加接口管理',
  1608. type: '1',
  1609. status: '1',
  1610. },
  1611. {
  1612. action: 'openapi:open_api:edit',
  1613. describe: '编辑接口管理',
  1614. type: '1',
  1615. status: '1',
  1616. },
  1617. {
  1618. action: 'openapi:open_api:delete',
  1619. describe: '删除接口管理',
  1620. type: '1',
  1621. status: '1',
  1622. },
  1623. {
  1624. action: 'openapi:open_api:deleteBatch',
  1625. describe: '批量删除接口管理',
  1626. type: '1',
  1627. status: '1',
  1628. },
  1629. {
  1630. action: 'openapi:open_api:exportXls',
  1631. describe: '导出excel_接口管理',
  1632. type: '1',
  1633. status: '1',
  1634. },
  1635. {
  1636. action: 'openapi:open_api:importExcel',
  1637. describe: '导入excel_接口管理',
  1638. type: '1',
  1639. status: '1',
  1640. },
  1641. {
  1642. action: 'openapi:open_api_auth:add',
  1643. describe: '添加授权管理',
  1644. type: '1',
  1645. status: '1',
  1646. },
  1647. {
  1648. action: 'openapi:open_api_auth:edit',
  1649. describe: '编辑授权管理',
  1650. type: '1',
  1651. status: '1',
  1652. },
  1653. {
  1654. action: 'openapi:open_api_auth:delete',
  1655. describe: '删除授权管理',
  1656. type: '1',
  1657. status: '1',
  1658. },
  1659. {
  1660. action: 'openapi:open_api_auth:deleteBatch',
  1661. describe: '批量删除授权管理',
  1662. type: '1',
  1663. status: '1',
  1664. },
  1665. {
  1666. action: 'openapi:open_api_auth:exportXls',
  1667. describe: '导出excel_授权管理',
  1668. type: '1',
  1669. status: '1',
  1670. },
  1671. {
  1672. action: 'openapi:open_api_auth:importExcel',
  1673. describe: '导入excel_授权管理',
  1674. type: '1',
  1675. status: '1',
  1676. },
  1677. {
  1678. action: 'metting:eoa_metting_log_template:add',
  1679. describe: '添加会议纪要模版管理',
  1680. type: '1',
  1681. status: '1',
  1682. },
  1683. {
  1684. action: 'metting:eoa_metting_log_template:edit',
  1685. describe: '编辑会议纪要模版管理',
  1686. type: '1',
  1687. status: '1',
  1688. },
  1689. {
  1690. action: 'metting:eoa_metting_log_template:delete',
  1691. describe: '删除会议纪要模版管理',
  1692. type: '1',
  1693. status: '1',
  1694. },
  1695. {
  1696. action: 'metting:eoa_metting_log_template:deleteBatch',
  1697. describe: '批量删除会议纪要模版管理',
  1698. type: '1',
  1699. status: '1',
  1700. },
  1701. {
  1702. action: 'metting:eoa_metting_log_template:exportXls',
  1703. describe: '导出excel_会议纪要模版管理',
  1704. type: '1',
  1705. status: '1',
  1706. },
  1707. {
  1708. action: 'metting:eoa_metting_log_template:importExcel',
  1709. describe: '导入excel_会议纪要模版管理',
  1710. type: '1',
  1711. status: '1',
  1712. },
  1713. {
  1714. action: 'metting:eoa_metting_log:add',
  1715. describe: '添加会议记录',
  1716. type: '1',
  1717. status: '1',
  1718. },
  1719. {
  1720. action: 'metting:eoa_metting_log:edit',
  1721. describe: '编辑会议记录',
  1722. type: '1',
  1723. status: '1',
  1724. },
  1725. {
  1726. action: 'metting:eoa_metting_log:delete',
  1727. describe: '删除会议记录',
  1728. type: '1',
  1729. status: '1',
  1730. },
  1731. {
  1732. action: 'metting:eoa_metting_log:deleteBatch',
  1733. describe: '批量删除会议记录',
  1734. type: '1',
  1735. status: '1',
  1736. },
  1737. {
  1738. action: 'metting:eoa_metting_log:exportXls',
  1739. describe: '导出excel_会议记录',
  1740. type: '1',
  1741. status: '1',
  1742. },
  1743. {
  1744. action: 'metting:eoa_metting_log:importExcel',
  1745. describe: '导入excel_会议记录',
  1746. type: '1',
  1747. status: '1',
  1748. },
  1749. {
  1750. action: 'wordtpl:template:add',
  1751. describe: '添加word模版管理',
  1752. type: '1',
  1753. status: '1',
  1754. },
  1755. {
  1756. action: 'wordtpl:template:edit',
  1757. describe: '编辑word模版管理',
  1758. type: '1',
  1759. status: '1',
  1760. },
  1761. {
  1762. action: 'wordtpl:template:delete',
  1763. describe: '删除word模版管理',
  1764. type: '1',
  1765. status: '1',
  1766. },
  1767. {
  1768. action: 'wordtpl:template:deleteBatch',
  1769. describe: '批量删除word模版管理',
  1770. type: '1',
  1771. status: '1',
  1772. },
  1773. {
  1774. action: 'wordtpl:template:design',
  1775. describe: '设计word模版',
  1776. type: '1',
  1777. status: '1',
  1778. },
  1779. {
  1780. action: 'eoa:car:add',
  1781. describe: '添加车辆档案',
  1782. type: '1',
  1783. status: '1',
  1784. },
  1785. {
  1786. action: 'eoa:car:edit',
  1787. describe: '编辑车辆档案',
  1788. type: '1',
  1789. status: '1',
  1790. },
  1791. {
  1792. action: 'eoa:car:delete',
  1793. describe: '删除车辆档案',
  1794. type: '1',
  1795. status: '1',
  1796. },
  1797. {
  1798. action: 'eoa:car:deleteBatch',
  1799. describe: '批量删除车辆档案',
  1800. type: '1',
  1801. status: '1',
  1802. },
  1803. {
  1804. action: 'eoa:car:exportXls',
  1805. describe: '导出excel_车辆档案',
  1806. type: '1',
  1807. status: '1',
  1808. },
  1809. {
  1810. action: 'eoa:car:importExcel',
  1811. describe: '导入excel_车辆档案',
  1812. type: '1',
  1813. status: '1',
  1814. },
  1815. {
  1816. action: 'eoa:carDriver:add',
  1817. describe: '添加司机管理',
  1818. type: '1',
  1819. status: '1',
  1820. },
  1821. {
  1822. action: 'eoa:carDriver:edit',
  1823. describe: '编辑司机管理',
  1824. type: '1',
  1825. status: '1',
  1826. },
  1827. {
  1828. action: 'eoa:carDriver:delete',
  1829. describe: '删除司机管理',
  1830. type: '1',
  1831. status: '1',
  1832. },
  1833. {
  1834. action: 'eoa:carDriver:deleteBatch',
  1835. describe: '批量删除司机管理',
  1836. type: '1',
  1837. status: '1',
  1838. },
  1839. {
  1840. action: 'eoa:carDriver:exportXls',
  1841. describe: '导出excel_司机管理',
  1842. type: '1',
  1843. status: '1',
  1844. },
  1845. {
  1846. action: 'eoa:carDriver:importExcel',
  1847. describe: '导入excel_司机管理',
  1848. type: '1',
  1849. status: '1',
  1850. },
  1851. {
  1852. action: 'eoa:car:company:add',
  1853. describe: '添加维修保养单位',
  1854. type: '1',
  1855. status: '1',
  1856. },
  1857. {
  1858. action: 'eoa:car:company:edit',
  1859. describe: '编辑维修保养单位',
  1860. type: '1',
  1861. status: '1',
  1862. },
  1863. {
  1864. action: 'eoa:car:company:delete',
  1865. describe: '删除维修保养单位',
  1866. type: '1',
  1867. status: '1',
  1868. },
  1869. {
  1870. action: 'eoa:car:company:deleteBatch',
  1871. describe: '批量删除维修保养单位',
  1872. type: '1',
  1873. status: '1',
  1874. },
  1875. {
  1876. action: 'eoa:car:company:exportXls',
  1877. describe: '导出excel_维修保养单位',
  1878. type: '1',
  1879. status: '1',
  1880. },
  1881. {
  1882. action: 'eoa:car:company:importExcel',
  1883. describe: '导入excel_维修保养单位',
  1884. type: '1',
  1885. status: '1',
  1886. },
  1887. {
  1888. action: 'eoa:car:accident:add',
  1889. describe: '添加事故登记/违章登记',
  1890. type: '1',
  1891. status: '1',
  1892. },
  1893. {
  1894. action: 'eoa:car:accident:edit',
  1895. describe: '编辑事故登记/违章登记',
  1896. type: '1',
  1897. status: '1',
  1898. },
  1899. {
  1900. action: 'eoa:car:accident:delete',
  1901. describe: '删除事故登记/违章登记',
  1902. type: '1',
  1903. status: '1',
  1904. },
  1905. {
  1906. action: 'eoa:car:accident:deleteBatch',
  1907. describe: '批量删除事故登记/违章登记',
  1908. type: '1',
  1909. status: '1',
  1910. },
  1911. {
  1912. action: 'eoa:car:accident:exportXls',
  1913. describe: '导出excel_事故登记',
  1914. type: '1',
  1915. status: '1',
  1916. },
  1917. {
  1918. action: 'eoa:car:accident:importExcel',
  1919. describe: '导入excel_事故登记',
  1920. type: '1',
  1921. status: '1',
  1922. },
  1923. {
  1924. action: 'eoa:car:maintenance:add',
  1925. describe: '添加维修保养',
  1926. type: '1',
  1927. status: '1',
  1928. },
  1929. {
  1930. action: 'eoa:car:maintenance:edit',
  1931. describe: '编辑维修保养',
  1932. type: '1',
  1933. status: '1',
  1934. },
  1935. {
  1936. action: 'eoa:car:maintenance:delete',
  1937. describe: '删除维修保养',
  1938. type: '1',
  1939. status: '1',
  1940. },
  1941. {
  1942. action: 'eoa:car:maintenance:deleteBatch',
  1943. describe: '批量删除维修保养',
  1944. type: '1',
  1945. status: '1',
  1946. },
  1947. {
  1948. action: 'eoa:car:maintenance:exportXls',
  1949. describe: '导出excel_维修保养',
  1950. type: '1',
  1951. status: '1',
  1952. },
  1953. {
  1954. action: 'eoa:car:maintenance:importExcel',
  1955. describe: '导入excel_维修保养',
  1956. type: '1',
  1957. status: '1',
  1958. },
  1959. {
  1960. action: 'eoa:car:oil:add',
  1961. describe: '添加加油管理',
  1962. type: '1',
  1963. status: '1',
  1964. },
  1965. {
  1966. action: 'eoa:car:oil:edit',
  1967. describe: '编辑加油管理',
  1968. type: '1',
  1969. status: '1',
  1970. },
  1971. {
  1972. action: 'eoa:car:oil:delete',
  1973. describe: '删除加油管理',
  1974. type: '1',
  1975. status: '1',
  1976. },
  1977. {
  1978. action: 'eoa:car:oil:deleteBatch',
  1979. describe: '批量删除加油管理',
  1980. type: '1',
  1981. status: '1',
  1982. },
  1983. {
  1984. action: 'eoa:car:oil:exportXls',
  1985. describe: '导出excel_加油管理',
  1986. type: '1',
  1987. status: '1',
  1988. },
  1989. {
  1990. action: 'eoa:car:oil:importExcel',
  1991. describe: '导入excel_加油管理',
  1992. type: '1',
  1993. status: '1',
  1994. },
  1995. {
  1996. action: 'eoa:car:annual:inspection:add',
  1997. describe: '添加车辆年捡',
  1998. type: '1',
  1999. status: '1',
  2000. },
  2001. {
  2002. action: 'eoa:car:annual:inspection:edit',
  2003. describe: '编辑车辆年捡',
  2004. type: '1',
  2005. status: '1',
  2006. },
  2007. {
  2008. action: 'eoa:car:annual:inspection:delete',
  2009. describe: '删除车辆年捡',
  2010. type: '1',
  2011. status: '1',
  2012. },
  2013. {
  2014. action: 'eoa:car:annual:inspection:deleteBatch',
  2015. describe: '批量删除车辆年捡',
  2016. type: '1',
  2017. status: '1',
  2018. },
  2019. {
  2020. action: 'eoa:car:annual:inspection:exportXls',
  2021. describe: '导出excel_车辆年捡',
  2022. type: '1',
  2023. status: '1',
  2024. },
  2025. {
  2026. action: 'eoa:car:annual:inspection:importExcel',
  2027. describe: '导入excel_车辆年捡',
  2028. type: '1',
  2029. status: '1',
  2030. },
  2031. {
  2032. action: 'system:user:import',
  2033. describe: '用户导入',
  2034. type: '1',
  2035. status: '1',
  2036. },
  2037. ],
  2038. auth: [
  2039. {
  2040. action: 'eoa:carDriver:exportXls',
  2041. describe: '导出excel_司机管理',
  2042. type: '1',
  2043. },
  2044. {
  2045. action: 'eoa:car:accident:delete',
  2046. describe: '删除事故登记/违章登记',
  2047. type: '1',
  2048. },
  2049. {
  2050. action: 'online:report:edit',
  2051. describe: '修改Online报表',
  2052. type: '1',
  2053. },
  2054. {
  2055. action: 'eoa:carDriver:importExcel',
  2056. describe: '导入excel_司机管理',
  2057. type: '1',
  2058. },
  2059. {
  2060. action: 'eoa:car:accident:deleteBatch',
  2061. describe: '批量删除事故登记/违章登记',
  2062. type: '1',
  2063. },
  2064. {
  2065. action: 'drag:datasource:testConnection',
  2066. describe: '数据源连接',
  2067. type: '1',
  2068. },
  2069. {
  2070. action: 'online:report:testConnection',
  2071. describe: '数据源测试',
  2072. type: '1',
  2073. },
  2074. {
  2075. action: 'eoa:car:accident:exportXls',
  2076. describe: '导出excel_事故登记',
  2077. type: '1',
  2078. },
  2079. {
  2080. action: 'bigscreen:datasource:testConnection',
  2081. describe: '大屏数据源连接',
  2082. type: '1',
  2083. },
  2084. {
  2085. action: 'eoa:car:company:add',
  2086. describe: '添加维修保养单位',
  2087. type: '1',
  2088. },
  2089. {
  2090. action: 'eoa:car:accident:importExcel',
  2091. describe: '导入excel_事故登记',
  2092. type: '1',
  2093. },
  2094. {
  2095. action: 'bigscreen:analysis:sql',
  2096. describe: '大屏解析sql',
  2097. type: '1',
  2098. },
  2099. {
  2100. action: 'system:tableWhite:list',
  2101. describe: '列表权限',
  2102. type: '1',
  2103. },
  2104. {
  2105. action: 'eoa:car:company:edit',
  2106. describe: '编辑维修保养单位',
  2107. type: '1',
  2108. },
  2109. {
  2110. action: 'demo:field:show',
  2111. describe: '字段权限',
  2112. type: '1',
  2113. },
  2114. {
  2115. action: 'eoa:car:exportXls',
  2116. describe: '导出excel_车辆档案',
  2117. type: '1',
  2118. },
  2119. {
  2120. action: 'system:tableWhite:add',
  2121. describe: '添加权限',
  2122. type: '1',
  2123. },
  2124. {
  2125. action: 'eoa:car:company:delete',
  2126. describe: '删除维修保养单位',
  2127. type: '1',
  2128. },
  2129. {
  2130. action: 'demo:btn:show',
  2131. describe: '按钮权限',
  2132. type: '1',
  2133. },
  2134. {
  2135. action: 'eoa:car:importExcel',
  2136. describe: '导入excel_车辆档案',
  2137. type: '1',
  2138. },
  2139. {
  2140. action: 'system:tableWhite:edit',
  2141. describe: '修改权限',
  2142. type: '1',
  2143. },
  2144. {
  2145. action: 'eoa:car:company:deleteBatch',
  2146. describe: '批量删除维修保养单位',
  2147. type: '1',
  2148. },
  2149. {
  2150. action: 'system:tableWhite:delete',
  2151. describe: '删除权限',
  2152. type: '1',
  2153. },
  2154. {
  2155. action: 'eoa:car:company:exportXls',
  2156. describe: '导出excel_维修保养单位',
  2157. type: '1',
  2158. },
  2159. {
  2160. action: 'eoa:carDriver:add',
  2161. describe: '添加司机管理',
  2162. type: '1',
  2163. },
  2164. {
  2165. action: 'system:tableWhite:deleteBatch',
  2166. describe: '批量删除',
  2167. type: '1',
  2168. },
  2169. {
  2170. action: 'eoa:car:company:importExcel',
  2171. describe: '导入excel_维修保养单位',
  2172. type: '1',
  2173. },
  2174. {
  2175. action: 'eoa:carDriver:edit',
  2176. describe: '编辑司机管理',
  2177. type: '1',
  2178. },
  2179. {
  2180. action: 'system:tableWhite:queryById',
  2181. describe: '通过id查询',
  2182. type: '1',
  2183. },
  2184. {
  2185. action: 'system:user:queryUserRole',
  2186. describe: '查询某个用户的角色',
  2187. type: '1',
  2188. },
  2189. {
  2190. action: 'eoa:carDriver:delete',
  2191. describe: '删除司机管理',
  2192. type: '1',
  2193. },
  2194. {
  2195. action: 'system:gateway:deleteRecycleBin',
  2196. describe: '彻底删除',
  2197. type: '1',
  2198. },
  2199. {
  2200. action: 'eoa:car:accident:add',
  2201. describe: '添加事故登记/违章登记',
  2202. type: '1',
  2203. },
  2204. {
  2205. action: 'system:role:queryallNoByTenant',
  2206. describe: '查询所有角色不考虑租户',
  2207. type: '1',
  2208. },
  2209. {
  2210. action: 'eoa:carDriver:deleteBatch',
  2211. describe: '批量删除司机管理',
  2212. type: '1',
  2213. },
  2214. {
  2215. action: 'system:gateway:copyRoute',
  2216. describe: '复制路由',
  2217. type: '1',
  2218. },
  2219. {
  2220. action: 'eoa:car:accident:edit',
  2221. describe: '编辑事故登记/违章登记',
  2222. type: '1',
  2223. },
  2224. {
  2225. action: 'eoa:car:annual:inspection:exportXls',
  2226. describe: '导出excel_车辆年捡',
  2227. type: '1',
  2228. },
  2229. {
  2230. action: 'system:gateway:putRecycleBin',
  2231. describe: '还原逻辑删除',
  2232. type: '1',
  2233. },
  2234. {
  2235. action: 'eoa:car:oil:add',
  2236. describe: '添加加油管理',
  2237. type: '1',
  2238. },
  2239. {
  2240. action: 'eoa:car:annual:inspection:importExcel',
  2241. describe: '导入excel_车辆年捡',
  2242. type: '1',
  2243. },
  2244. {
  2245. action: 'sys:order_apply:sort',
  2246. describe: '工单申请排序',
  2247. type: '1',
  2248. },
  2249. {
  2250. action: 'eoa:car:oil:edit',
  2251. describe: '编辑加油管理',
  2252. type: '1',
  2253. },
  2254. {
  2255. action: 'eoa:car:oil:delete',
  2256. describe: '删除加油管理',
  2257. type: '1',
  2258. },
  2259. {
  2260. action: 'onl:drag:category:delete',
  2261. describe: '目录删除',
  2262. type: '1',
  2263. },
  2264. {
  2265. action: 'eoa:car:oil:deleteBatch',
  2266. describe: '批量删除加油管理',
  2267. type: '1',
  2268. },
  2269. {
  2270. action: 'onl:drag:clear:recovery',
  2271. describe: '清空回收站',
  2272. type: '1',
  2273. },
  2274. {
  2275. action: 'eoa:car:oil:exportXls',
  2276. describe: '导出excel_加油管理',
  2277. type: '1',
  2278. },
  2279. {
  2280. action: 'eoa:car:maintenance:add',
  2281. describe: '添加维修保养',
  2282. type: '1',
  2283. },
  2284. {
  2285. action: 'eoa:car:oil:importExcel',
  2286. describe: '导入excel_加油管理',
  2287. type: '1',
  2288. },
  2289. {
  2290. action: 'drag:design:getTotalData',
  2291. describe: '表单设计页面查询',
  2292. type: '1',
  2293. },
  2294. {
  2295. action: 'eoa:car:maintenance:edit',
  2296. describe: '编辑维修保养',
  2297. type: '1',
  2298. },
  2299. {
  2300. action: 'system:tenant:syncDefaultPack',
  2301. describe: '初始化套餐包',
  2302. type: '1',
  2303. },
  2304. {
  2305. action: 'eoa:car:maintenance:delete',
  2306. describe: '删除维修保养',
  2307. type: '1',
  2308. },
  2309. {
  2310. action: 'eoa:car:annual:inspection:add',
  2311. describe: '添加车辆年捡',
  2312. type: '1',
  2313. },
  2314. {
  2315. action: 'eoa:car:maintenance:deleteBatch',
  2316. describe: '批量删除维修保养',
  2317. type: '1',
  2318. },
  2319. {
  2320. action: 'eoa:car:annual:inspection:edit',
  2321. describe: '编辑车辆年捡',
  2322. type: '1',
  2323. },
  2324. {
  2325. action: 'eoa:car:maintenance:exportXls',
  2326. describe: '导出excel_维修保养',
  2327. type: '1',
  2328. },
  2329. {
  2330. action: 'eoa:car:annual:inspection:delete',
  2331. describe: '删除车辆年捡',
  2332. type: '1',
  2333. },
  2334. {
  2335. action: 'eoa:car:maintenance:importExcel',
  2336. describe: '导入excel_维修保养',
  2337. type: '1',
  2338. },
  2339. {
  2340. action: 'airag:app:edit',
  2341. describe: '新增或编辑AI应用',
  2342. type: '1',
  2343. },
  2344. {
  2345. action: 'eoa:car:annual:inspection:deleteBatch',
  2346. describe: '批量删除车辆年捡',
  2347. type: '1',
  2348. },
  2349. {
  2350. action: 'airag:app:delete',
  2351. describe: '删除AI应用',
  2352. type: '1',
  2353. },
  2354. {
  2355. action: 'airag:model:delete',
  2356. describe: '删除AI模型',
  2357. type: '1',
  2358. },
  2359. {
  2360. action: 'airag:knowledge:add',
  2361. describe: '添加AI知识库',
  2362. type: '1',
  2363. },
  2364. {
  2365. action: 'airag:flow:add',
  2366. describe: '新增AI流程',
  2367. type: '1',
  2368. },
  2369. {
  2370. action: 'airag:knowledge:edit',
  2371. describe: '编辑AI知识库',
  2372. type: '1',
  2373. },
  2374. {
  2375. action: 'airag:flow:edit',
  2376. describe: '编辑AI流程',
  2377. type: '1',
  2378. },
  2379. {
  2380. action: 'airag:knowledge:rebuild',
  2381. describe: '重建AI知识库',
  2382. type: '1',
  2383. },
  2384. {
  2385. action: 'airag:flow:designSave',
  2386. describe: '保存AI流程设计',
  2387. type: '1',
  2388. },
  2389. {
  2390. action: 'airag:knowledge:delete',
  2391. describe: '删除AI知识库',
  2392. type: '1',
  2393. },
  2394. {
  2395. action: 'airag:flow:delete',
  2396. describe: '删除AI流程',
  2397. type: '1',
  2398. },
  2399. {
  2400. action: 'airag:knowledge:doc:edit',
  2401. describe: '新增编辑AI知识库文档',
  2402. type: '1',
  2403. },
  2404. {
  2405. action: 'airag:knowledge:doc:zip',
  2406. describe: '导入AI知识库文档',
  2407. type: '1',
  2408. },
  2409. {
  2410. action: 'airag:knowledge:doc:rebuild',
  2411. describe: '向量化AI知识库文档',
  2412. type: '1',
  2413. },
  2414. {
  2415. action: 'airag:knowledge:doc:deleteBatch',
  2416. describe: '批量删除AI知识库文档',
  2417. type: '1',
  2418. },
  2419. {
  2420. action: 'airag:knowledge:doc:deleteAll',
  2421. describe: '清空AI知识库文档',
  2422. type: '1',
  2423. },
  2424. {
  2425. action: 'airag:model:add',
  2426. describe: '新增AI模型',
  2427. type: '1',
  2428. },
  2429. {
  2430. action: 'airag:model:edit',
  2431. describe: '编辑AI模型',
  2432. type: '1',
  2433. },
  2434. {
  2435. action: 'app:edit:version',
  2436. describe: 'APP版本编辑',
  2437. type: '1',
  2438. },
  2439. {
  2440. action: 'portal:system:template:edit',
  2441. describe: '系统/模版门户编辑',
  2442. type: '1',
  2443. },
  2444. {
  2445. action: 'eoa:car:scrap',
  2446. describe: '车辆报废',
  2447. type: '1',
  2448. },
  2449. {
  2450. action: 'oa:sign:permission:manager',
  2451. describe: '考勤管理员管理权限',
  2452. type: '1',
  2453. },
  2454. {
  2455. action: 'eoa:duty:member:add',
  2456. describe: '值班人员管理-添加',
  2457. type: '1',
  2458. },
  2459. {
  2460. action: 'eoa:duty:member:edit',
  2461. describe: '值班人员管理-编辑',
  2462. type: '1',
  2463. },
  2464. {
  2465. action: 'eoa:duty:member:delete',
  2466. describe: '值班人员管理-通过id删除',
  2467. type: '1',
  2468. },
  2469. {
  2470. action: 'eoa:duty:member:deleteBatch',
  2471. describe: '值班人员管理-批量删除',
  2472. type: '1',
  2473. },
  2474. {
  2475. action: 'eoa:duty:member:exportXls',
  2476. describe: '值班人员管理-导出',
  2477. type: '1',
  2478. },
  2479. {
  2480. action: 'eoa:duty:schedule:generate',
  2481. describe: 'OA值班 - 生成排班计划',
  2482. type: '1',
  2483. },
  2484. {
  2485. action: 'eoa:duty:member:importExcel',
  2486. describe: '值班人员管理-导入',
  2487. type: '1',
  2488. },
  2489. {
  2490. action: 'eoa:duty:schedule:edit',
  2491. describe: 'OA值班 - 值班排班表-编辑',
  2492. type: '1',
  2493. },
  2494. {
  2495. action: 'eoa:duty:date:add',
  2496. describe: '值班日期管理-添加',
  2497. type: '1',
  2498. },
  2499. {
  2500. action: 'eoa:duty:schedule:delete',
  2501. describe: 'OA值班 - 值班排班表-通过id删除',
  2502. type: '1',
  2503. },
  2504. {
  2505. action: 'eoa:duty:date:edit',
  2506. describe: '值班日期管理-编辑',
  2507. type: '1',
  2508. },
  2509. {
  2510. action: 'eoa:duty:schedule:deleteBatch',
  2511. describe: 'OA值班 - 值班排班表-批量删除',
  2512. type: '1',
  2513. },
  2514. {
  2515. action: 'eoa:duty:date:delete',
  2516. describe: '值班日期管理-通过id删除',
  2517. type: '1',
  2518. },
  2519. {
  2520. action: 'eoa:duty:date:deleteBatch',
  2521. describe: '值班日期管理-批量删除',
  2522. type: '1',
  2523. },
  2524. {
  2525. action: 'eoa:duty:date:exportXls',
  2526. describe: '值班日期管理-导出',
  2527. type: '1',
  2528. },
  2529. {
  2530. action: 'eoa:duty:date:importExcel',
  2531. describe: '值班日期管理-导入',
  2532. type: '1',
  2533. },
  2534. {
  2535. action: 'eoa:collaboration:publish',
  2536. describe: '发布协同工作事项',
  2537. type: '1',
  2538. },
  2539. {
  2540. action: 'eoa:collaboration:delete:force',
  2541. describe: '批量删除协同工作事项',
  2542. type: '1',
  2543. },
  2544. {
  2545. action: 'openapi:open_api:delete',
  2546. describe: '删除接口管理',
  2547. type: '1',
  2548. },
  2549. {
  2550. action: 'openapi:open_api:deleteBatch',
  2551. describe: '批量删除接口管理',
  2552. type: '1',
  2553. },
  2554. {
  2555. action: 'openapi:open_api:exportXls',
  2556. describe: '导出excel_接口管理',
  2557. type: '1',
  2558. },
  2559. {
  2560. action: 'eoa:duty:schedule:swap:delete',
  2561. describe: 'OA值班 - 换班申请-通过id删除',
  2562. type: '1',
  2563. },
  2564. {
  2565. action: 'openapi:open_api:importExcel',
  2566. describe: '导入excel_接口管理',
  2567. type: '1',
  2568. },
  2569. {
  2570. action: 'eoa:duty:schedule:swap:deleteBatch',
  2571. describe: 'OA值班 - 换班申请-批量删除',
  2572. type: '1',
  2573. },
  2574. {
  2575. action: 'eoa:duty:schedule:swap:admin',
  2576. describe: 'OA值班 - 换班申请-管理员换班',
  2577. type: '1',
  2578. },
  2579. {
  2580. action: 'openapi:open_api_auth:delete',
  2581. describe: '删除授权管理',
  2582. type: '1',
  2583. },
  2584. {
  2585. action: 'openapi:open_api_auth:deleteBatch',
  2586. describe: '批量删除授权管理',
  2587. type: '1',
  2588. },
  2589. {
  2590. action: 'openapi:open_api_auth:exportXls',
  2591. describe: '导出excel_授权管理',
  2592. type: '1',
  2593. },
  2594. {
  2595. action: 'system:user:queryUserRole',
  2596. describe: '通过ID查询用户拥有的角色',
  2597. type: '1',
  2598. },
  2599. {
  2600. action: 'openapi:open_api_auth:importExcel',
  2601. describe: '导入excel_授权管理',
  2602. type: '1',
  2603. },
  2604. {
  2605. action: 'openapi:open_api:add',
  2606. describe: '添加接口管理',
  2607. type: '1',
  2608. },
  2609. {
  2610. action: 'metting:eoa_metting_log_template:add',
  2611. describe: '添加会议纪要模版管理',
  2612. type: '1',
  2613. },
  2614. {
  2615. action: 'openapi:open_api:edit',
  2616. describe: '编辑接口管理',
  2617. type: '1',
  2618. },
  2619. {
  2620. action: 'demo.dbarray',
  2621. describe: '禁用',
  2622. type: '2',
  2623. },
  2624. {
  2625. action: 'act:des:process:delete',
  2626. describe: '删除流程设计',
  2627. type: '1',
  2628. },
  2629. {
  2630. action: 'act:des:process:upload',
  2631. describe: '流程设计上传',
  2632. type: '1',
  2633. },
  2634. {
  2635. action: 'act:des:process:deploy',
  2636. describe: '流程设计发布',
  2637. type: '1',
  2638. },
  2639. {
  2640. action: 'act:listener:edit',
  2641. describe: '编辑监听',
  2642. type: '1',
  2643. },
  2644. {
  2645. action: 'act:listener:delete',
  2646. describe: '删除监听',
  2647. type: '1',
  2648. },
  2649. {
  2650. action: 'act:listener:deleteBatch',
  2651. describe: '批量删除监听',
  2652. type: '1',
  2653. },
  2654. {
  2655. action: 'act:expression:edit',
  2656. describe: '编辑表达式',
  2657. type: '1',
  2658. },
  2659. {
  2660. action: 'online:form:generateCode',
  2661. describe: '代码生成',
  2662. type: '1',
  2663. },
  2664. {
  2665. action: 'act:expression:add',
  2666. describe: '添加表达式',
  2667. type: '1',
  2668. },
  2669. {
  2670. action: 'desform:list:deleteBatch',
  2671. describe: '批量删除',
  2672. type: '1',
  2673. },
  2674. {
  2675. action: 'act:expression:delete',
  2676. describe: '删除表达式',
  2677. type: '1',
  2678. },
  2679. {
  2680. action: 'act:expression:deleteBatch',
  2681. describe: '批量删除表达式',
  2682. type: '1',
  2683. },
  2684. {
  2685. action: 'act:des:process:save',
  2686. describe: '流程设计保存',
  2687. type: '1',
  2688. },
  2689. {
  2690. action: 'act:des:process:node:add',
  2691. describe: '添加流程节点',
  2692. type: '1',
  2693. },
  2694. {
  2695. action: 'act:des:process:deleteBatch',
  2696. describe: '批量删除流程设计',
  2697. type: '1',
  2698. },
  2699. {
  2700. action: 'act:des:process:node:edit',
  2701. describe: '编辑流程节点',
  2702. type: '1',
  2703. },
  2704. {
  2705. action: 'onl:drag:comp:add',
  2706. describe: '添加组件',
  2707. type: '1',
  2708. },
  2709. {
  2710. action: 'act:des:process:node:delete',
  2711. describe: '删除流程节点',
  2712. type: '1',
  2713. },
  2714. {
  2715. action: 'onl:drag:comp:deleteBatch',
  2716. describe: '批量删除组件',
  2717. type: '1',
  2718. },
  2719. {
  2720. action: 'act:des:process:node:deleteBatch',
  2721. describe: '批量删除流程节点',
  2722. type: '1',
  2723. },
  2724. {
  2725. action: 'bigscreen:remove',
  2726. describe: '逻辑删除大屏',
  2727. type: '1',
  2728. },
  2729. {
  2730. action: 'act:des:process_form_config:edit',
  2731. describe: '编辑_流程表单配置',
  2732. type: '1',
  2733. },
  2734. {
  2735. action: 'bigscreen:delete',
  2736. describe: '真实删除大屏',
  2737. type: '1',
  2738. },
  2739. {
  2740. action: 'act:des:process_form_config:add',
  2741. describe: '添加_流程表单配置',
  2742. type: '1',
  2743. },
  2744. {
  2745. action: 'bigscreen:vip:executeUrl',
  2746. describe: '代理接口',
  2747. type: '1',
  2748. },
  2749. {
  2750. action: 'act:des:process_form_config:delete',
  2751. describe: '删除_流程表单配置',
  2752. type: '1',
  2753. },
  2754. {
  2755. action: 'bigscreen:map:delete',
  2756. describe: '删除地图',
  2757. type: '1',
  2758. },
  2759. {
  2760. action: 'act:des:process_form_config:deleteBatch',
  2761. describe: '批量删除_流程表单配置',
  2762. type: '1',
  2763. },
  2764. {
  2765. action: 'bigscreen:map:deleteBatch',
  2766. describe: '批量删除地图',
  2767. type: '1',
  2768. },
  2769. {
  2770. action: 'online:form:delete',
  2771. describe: '删除Online表单',
  2772. type: '1',
  2773. },
  2774. {
  2775. action: 'bigscreen:category:addOrUpdate',
  2776. describe: '变更大屏分类',
  2777. type: '1',
  2778. },
  2779. {
  2780. action: 'online:form:remove',
  2781. describe: '移除Online表单',
  2782. type: '1',
  2783. },
  2784. {
  2785. action: 'bigscreen:category:delete',
  2786. describe: '删除大屏分类',
  2787. type: '1',
  2788. },
  2789. {
  2790. action: 'onl:drag:page:delete',
  2791. describe: '删除仪表盘',
  2792. type: '1',
  2793. },
  2794. {
  2795. action: 'bigscreen:category:importExcel',
  2796. describe: '导入大屏分类',
  2797. type: '1',
  2798. },
  2799. {
  2800. action: 'onl:drag:comp:delete',
  2801. describe: '删除组件',
  2802. type: '1',
  2803. },
  2804. {
  2805. action: 'bigscreen:datasource:saveOrUpate',
  2806. describe: '变更大屏数据源',
  2807. type: '1',
  2808. },
  2809. {
  2810. action: 'onl:drag:comp:edit',
  2811. describe: '修改组件',
  2812. type: '1',
  2813. },
  2814. {
  2815. action: 'bigscreen:datasource:delete',
  2816. describe: '删除大屏数据源',
  2817. type: '1',
  2818. },
  2819. {
  2820. action: 'system:depart:deleteBatch',
  2821. describe: '部门批量删除',
  2822. type: '1',
  2823. },
  2824. {
  2825. action: 'bigscreen:datasource:clear',
  2826. describe: '清空大屏数据源缓存',
  2827. type: '1',
  2828. },
  2829. {
  2830. action: 'system:depart:importExcel',
  2831. describe: '部门导入',
  2832. type: '1',
  2833. },
  2834. {
  2835. action: 'system:depart:role:add',
  2836. describe: '部门角色添加',
  2837. type: '1',
  2838. },
  2839. {
  2840. action: 'drag:template:edit',
  2841. describe: '模板设置',
  2842. type: '2',
  2843. },
  2844. {
  2845. action: 'system:depart:role:edit',
  2846. describe: '部门角色编辑',
  2847. type: '1',
  2848. },
  2849. {
  2850. action: 'system:depart:role:delete',
  2851. describe: '部门角色删除',
  2852. type: '1',
  2853. },
  2854. {
  2855. action: 'system:depart:role:deleteBatch',
  2856. describe: '部门角色批量删除',
  2857. type: '1',
  2858. },
  2859. {
  2860. action: 'system:depart:role:userAdd',
  2861. describe: '部门角色用户授权',
  2862. type: '1',
  2863. },
  2864. {
  2865. action: 'system:dict:add',
  2866. describe: '字典新增',
  2867. type: '1',
  2868. },
  2869. {
  2870. action: 'system:datasource:list',
  2871. describe: '多数据源分页列表',
  2872. type: '1',
  2873. },
  2874. {
  2875. action: 'system:dict:edit',
  2876. describe: '字典编辑',
  2877. type: '1',
  2878. },
  2879. {
  2880. action: 'system:depart:add',
  2881. describe: '部门添加',
  2882. type: '1',
  2883. },
  2884. {
  2885. action: 'system:getway:delete',
  2886. describe: '路由网关删除',
  2887. type: '1',
  2888. },
  2889. {
  2890. action: 'system:depart:edit',
  2891. describe: '部门编辑',
  2892. type: '1',
  2893. },
  2894. {
  2895. action: 'system:permission:saveDepart',
  2896. describe: '保存部门授权',
  2897. type: '1',
  2898. },
  2899. {
  2900. action: 'system:depart:delete',
  2901. describe: '部门删除',
  2902. type: '1',
  2903. },
  2904. {
  2905. action: 'system:role:list',
  2906. describe: '查询角色列表数据',
  2907. type: '1',
  2908. },
  2909. {
  2910. action: 'system:user:listAll',
  2911. describe: '查询全部用户',
  2912. type: '1',
  2913. },
  2914. {
  2915. action: 'desform:list:delete',
  2916. describe: '表单删除',
  2917. type: '1',
  2918. },
  2919. {
  2920. action: 'system:dict:item:add',
  2921. describe: '字典子项新增',
  2922. type: '1',
  2923. },
  2924. {
  2925. action: 'system:user:queryById',
  2926. describe: '通过ID查询用户信息接口',
  2927. type: '1',
  2928. },
  2929. {
  2930. action: 'system:quartzJob:add',
  2931. describe: '添加定时任务',
  2932. type: '1',
  2933. },
  2934. {
  2935. action: 'system:tenant:invitation:user',
  2936. describe: '邀请用户',
  2937. type: '1',
  2938. },
  2939. {
  2940. action: 'system:quartzJob:edit',
  2941. describe: '更新定时任务',
  2942. type: '1',
  2943. },
  2944. {
  2945. action: 'system:tenant:user:list',
  2946. describe: '查询租户下用户',
  2947. type: '1',
  2948. },
  2949. {
  2950. action: 'system:quartzJob:delete',
  2951. describe: '删除定时任务',
  2952. type: '1',
  2953. },
  2954. {
  2955. action: 'system:tenant:leave',
  2956. describe: '租户请离',
  2957. type: '1',
  2958. },
  2959. {
  2960. action: 'system:quartzJob:deleteBatch',
  2961. describe: '批量删除定时任务',
  2962. type: '1',
  2963. },
  2964. {
  2965. action: 'system:user:list',
  2966. describe: '用户列表查询',
  2967. type: '1',
  2968. },
  2969. {
  2970. action: 'system:quartzJob:pause',
  2971. describe: '停止定时任务',
  2972. type: '1',
  2973. },
  2974. {
  2975. action: 'system:tenant:packList',
  2976. describe: '产品包分页列表查询',
  2977. type: '1',
  2978. },
  2979. {
  2980. action: 'system:quartzJob:resume',
  2981. describe: '启动定时任务',
  2982. type: '1',
  2983. },
  2984. {
  2985. action: 'system:tenant:tenantPageList',
  2986. describe: '分页获取租户用户数据',
  2987. type: '1',
  2988. },
  2989. {
  2990. action: 'system:quartzJob:execute',
  2991. describe: '立即执行定时任务',
  2992. type: '1',
  2993. },
  2994. {
  2995. action: 'system:tenant:getTenantListByUserId',
  2996. describe: '通过用户id获取租户列表',
  2997. type: '1',
  2998. },
  2999. {
  3000. action: 'system:ossFile:upload',
  3001. describe: '文件oos上传',
  3002. type: '1',
  3003. },
  3004. {
  3005. action: 'system:tenant:updateUserTenantStatus',
  3006. describe: '更新用户租户关系状态',
  3007. type: '1',
  3008. },
  3009. {
  3010. action: 'metting:eoa_metting_log:edit',
  3011. describe: '编辑会议记录',
  3012. type: '1',
  3013. },
  3014. {
  3015. action: 'eoa:car:add',
  3016. describe: '添加车辆档案',
  3017. type: '1',
  3018. },
  3019. {
  3020. action: 'system:tenant:list',
  3021. describe: '租户列表',
  3022. type: '1',
  3023. },
  3024. {
  3025. action: 'metting:eoa_metting_log:delete',
  3026. describe: '删除会议记录',
  3027. type: '1',
  3028. },
  3029. {
  3030. action: 'eoa:car:edit',
  3031. describe: '编辑车辆档案',
  3032. type: '1',
  3033. },
  3034. {
  3035. action: 'system:tenant:cancelTenant',
  3036. describe: '注销租户',
  3037. type: '1',
  3038. },
  3039. {
  3040. action: 'system:tenant:queryList',
  3041. describe: '根据ids查询租户',
  3042. type: '1',
  3043. },
  3044. {
  3045. action: 'metting:eoa_metting_log:deleteBatch',
  3046. describe: '批量删除会议记录',
  3047. type: '1',
  3048. },
  3049. {
  3050. action: 'eoa:car:delete',
  3051. describe: '删除车辆档案',
  3052. type: '1',
  3053. },
  3054. {
  3055. action: 'system:tenant:edit',
  3056. describe: '编辑租户',
  3057. type: '1',
  3058. },
  3059. {
  3060. action: 'drag:analysis:sql',
  3061. describe: '数据集解析SQL',
  3062. type: '1',
  3063. },
  3064. {
  3065. action: 'metting:eoa_metting_log:exportXls',
  3066. describe: '导出excel_会议记录',
  3067. type: '1',
  3068. },
  3069. {
  3070. action: 'eoa:car:deleteBatch',
  3071. describe: '批量删除车辆档案',
  3072. type: '1',
  3073. },
  3074. {
  3075. action: 'system:tenant:recycleBinPageList',
  3076. describe: '获取租户删除的列表',
  3077. type: '1',
  3078. },
  3079. {
  3080. action: 'drag:datasource:saveOrUpate',
  3081. describe: '数据源添加',
  3082. type: '1',
  3083. },
  3084. {
  3085. action: 'metting:eoa_metting_log:importExcel',
  3086. describe: '导入excel_会议记录',
  3087. type: '1',
  3088. },
  3089. {
  3090. action: 'system:tenant:revertTenantLogic',
  3091. describe: '租户还原',
  3092. type: '1',
  3093. },
  3094. {
  3095. action: 'metting:eoa_metting_log_template:edit',
  3096. describe: '编辑会议纪要模版管理',
  3097. type: '1',
  3098. },
  3099. {
  3100. action: 'drag:datasource:delete',
  3101. describe: '数据源删除',
  3102. type: '1',
  3103. },
  3104. {
  3105. action: 'metting:eoa_metting_log_template:delete',
  3106. describe: '删除会议纪要模版管理',
  3107. type: '1',
  3108. },
  3109. {
  3110. action: 'online:form:syncDb',
  3111. describe: '同步数据库',
  3112. type: '1',
  3113. },
  3114. {
  3115. action: 'wordtpl:template:add',
  3116. describe: '添加word模版管理',
  3117. type: '1',
  3118. },
  3119. {
  3120. action: 'system:tenant:add',
  3121. describe: '添加租户',
  3122. type: '1',
  3123. },
  3124. {
  3125. action: 'metting:eoa_metting_log_template:deleteBatch',
  3126. describe: '批量删除会议纪要模版管理',
  3127. type: '1',
  3128. },
  3129. {
  3130. action: 'online:form:add',
  3131. describe: '添加Online表单',
  3132. type: '1',
  3133. },
  3134. {
  3135. action: 'wordtpl:template:edit',
  3136. describe: '编辑word模版管理',
  3137. type: '1',
  3138. },
  3139. {
  3140. action: 'metting:eoa_metting_log_template:exportXls',
  3141. describe: '导出excel_会议纪要模版管理',
  3142. type: '1',
  3143. },
  3144. {
  3145. action: 'online:form:edit',
  3146. describe: '修改Online表单',
  3147. type: '1',
  3148. },
  3149. {
  3150. action: 'wordtpl:template:delete',
  3151. describe: '删除word模版管理',
  3152. type: '1',
  3153. },
  3154. {
  3155. action: 'system:log:list',
  3156. describe: '日志列表',
  3157. type: '1',
  3158. },
  3159. {
  3160. action: 'metting:eoa_metting_log_template:importExcel',
  3161. describe: '导入excel_会议纪要模版管理',
  3162. type: '1',
  3163. },
  3164. {
  3165. action: 'online:report:getDictList',
  3166. describe: '获取字典列表',
  3167. type: '1',
  3168. },
  3169. {
  3170. action: 'wordtpl:template:deleteBatch',
  3171. describe: '批量删除word模版管理',
  3172. type: '1',
  3173. },
  3174. {
  3175. action: 'system:log:delete',
  3176. describe: '日志删除',
  3177. type: '1',
  3178. },
  3179. {
  3180. action: 'online:report:parseSql',
  3181. describe: 'SQL解析',
  3182. type: '1',
  3183. },
  3184. {
  3185. action: 'wordtpl:template:design',
  3186. describe: '设计word模版',
  3187. type: '1',
  3188. },
  3189. {
  3190. action: 'system:log:deleteBatch',
  3191. describe: '日志批量删除',
  3192. type: '1',
  3193. },
  3194. {
  3195. action: 'metting:eoa_metting_log:add',
  3196. describe: '添加会议记录',
  3197. type: '1',
  3198. },
  3199. {
  3200. action: 'online:report:add',
  3201. describe: '添加Online报表',
  3202. type: '1',
  3203. },
  3204. ],
  3205. codeList: [
  3206. 'eoa:carDriver:exportXls',
  3207. 'eoa:car:accident:delete',
  3208. 'online:report:edit',
  3209. 'eoa:carDriver:importExcel',
  3210. 'eoa:car:accident:deleteBatch',
  3211. 'drag:datasource:testConnection',
  3212. 'online:report:testConnection',
  3213. 'eoa:car:accident:exportXls',
  3214. 'bigscreen:datasource:testConnection',
  3215. 'eoa:car:company:add',
  3216. 'eoa:car:accident:importExcel',
  3217. 'bigscreen:analysis:sql',
  3218. 'system:tableWhite:list',
  3219. 'eoa:car:company:edit',
  3220. 'demo:field:show',
  3221. 'eoa:car:exportXls',
  3222. 'system:tableWhite:add',
  3223. 'eoa:car:company:delete',
  3224. 'demo:btn:show',
  3225. 'eoa:car:importExcel',
  3226. 'system:tableWhite:edit',
  3227. 'eoa:car:company:deleteBatch',
  3228. 'system:tableWhite:delete',
  3229. 'eoa:car:company:exportXls',
  3230. 'eoa:carDriver:add',
  3231. 'system:tableWhite:deleteBatch',
  3232. 'eoa:car:company:importExcel',
  3233. 'eoa:carDriver:edit',
  3234. 'system:tableWhite:queryById',
  3235. 'system:user:queryUserRole',
  3236. 'eoa:carDriver:delete',
  3237. 'system:gateway:deleteRecycleBin',
  3238. 'eoa:car:accident:add',
  3239. 'system:role:queryallNoByTenant',
  3240. 'eoa:carDriver:deleteBatch',
  3241. 'system:gateway:copyRoute',
  3242. 'eoa:car:accident:edit',
  3243. 'eoa:car:annual:inspection:exportXls',
  3244. 'system:gateway:putRecycleBin',
  3245. 'eoa:car:oil:add',
  3246. 'eoa:car:annual:inspection:importExcel',
  3247. 'sys:order_apply:sort',
  3248. 'eoa:car:oil:edit',
  3249. 'eoa:car:oil:delete',
  3250. 'onl:drag:category:delete',
  3251. 'eoa:car:oil:deleteBatch',
  3252. 'onl:drag:clear:recovery',
  3253. 'eoa:car:oil:exportXls',
  3254. 'eoa:car:maintenance:add',
  3255. 'eoa:car:oil:importExcel',
  3256. 'drag:design:getTotalData',
  3257. 'eoa:car:maintenance:edit',
  3258. 'system:tenant:syncDefaultPack',
  3259. 'eoa:car:maintenance:delete',
  3260. 'eoa:car:annual:inspection:add',
  3261. 'eoa:car:maintenance:deleteBatch',
  3262. 'eoa:car:annual:inspection:edit',
  3263. 'eoa:car:maintenance:exportXls',
  3264. 'eoa:car:annual:inspection:delete',
  3265. 'eoa:car:maintenance:importExcel',
  3266. 'airag:app:edit',
  3267. 'eoa:car:annual:inspection:deleteBatch',
  3268. 'airag:app:delete',
  3269. 'airag:model:delete',
  3270. 'airag:knowledge:add',
  3271. 'airag:flow:add',
  3272. 'airag:knowledge:edit',
  3273. 'airag:flow:edit',
  3274. 'airag:knowledge:rebuild',
  3275. 'airag:flow:designSave',
  3276. 'airag:knowledge:delete',
  3277. 'airag:flow:delete',
  3278. 'airag:knowledge:doc:edit',
  3279. 'airag:knowledge:doc:zip',
  3280. 'airag:knowledge:doc:rebuild',
  3281. 'airag:knowledge:doc:deleteBatch',
  3282. 'airag:knowledge:doc:deleteAll',
  3283. 'airag:model:add',
  3284. 'airag:model:edit',
  3285. 'app:edit:version',
  3286. 'portal:system:template:edit',
  3287. 'eoa:car:scrap',
  3288. 'oa:sign:permission:manager',
  3289. 'eoa:duty:member:add',
  3290. 'eoa:duty:member:edit',
  3291. 'eoa:duty:member:delete',
  3292. 'eoa:duty:member:deleteBatch',
  3293. 'eoa:duty:member:exportXls',
  3294. 'eoa:duty:schedule:generate',
  3295. 'eoa:duty:member:importExcel',
  3296. 'eoa:duty:schedule:edit',
  3297. 'eoa:duty:date:add',
  3298. 'eoa:duty:schedule:delete',
  3299. 'eoa:duty:date:edit',
  3300. 'eoa:duty:schedule:deleteBatch',
  3301. 'eoa:duty:date:delete',
  3302. 'eoa:duty:date:deleteBatch',
  3303. 'eoa:duty:date:exportXls',
  3304. 'eoa:duty:date:importExcel',
  3305. 'eoa:collaboration:publish',
  3306. 'eoa:collaboration:delete:force',
  3307. 'openapi:open_api:delete',
  3308. 'openapi:open_api:deleteBatch',
  3309. 'openapi:open_api:exportXls',
  3310. 'eoa:duty:schedule:swap:delete',
  3311. 'openapi:open_api:importExcel',
  3312. 'eoa:duty:schedule:swap:deleteBatch',
  3313. 'eoa:duty:schedule:swap:admin',
  3314. 'openapi:open_api_auth:delete',
  3315. 'openapi:open_api_auth:deleteBatch',
  3316. 'openapi:open_api_auth:exportXls',
  3317. 'system:user:queryUserRole',
  3318. 'openapi:open_api_auth:importExcel',
  3319. 'openapi:open_api:add',
  3320. 'metting:eoa_metting_log_template:add',
  3321. 'openapi:open_api:edit',
  3322. 'demo.dbarray',
  3323. 'act:des:process:delete',
  3324. 'act:des:process:upload',
  3325. 'act:des:process:deploy',
  3326. 'act:listener:edit',
  3327. 'act:listener:delete',
  3328. 'act:listener:deleteBatch',
  3329. 'act:expression:edit',
  3330. 'online:form:generateCode',
  3331. 'act:expression:add',
  3332. 'desform:list:deleteBatch',
  3333. 'act:expression:delete',
  3334. 'act:expression:deleteBatch',
  3335. 'act:des:process:save',
  3336. 'act:des:process:node:add',
  3337. 'act:des:process:deleteBatch',
  3338. 'act:des:process:node:edit',
  3339. 'onl:drag:comp:add',
  3340. 'act:des:process:node:delete',
  3341. 'onl:drag:comp:deleteBatch',
  3342. 'act:des:process:node:deleteBatch',
  3343. 'bigscreen:remove',
  3344. 'act:des:process_form_config:edit',
  3345. 'bigscreen:delete',
  3346. 'act:des:process_form_config:add',
  3347. 'bigscreen:vip:executeUrl',
  3348. 'act:des:process_form_config:delete',
  3349. 'bigscreen:map:delete',
  3350. 'act:des:process_form_config:deleteBatch',
  3351. 'bigscreen:map:deleteBatch',
  3352. 'online:form:delete',
  3353. 'bigscreen:category:addOrUpdate',
  3354. 'online:form:remove',
  3355. 'bigscreen:category:delete',
  3356. 'onl:drag:page:delete',
  3357. 'bigscreen:category:importExcel',
  3358. 'onl:drag:comp:delete',
  3359. 'bigscreen:datasource:saveOrUpate',
  3360. 'onl:drag:comp:edit',
  3361. 'bigscreen:datasource:delete',
  3362. 'system:depart:deleteBatch',
  3363. 'bigscreen:datasource:clear',
  3364. 'system:depart:importExcel',
  3365. 'system:depart:role:add',
  3366. 'drag:template:edit',
  3367. 'system:depart:role:edit',
  3368. 'system:depart:role:delete',
  3369. 'system:depart:role:deleteBatch',
  3370. 'system:depart:role:userAdd',
  3371. 'system:dict:add',
  3372. 'system:datasource:list',
  3373. 'system:dict:edit',
  3374. 'system:depart:add',
  3375. 'system:getway:delete',
  3376. 'system:depart:edit',
  3377. 'system:permission:saveDepart',
  3378. 'system:depart:delete',
  3379. 'system:role:list',
  3380. 'system:user:listAll',
  3381. 'desform:list:delete',
  3382. 'system:dict:item:add',
  3383. 'system:user:queryById',
  3384. 'system:quartzJob:add',
  3385. 'system:tenant:invitation:user',
  3386. 'system:quartzJob:edit',
  3387. 'system:tenant:user:list',
  3388. 'system:quartzJob:delete',
  3389. 'system:tenant:leave',
  3390. 'system:quartzJob:deleteBatch',
  3391. 'system:user:list',
  3392. 'system:quartzJob:pause',
  3393. 'system:tenant:packList',
  3394. 'system:quartzJob:resume',
  3395. 'system:tenant:tenantPageList',
  3396. 'system:quartzJob:execute',
  3397. 'system:tenant:getTenantListByUserId',
  3398. 'system:ossFile:upload',
  3399. 'system:tenant:updateUserTenantStatus',
  3400. 'metting:eoa_metting_log:edit',
  3401. 'eoa:car:add',
  3402. 'system:tenant:list',
  3403. 'metting:eoa_metting_log:delete',
  3404. 'eoa:car:edit',
  3405. 'system:tenant:cancelTenant',
  3406. 'system:tenant:queryList',
  3407. 'metting:eoa_metting_log:deleteBatch',
  3408. 'eoa:car:delete',
  3409. 'system:tenant:edit',
  3410. 'drag:analysis:sql',
  3411. 'metting:eoa_metting_log:exportXls',
  3412. 'eoa:car:deleteBatch',
  3413. 'system:tenant:recycleBinPageList',
  3414. 'drag:datasource:saveOrUpate',
  3415. 'metting:eoa_metting_log:importExcel',
  3416. 'system:tenant:revertTenantLogic',
  3417. 'metting:eoa_metting_log_template:edit',
  3418. 'drag:datasource:delete',
  3419. 'metting:eoa_metting_log_template:delete',
  3420. 'online:form:syncDb',
  3421. 'wordtpl:template:add',
  3422. 'system:tenant:add',
  3423. 'metting:eoa_metting_log_template:deleteBatch',
  3424. 'online:form:add',
  3425. 'wordtpl:template:edit',
  3426. 'metting:eoa_metting_log_template:exportXls',
  3427. 'online:form:edit',
  3428. 'wordtpl:template:delete',
  3429. 'system:log:list',
  3430. 'metting:eoa_metting_log_template:importExcel',
  3431. 'online:report:getDictList',
  3432. 'wordtpl:template:deleteBatch',
  3433. 'system:log:delete',
  3434. 'online:report:parseSql',
  3435. 'wordtpl:template:design',
  3436. 'system:log:deleteBatch',
  3437. 'metting:eoa_metting_log:add',
  3438. 'online:report:add',
  3439. ],
  3440. menu: [
  3441. {
  3442. redirect: null,
  3443. path: '/dashboard',
  3444. component: 'layouts/default/index',
  3445. route: '1',
  3446. children: [
  3447. {
  3448. path: '/dashboard/sealedGoafIndex',
  3449. component: 'dashboard/SealedGoaf',
  3450. route: '1',
  3451. meta: {
  3452. keepAlive: true,
  3453. internalOrExternal: false,
  3454. icon: 'ant-design:windows-outlined',
  3455. componentName: 'sealedGoafIndex',
  3456. title: '采空区首页',
  3457. },
  3458. name: 'dashboard-sealedGoafIndex',
  3459. id: '9502685863ab87f0ad1134142788a385',
  3460. },
  3461. {
  3462. path: '/dashboard/analysis',
  3463. component: 'dashboard/Analysis',
  3464. route: '1',
  3465. meta: {
  3466. keepAlive: true,
  3467. internalOrExternal: false,
  3468. icon: 'ant-design:windows-outlined',
  3469. componentName: 'Analysis',
  3470. title: '首页',
  3471. },
  3472. name: 'dashboard-analysis',
  3473. id: '9502685863ab87f0ad1134142788a385',
  3474. },
  3475. {
  3476. path: '/portal-view/system',
  3477. component: '1',
  3478. route: '0',
  3479. meta: {
  3480. keepAlive: false,
  3481. internalOrExternal: false,
  3482. icon: 'ant-design:bank-filled',
  3483. componentName: '1',
  3484. title: '主门户',
  3485. },
  3486. name: 'portal-view-system',
  3487. id: '1466108176814826985',
  3488. },
  3489. {
  3490. path: '/portal-view/personal',
  3491. component: '1',
  3492. route: '0',
  3493. meta: {
  3494. keepAlive: false,
  3495. internalOrExternal: false,
  3496. icon: 'ant-design:appstore-twotone',
  3497. componentName: '1',
  3498. title: '个人工作台',
  3499. },
  3500. name: 'portal-view-personal',
  3501. id: '1527108176814826584',
  3502. },
  3503. {
  3504. path: '/dashboard/workbench',
  3505. component: 'dashboard/workbench/index',
  3506. route: '1',
  3507. meta: {
  3508. keepAlive: false,
  3509. internalOrExternal: false,
  3510. icon: 'ant-design:pic-right-outlined',
  3511. componentName: 'index',
  3512. title: '工作台',
  3513. },
  3514. name: 'dashboard-workbench',
  3515. id: '1438108176814825473',
  3516. },
  3517. ],
  3518. meta: {
  3519. keepAlive: false,
  3520. internalOrExternal: false,
  3521. icon: 'ant-design:home-outlined',
  3522. componentName: 'index',
  3523. title: '主页',
  3524. },
  3525. name: 'dashboard',
  3526. id: '1438108176273760258',
  3527. },
  3528. {
  3529. redirect: null,
  3530. path: '/basicInfo',
  3531. component: 'layouts/default/index',
  3532. route: '1',
  3533. children: [
  3534. {
  3535. path: '/basicInfo/minesInfo',
  3536. component: 'dashboard/basicInfo/minesInfo',
  3537. route: '1',
  3538. meta: {
  3539. keepAlive: true,
  3540. internalOrExternal: false,
  3541. icon: 'ant-design:windows-outlined',
  3542. componentName: 'index',
  3543. title: '矿山信息',
  3544. },
  3545. name: 'basicInfo-minesInfoIndex',
  3546. id: '9502685863ab87f0ad1134142788a377',
  3547. },
  3548. ],
  3549. meta: {
  3550. keepAlive: false,
  3551. internalOrExternal: false,
  3552. icon: 'ant-design:home-outlined',
  3553. componentName: 'index',
  3554. title: '矿山基础信息',
  3555. },
  3556. name: 'basicInfo',
  3557. id: '1439398677984878593',
  3558. },
  3559. {
  3560. redirect: null,
  3561. path: '/isystem',
  3562. component: 'layouts/default/index',
  3563. route: '1',
  3564. children: [
  3565. {
  3566. path: '/system/menu',
  3567. component: 'system/menu/index',
  3568. route: '1',
  3569. meta: {
  3570. keepAlive: false,
  3571. internalOrExternal: false,
  3572. icon: 'ant-design:menu-fold-outlined',
  3573. componentName: 'index',
  3574. title: '系统菜单',
  3575. },
  3576. name: 'system-menu',
  3577. id: '1170592628746878978',
  3578. },
  3579. {
  3580. path: '/system/user',
  3581. component: 'system/user/index',
  3582. route: '1',
  3583. meta: {
  3584. keepAlive: true,
  3585. internalOrExternal: false,
  3586. icon: 'ant-design:user',
  3587. componentName: 'index',
  3588. title: '系统用户',
  3589. },
  3590. name: 'system-user',
  3591. id: '3f915b2769fc80648e92d04e84ca059d',
  3592. },
  3593. {
  3594. path: '/system/homeConfig',
  3595. component: 'system/homeConfig/index',
  3596. route: '1',
  3597. meta: {
  3598. keepAlive: false,
  3599. internalOrExternal: false,
  3600. icon: 'ant-design:appstore-outlined',
  3601. componentName: 'index',
  3602. title: '首页配置',
  3603. },
  3604. name: 'system-homeConfig',
  3605. id: '1939572818833301506',
  3606. },
  3607. {
  3608. path: '/system/role',
  3609. component: 'system/role/index',
  3610. route: '1',
  3611. meta: {
  3612. keepAlive: true,
  3613. internalOrExternal: false,
  3614. icon: 'ant-design:solution',
  3615. componentName: 'index',
  3616. title: '系统角色',
  3617. },
  3618. name: 'system-role',
  3619. id: '190c2b43bec6a5f7a4194a85db67d96a',
  3620. },
  3621. {
  3622. path: '/system/dict',
  3623. component: 'system/dict/index',
  3624. route: '1',
  3625. meta: {
  3626. keepAlive: false,
  3627. internalOrExternal: false,
  3628. icon: 'ant-design:hdd-twotone',
  3629. componentName: 'index',
  3630. title: '数据字典',
  3631. },
  3632. name: 'system-dict',
  3633. id: '1438782641187074050',
  3634. },
  3635. {
  3636. path: '/system/depart',
  3637. component: 'system/depart/index',
  3638. route: '1',
  3639. meta: {
  3640. keepAlive: false,
  3641. internalOrExternal: false,
  3642. icon: 'ant-design:team',
  3643. componentName: 'index',
  3644. title: '部门管理',
  3645. },
  3646. name: 'system-depart',
  3647. id: '45c966826eeff4c99b8f8ebfe74511fc',
  3648. },
  3649. {
  3650. path: '/system/tenant',
  3651. component: 'system/tenant/index',
  3652. route: '1',
  3653. meta: {
  3654. keepAlive: false,
  3655. internalOrExternal: false,
  3656. icon: 'ant-design:appstore-twotone',
  3657. componentName: 'index',
  3658. title: '多租户管理',
  3659. },
  3660. name: 'system-tenant',
  3661. id: '1280350452934307841',
  3662. },
  3663. {
  3664. path: '/tenant/TenantDefaultPack',
  3665. component: 'system/tenant/pack/TenantDefaultPackList',
  3666. route: '1',
  3667. meta: {
  3668. keepAlive: false,
  3669. internalOrExternal: false,
  3670. icon: 'ant-design:sliders-outlined',
  3671. componentName: 'TenantDefaultPackList',
  3672. title: '租户默认套餐',
  3673. },
  3674. name: 'tenant-TenantDefaultPack',
  3675. id: '1668174661456171010',
  3676. },
  3677. {
  3678. path: '/system/position',
  3679. component: 'system/position/index',
  3680. route: '1',
  3681. meta: {
  3682. keepAlive: false,
  3683. internalOrExternal: false,
  3684. icon: 'ant-design:database-filled',
  3685. componentName: 'index',
  3686. title: '职务级别',
  3687. },
  3688. name: 'system-position',
  3689. id: '1438469604861403137',
  3690. },
  3691. {
  3692. path: '/system/category',
  3693. component: 'system/category/index',
  3694. route: '1',
  3695. meta: {
  3696. keepAlive: false,
  3697. internalOrExternal: false,
  3698. icon: 'ant-design:group-outlined',
  3699. componentName: 'index',
  3700. title: '分类字典',
  3701. },
  3702. name: 'system-category',
  3703. id: '1438782530717495298',
  3704. },
  3705. {
  3706. path: '/system/notice',
  3707. component: 'system/notice/index',
  3708. route: '1',
  3709. meta: {
  3710. keepAlive: false,
  3711. internalOrExternal: false,
  3712. icon: 'ant-design:bell-outlined',
  3713. componentName: 'index',
  3714. title: '通知公告',
  3715. },
  3716. name: 'system-notice',
  3717. id: '1438782851980210178',
  3718. },
  3719. {
  3720. path: '/system/depart-user',
  3721. component: 'system/departUser/index',
  3722. route: '1',
  3723. meta: {
  3724. keepAlive: false,
  3725. internalOrExternal: false,
  3726. icon: 'ant-design:home-outlined',
  3727. componentName: 'index',
  3728. title: '我的部门',
  3729. },
  3730. name: 'system-depart-user',
  3731. id: '5c2f42277948043026b7a14692456828',
  3732. },
  3733. {
  3734. path: '/system/usersetting',
  3735. component: 'system/usersetting/UserSetting',
  3736. route: '1',
  3737. hidden: true,
  3738. meta: {
  3739. hideMenu: true,
  3740. keepAlive: false,
  3741. internalOrExternal: false,
  3742. icon: 'ant-design:setting-twotone',
  3743. componentName: 'UserSetting',
  3744. title: '用户设置',
  3745. },
  3746. name: 'system-usersetting',
  3747. id: '1596141938193747970',
  3748. },
  3749. {
  3750. path: '/third/app',
  3751. component: 'system/appconfig/ThirdAppConfigList',
  3752. route: '1',
  3753. meta: {
  3754. keepAlive: false,
  3755. internalOrExternal: false,
  3756. icon: 'ant-design:setting-outlined',
  3757. componentName: 'ThirdAppConfigList',
  3758. title: '第三方配置',
  3759. },
  3760. name: 'third-app',
  3761. id: '1629109281748291586',
  3762. },
  3763. {
  3764. path: '/system/configurable',
  3765. component: 'system/configurable/index',
  3766. route: '1',
  3767. meta: {
  3768. keepAlive: false,
  3769. internalOrExternal: false,
  3770. icon: 'ant-design:hdd-twotone',
  3771. componentName: 'index',
  3772. title: '可配置模块管理',
  3773. },
  3774. name: 'configurable-manage',
  3775. id: '1629109281748291598',
  3776. },
  3777. ],
  3778. meta: {
  3779. keepAlive: false,
  3780. internalOrExternal: false,
  3781. icon: 'ant-design:setting',
  3782. componentName: 'index',
  3783. title: '系统管理',
  3784. },
  3785. name: 'isystem',
  3786. id: 'd7d6e2e4e2934f2c9385a623fd98c6f3',
  3787. },
  3788. {
  3789. redirect: null,
  3790. path: '/monitor',
  3791. component: 'layouts/default/index',
  3792. route: '1',
  3793. children: [
  3794. {
  3795. path: '/monitor/route',
  3796. component: 'monitor/route/index',
  3797. route: '1',
  3798. meta: {
  3799. keepAlive: false,
  3800. internalOrExternal: false,
  3801. icon: 'ant-design:branches-outlined',
  3802. componentName: 'index',
  3803. title: '网关路由',
  3804. },
  3805. name: 'monitor-route',
  3806. id: '1439399179791409153',
  3807. },
  3808. {
  3809. path: '/monitor/quartz',
  3810. component: 'monitor/quartz/index',
  3811. route: '1',
  3812. meta: {
  3813. keepAlive: false,
  3814. internalOrExternal: false,
  3815. icon: 'ant-design:history-outlined',
  3816. componentName: 'index',
  3817. title: '定时任务',
  3818. },
  3819. name: 'monitor-quartz',
  3820. id: '1439488251473993730',
  3821. },
  3822. {
  3823. path: '/monitor/datasource',
  3824. component: 'monitor/datasource/index',
  3825. route: '1',
  3826. meta: {
  3827. keepAlive: false,
  3828. internalOrExternal: false,
  3829. icon: 'ant-design:hdd-filled',
  3830. componentName: 'index',
  3831. title: '数据源管理',
  3832. },
  3833. name: 'monitor-datasource',
  3834. id: '1439511654494937090',
  3835. },
  3836. {
  3837. path: '/monitor/datalog',
  3838. component: 'monitor/datalog/index',
  3839. route: '1',
  3840. meta: {
  3841. keepAlive: false,
  3842. internalOrExternal: false,
  3843. icon: 'ant-design:funnel-plot-twotone',
  3844. componentName: 'index',
  3845. title: '数据日志',
  3846. },
  3847. name: 'monitor-datalog',
  3848. id: '1439531077792473089',
  3849. },
  3850. {
  3851. path: '/monitor/log',
  3852. component: 'monitor/log/index',
  3853. route: '1',
  3854. meta: {
  3855. keepAlive: false,
  3856. internalOrExternal: false,
  3857. icon: 'ant-design:interaction-outlined',
  3858. componentName: 'index',
  3859. title: '日志管理',
  3860. },
  3861. name: 'monitor-log',
  3862. id: '1439533711676973057',
  3863. },
  3864. {
  3865. path: '/monitor/druid',
  3866. component: "{{ window._CONFIG['domianURL'] }}/druid",
  3867. route: '1',
  3868. meta: {
  3869. keepAlive: false,
  3870. internalOrExternal: true,
  3871. icon: 'ant-design:rocket-filled',
  3872. componentName: 'druid',
  3873. title: 'SQL监控',
  3874. },
  3875. name: 'monitor-druid',
  3876. id: '1439784356766064642',
  3877. },
  3878. {
  3879. path: '/monitor/server',
  3880. component: 'monitor/server/index',
  3881. route: '1',
  3882. meta: {
  3883. keepAlive: false,
  3884. internalOrExternal: false,
  3885. icon: 'ant-design:thunderbolt-filled',
  3886. componentName: 'index',
  3887. title: '性能监控',
  3888. },
  3889. name: 'monitor-server',
  3890. id: '1439797053314342913',
  3891. },
  3892. {
  3893. path: '/monitor/redis',
  3894. component: 'monitor/redis/index',
  3895. route: '1',
  3896. meta: {
  3897. keepAlive: false,
  3898. internalOrExternal: false,
  3899. icon: 'ant-design:trademark-outlined',
  3900. componentName: 'index',
  3901. title: 'Redis监控',
  3902. },
  3903. name: 'monitor-redis',
  3904. id: '1439839507094740994',
  3905. },
  3906. {
  3907. path: '/monitor/trace',
  3908. component: 'monitor/trace/index',
  3909. route: '1',
  3910. meta: {
  3911. keepAlive: false,
  3912. internalOrExternal: false,
  3913. icon: 'ant-design:ie-circle-filled',
  3914. componentName: 'index',
  3915. title: '请求追踪',
  3916. },
  3917. name: 'monitor-trace',
  3918. id: '1439842640030113793',
  3919. },
  3920. {
  3921. path: '/system/onlineuser',
  3922. component: 'system/onlineuser/OnlineUserList',
  3923. route: '1',
  3924. meta: {
  3925. keepAlive: false,
  3926. internalOrExternal: false,
  3927. icon: 'ant-design:aliwangwang-outlined',
  3928. componentName: 'OnlineUserList',
  3929. title: '在线用户',
  3930. },
  3931. name: 'system-onlineuser',
  3932. id: '1594930803956920321',
  3933. },
  3934. {
  3935. path: '/openapi',
  3936. component: 'layouts/RouteView',
  3937. route: '1',
  3938. children: [
  3939. {
  3940. path: '/openapi/openApiAuthList',
  3941. component: 'openapi/OpenApiAuthList',
  3942. route: '1',
  3943. meta: {
  3944. keepAlive: false,
  3945. internalOrExternal: false,
  3946. componentName: 'OpenApiAuthList',
  3947. title: '授权管理',
  3948. },
  3949. name: 'openapi-openApiAuthList',
  3950. id: '2025050105554940200',
  3951. },
  3952. {
  3953. path: '/openapi/openApiList',
  3954. component: 'openapi/OpenApiList',
  3955. route: '1',
  3956. meta: {
  3957. keepAlive: false,
  3958. internalOrExternal: false,
  3959. componentName: 'OpenApiList',
  3960. title: '接口管理',
  3961. },
  3962. name: 'openapi-openApiList',
  3963. id: '2025050104193340030',
  3964. },
  3965. {
  3966. path: '/openapi/SwaggerUI',
  3967. component: 'openapi/SwaggerUI',
  3968. route: '1',
  3969. meta: {
  3970. keepAlive: false,
  3971. internalOrExternal: false,
  3972. componentName: 'SwaggerUI',
  3973. title: '接口文档',
  3974. },
  3975. name: 'openapi-SwaggerUI',
  3976. id: '1917957565728198657',
  3977. },
  3978. ],
  3979. meta: {
  3980. keepAlive: false,
  3981. internalOrExternal: false,
  3982. icon: 'ant-design:swap-outlined',
  3983. componentName: 'RouteView',
  3984. title: 'OpenAPI',
  3985. },
  3986. name: 'openapi',
  3987. id: '1922109301837606914',
  3988. },
  3989. ],
  3990. meta: {
  3991. keepAlive: false,
  3992. internalOrExternal: false,
  3993. icon: 'ant-design:video-camera-filled',
  3994. componentName: 'index',
  3995. title: '系统监控',
  3996. },
  3997. name: 'monitor',
  3998. id: '1439398677984878593',
  3999. },
  4000. {
  4001. redirect: '/comp/basic',
  4002. path: '/comp',
  4003. component: 'layouts/default/index',
  4004. route: '1',
  4005. children: [
  4006. {
  4007. path: '/demo/document/form/tabIndex',
  4008. component: 'demo/document/form/tabIndex',
  4009. route: '1',
  4010. meta: {
  4011. keepAlive: false,
  4012. internalOrExternal: false,
  4013. icon: 'ant-design:calculator-twotone',
  4014. componentName: 'tabIndex',
  4015. title: '表单示例大全',
  4016. },
  4017. name: 'demo-document-form-tabIndex',
  4018. id: '1707377665379790849',
  4019. },
  4020. {
  4021. path: '/comp/jeecg',
  4022. component: 'layouts/default/index',
  4023. route: '1',
  4024. children: [
  4025. {
  4026. path: '/comp/jeecg/basic',
  4027. component: 'demo/jeecg/index',
  4028. route: '1',
  4029. meta: {
  4030. keepAlive: false,
  4031. internalOrExternal: false,
  4032. componentName: 'index',
  4033. title: '自定义组件示例',
  4034. },
  4035. name: 'comp-jeecg-basic',
  4036. id: '1438108197270446081',
  4037. },
  4038. {
  4039. path: '/system/examples/demo',
  4040. component: 'system/examples/demo/index',
  4041. route: '1',
  4042. meta: {
  4043. keepAlive: false,
  4044. internalOrExternal: false,
  4045. componentName: 'index',
  4046. title: '单表示例',
  4047. },
  4048. name: 'system-examples-demo',
  4049. id: '1438783058792951810',
  4050. },
  4051. {
  4052. path: '/comp/jeecg/multiViewList',
  4053. component: 'super/shitu/MultiViewList',
  4054. route: '1',
  4055. meta: {
  4056. keepAlive: false,
  4057. internalOrExternal: false,
  4058. componentName: 'MultiViewList',
  4059. title: '多视图列表',
  4060. },
  4061. name: 'comp-jeecg-multiViewList',
  4062. id: '1567703742270750722',
  4063. },
  4064. {
  4065. path: '/comp/jeecg/oneToMore',
  4066. component: 'demo/vextable/index',
  4067. route: '1',
  4068. meta: {
  4069. keepAlive: false,
  4070. internalOrExternal: false,
  4071. componentName: 'index',
  4072. title: '一对多示例',
  4073. },
  4074. name: 'comp-jeecg-oneToMore',
  4075. id: '1438108198679732226',
  4076. },
  4077. {
  4078. path: '/jeecg/PrintDemo',
  4079. component: 'demo/jeecg/PrintDemo',
  4080. route: '1',
  4081. meta: {
  4082. keepAlive: false,
  4083. internalOrExternal: false,
  4084. componentName: 'PrintDemo',
  4085. title: '打印示例',
  4086. },
  4087. name: 'jeecg-PrintDemo',
  4088. id: '1441340399835742209',
  4089. },
  4090. {
  4091. path: '/jeecg/tableTotal',
  4092. component: 'demo/jeecg/TableTotal',
  4093. route: '1',
  4094. meta: {
  4095. keepAlive: false,
  4096. internalOrExternal: false,
  4097. componentName: 'TableTotal',
  4098. title: '表格合计',
  4099. },
  4100. name: 'jeecg-tableTotal',
  4101. id: '1441357157443371009',
  4102. },
  4103. {
  4104. path: '/jeecg/AsyncTreeTable',
  4105. component: 'demo/jeecg/AsyncTreeTable',
  4106. route: '1',
  4107. meta: {
  4108. keepAlive: false,
  4109. internalOrExternal: false,
  4110. componentName: 'AsyncTreeTable',
  4111. title: '异步树表格',
  4112. },
  4113. name: 'jeecg-AsyncTreeTable',
  4114. id: '1441361249200832513',
  4115. },
  4116. {
  4117. path: '/erplist',
  4118. component: 'demo/jeecg/erplist/index',
  4119. route: '1',
  4120. meta: {
  4121. keepAlive: false,
  4122. internalOrExternal: false,
  4123. componentName: 'index',
  4124. title: '一对多ERP',
  4125. },
  4126. name: 'erplist',
  4127. id: '1458389305235984385',
  4128. },
  4129. {
  4130. path: '/innerTable',
  4131. component: 'demo/jeecg/InnerExpandTable',
  4132. route: '1',
  4133. meta: {
  4134. keepAlive: false,
  4135. internalOrExternal: false,
  4136. componentName: 'InnerExpandTable',
  4137. title: '一对多内嵌',
  4138. },
  4139. name: 'innerTable',
  4140. id: '1453250018282573826',
  4141. },
  4142. {
  4143. path: '/one/OneNativeList',
  4144. component: 'demo/jeecg/Native/one/OneNativeList',
  4145. route: '1',
  4146. meta: {
  4147. keepAlive: false,
  4148. internalOrExternal: false,
  4149. componentName: 'OneNativeList',
  4150. title: '单表原生示例',
  4151. },
  4152. name: 'one-OneNativeList',
  4153. id: '1572507130547359745',
  4154. },
  4155. ],
  4156. meta: {
  4157. keepAlive: false,
  4158. internalOrExternal: false,
  4159. icon: 'ant-design:sketch-outlined',
  4160. componentName: 'index',
  4161. title: 'Jeecg组件示例',
  4162. },
  4163. name: 'comp-jeecg',
  4164. id: '1438108197958311537',
  4165. },
  4166. {
  4167. path: '/system/ossfile',
  4168. component: 'system/ossfile/index',
  4169. route: '1',
  4170. meta: {
  4171. keepAlive: false,
  4172. internalOrExternal: false,
  4173. icon: 'ant-design:file-add-outlined',
  4174. componentName: 'index',
  4175. title: '对象存储',
  4176. },
  4177. name: 'system-ossfile',
  4178. id: '1442055284830769154',
  4179. },
  4180. {
  4181. path: '/jeecg/j-vxe-table-demo',
  4182. component: 'demo/jeecg/JVxeTableDemo/index',
  4183. route: '1',
  4184. children: [
  4185. {
  4186. path: '/jeecg/j-vxe-table-demo/normal',
  4187. component: 'demo/jeecg/JVxeTableDemo/index',
  4188. route: '1',
  4189. meta: {
  4190. keepAlive: false,
  4191. internalOrExternal: false,
  4192. componentName: 'index',
  4193. title: '综合示例',
  4194. },
  4195. name: 'jeecg-j-vxe-table-demo-normal',
  4196. id: '1454031324835807233',
  4197. },
  4198. {
  4199. path: '/jeecg/j-vxe-table-demo/jsbc',
  4200. component: 'demo/jeecg/JVxeTableDemo/func-demo/JSBCDemo',
  4201. route: '1',
  4202. meta: {
  4203. keepAlive: false,
  4204. internalOrExternal: false,
  4205. componentName: 'JSBCDemo',
  4206. title: '即时保存',
  4207. },
  4208. name: 'jeecg-j-vxe-table-demo-jsbc',
  4209. id: '1454031820661260289',
  4210. },
  4211. {
  4212. path: '/jeecg/j-vxe-table-demo/whsx',
  4213. component: 'demo/jeecg/JVxeTableDemo/func-demo/SocketReload',
  4214. route: '1',
  4215. meta: {
  4216. keepAlive: false,
  4217. internalOrExternal: false,
  4218. componentName: 'SocketReload',
  4219. title: '无痕刷新',
  4220. },
  4221. name: 'jeecg-j-vxe-table-demo-whsx',
  4222. id: '1454034512171302914',
  4223. },
  4224. {
  4225. path: '/jeecg/j-vxe-table-demo/tczb',
  4226. component: 'demo/jeecg/JVxeTableDemo/func-demo/PopupSubTable',
  4227. route: '1',
  4228. meta: {
  4229. keepAlive: false,
  4230. internalOrExternal: false,
  4231. componentName: 'PopupSubTable',
  4232. title: '弹出子表',
  4233. },
  4234. name: 'jeecg-j-vxe-table-demo-tczb',
  4235. id: '1455019819440021505',
  4236. },
  4237. {
  4238. path: '/jeecg/j-vxe-table-demo/layout',
  4239. component: 'demo/jeecg/JVxeTableDemo/layout-demo/index',
  4240. route: '1',
  4241. meta: {
  4242. keepAlive: false,
  4243. internalOrExternal: false,
  4244. componentName: 'index',
  4245. title: '布局模板',
  4246. },
  4247. name: 'jeecg-j-vxe-table-demo-layout',
  4248. id: '1455067599277662209',
  4249. },
  4250. ],
  4251. meta: {
  4252. keepAlive: false,
  4253. internalOrExternal: false,
  4254. icon: 'ant-design:insert-row-below-outlined',
  4255. componentName: 'index',
  4256. title: 'JVxeTable示例',
  4257. },
  4258. name: 'jeecg-j-vxe-table-demo',
  4259. id: '1450308897429536769',
  4260. },
  4261. {
  4262. path: '/document/table',
  4263. component: 'demo/document/table/tabIndex',
  4264. route: '1',
  4265. meta: {
  4266. keepAlive: false,
  4267. internalOrExternal: false,
  4268. icon: 'ant-design:table-outlined',
  4269. componentName: 'tabIndex',
  4270. title: '表格示例大全',
  4271. },
  4272. name: 'document-table',
  4273. id: '1696765339583365122',
  4274. },
  4275. {
  4276. path: '/comp/form',
  4277. component: 'layouts/default/index',
  4278. route: '1',
  4279. children: [
  4280. {
  4281. path: '/comp/form/basic',
  4282. component: 'demo/form/index',
  4283. route: '1',
  4284. meta: {
  4285. keepAlive: false,
  4286. internalOrExternal: false,
  4287. componentName: 'index',
  4288. title: '基础表单',
  4289. },
  4290. name: 'comp-form-basic',
  4291. id: '1438108202366525441',
  4292. },
  4293. {
  4294. path: '/comp/form/useForm',
  4295. component: 'demo/form/UseForm',
  4296. route: '1',
  4297. meta: {
  4298. keepAlive: false,
  4299. internalOrExternal: false,
  4300. componentName: 'UseForm',
  4301. title: 'useForm',
  4302. },
  4303. name: 'comp-form-useForm',
  4304. id: '1438108203649982466',
  4305. },
  4306. {
  4307. path: '/comp/form/refForm',
  4308. component: 'demo/form/RefForm',
  4309. route: '1',
  4310. meta: {
  4311. keepAlive: false,
  4312. internalOrExternal: false,
  4313. componentName: 'RefForm',
  4314. title: 'RefForm',
  4315. },
  4316. name: 'comp-form-refForm',
  4317. id: '1438108203817754625',
  4318. },
  4319. {
  4320. path: '/comp/form/advancedForm',
  4321. component: 'demo/form/AdvancedForm',
  4322. route: '1',
  4323. meta: {
  4324. keepAlive: false,
  4325. internalOrExternal: false,
  4326. componentName: 'AdvancedForm',
  4327. title: '可收缩表单',
  4328. },
  4329. name: 'comp-form-advancedForm',
  4330. id: '1438108204023275521',
  4331. },
  4332. {
  4333. path: '/comp/form/ruleForm',
  4334. component: 'demo/form/RuleForm',
  4335. route: '1',
  4336. meta: {
  4337. keepAlive: false,
  4338. internalOrExternal: false,
  4339. componentName: 'RuleForm',
  4340. title: '表单验证',
  4341. },
  4342. name: 'comp-form-ruleForm',
  4343. id: '1438108204232990721',
  4344. },
  4345. {
  4346. path: '/comp/form/dynamicForm',
  4347. component: 'demo/form/DynamicForm',
  4348. route: '1',
  4349. meta: {
  4350. keepAlive: false,
  4351. internalOrExternal: false,
  4352. componentName: 'DynamicForm',
  4353. title: '动态表单',
  4354. },
  4355. name: 'comp-form-dynamicForm',
  4356. id: '1438108204400762881',
  4357. },
  4358. {
  4359. path: '/comp/form/customerForm',
  4360. component: 'demo/form/CustomerForm',
  4361. route: '1',
  4362. meta: {
  4363. keepAlive: false,
  4364. internalOrExternal: false,
  4365. componentName: 'CustomerForm',
  4366. title: '自定义组件',
  4367. },
  4368. name: 'comp-form-customerForm',
  4369. id: '1438108204576923649',
  4370. },
  4371. {
  4372. path: '/comp/form/appendForm',
  4373. component: 'demo/form/AppendForm',
  4374. route: '1',
  4375. meta: {
  4376. keepAlive: false,
  4377. internalOrExternal: false,
  4378. componentName: 'AppendForm',
  4379. title: '表单增删示例',
  4380. },
  4381. name: 'comp-form-appendForm',
  4382. id: '1438108204732112898',
  4383. },
  4384. ],
  4385. meta: {
  4386. keepAlive: false,
  4387. internalOrExternal: false,
  4388. icon: 'ant-design:pic-left-outlined',
  4389. componentName: 'index',
  4390. title: 'Form示例',
  4391. },
  4392. name: 'comp-form',
  4393. id: '1438108197958311937',
  4394. },
  4395. {
  4396. path: '/comp/basic',
  4397. component: 'layouts/default/index',
  4398. route: '1',
  4399. children: [
  4400. {
  4401. path: '/comp/basic/icon',
  4402. component: 'demo/feat/icon/index',
  4403. route: '1',
  4404. meta: {
  4405. keepAlive: false,
  4406. internalOrExternal: false,
  4407. componentName: 'index',
  4408. title: '图标',
  4409. },
  4410. name: 'comp-basic-icon',
  4411. id: '1438108178127642626',
  4412. },
  4413. {
  4414. path: '/comp/basic/tabs',
  4415. component: 'demo/feat/tabs/index',
  4416. route: '1',
  4417. meta: {
  4418. keepAlive: false,
  4419. internalOrExternal: false,
  4420. componentName: 'index',
  4421. title: 'Tab操作',
  4422. },
  4423. name: 'comp-basic-tabs',
  4424. id: '1438108178781954049',
  4425. },
  4426. {
  4427. path: '/comp/basic/tabs/detail/:id',
  4428. component: 'demo/feat/tabs/TabDetail',
  4429. route: '1',
  4430. hidden: true,
  4431. meta: {
  4432. hideMenu: true,
  4433. keepAlive: false,
  4434. internalOrExternal: false,
  4435. componentName: 'TabDetail',
  4436. title: 'TabDetail',
  4437. },
  4438. name: 'comp-basic-tabs-detail-@id',
  4439. id: '1438108178781954050',
  4440. },
  4441. {
  4442. path: '/comp/basic/button',
  4443. component: 'demo/comp/button/index',
  4444. route: '1',
  4445. meta: {
  4446. keepAlive: false,
  4447. internalOrExternal: false,
  4448. componentName: 'index',
  4449. title: 'Button组件',
  4450. },
  4451. name: 'comp-basic-button',
  4452. id: '1438108197790539778',
  4453. },
  4454. {
  4455. path: '/comp/basic/msg',
  4456. component: 'demo/feat/msg/index',
  4457. route: '1',
  4458. meta: {
  4459. keepAlive: false,
  4460. internalOrExternal: false,
  4461. componentName: 'index',
  4462. title: '消息提示',
  4463. },
  4464. name: 'comp-basic-msg',
  4465. id: '1438108180258349057',
  4466. },
  4467. {
  4468. path: '/comp/desc',
  4469. component: 'demo/comp/desc/index',
  4470. route: '1',
  4471. meta: {
  4472. keepAlive: false,
  4473. internalOrExternal: false,
  4474. componentName: 'index',
  4475. title: '详情组件',
  4476. },
  4477. name: 'comp-desc',
  4478. id: '1438108200672026626',
  4479. },
  4480. ],
  4481. meta: {
  4482. keepAlive: false,
  4483. internalOrExternal: false,
  4484. icon: 'ant-design:insert-row-left-outlined',
  4485. componentName: 'index',
  4486. title: '基础组件',
  4487. },
  4488. name: 'comp-basic',
  4489. id: '1438108197958315557',
  4490. },
  4491. {
  4492. path: '/comp/table',
  4493. component: 'layouts/default/index',
  4494. route: '1',
  4495. children: [
  4496. {
  4497. path: '/comp/table/basic',
  4498. component: 'demo/table/Basic',
  4499. route: '1',
  4500. meta: {
  4501. keepAlive: false,
  4502. internalOrExternal: false,
  4503. componentName: 'Basic',
  4504. title: '基础表格',
  4505. },
  4506. name: 'comp-table-basic',
  4507. id: '1438108205004742657',
  4508. },
  4509. {
  4510. path: '/comp/table/tableSummary',
  4511. component: 'demo/table/AntdTableSummary',
  4512. route: '1',
  4513. meta: {
  4514. keepAlive: false,
  4515. internalOrExternal: false,
  4516. componentName: 'AntdTableSummary',
  4517. title: '原生总结栏',
  4518. },
  4519. name: 'comp-table-tableSummary',
  4520. id: '1783334031927627777',
  4521. },
  4522. {
  4523. path: '/comp/table/treeTable',
  4524. component: 'demo/table/TreeTable',
  4525. route: '1',
  4526. meta: {
  4527. keepAlive: false,
  4528. internalOrExternal: false,
  4529. componentName: 'TreeTable',
  4530. title: '树形表格',
  4531. },
  4532. name: 'comp-table-treeTable',
  4533. id: '1438108205180903426',
  4534. },
  4535. {
  4536. path: '/comp/table/fetchTable',
  4537. component: 'demo/table/FetchTable',
  4538. route: '1',
  4539. meta: {
  4540. keepAlive: false,
  4541. internalOrExternal: false,
  4542. componentName: 'FetchTable',
  4543. title: '远程加载示例',
  4544. },
  4545. name: 'comp-table-fetchTable',
  4546. id: '1438108205357064193',
  4547. },
  4548. {
  4549. path: '/comp/table/fixedColumn',
  4550. component: 'demo/table/FixedColumn',
  4551. route: '1',
  4552. meta: {
  4553. keepAlive: false,
  4554. internalOrExternal: false,
  4555. componentName: 'FixedColumn',
  4556. title: '固定列',
  4557. },
  4558. name: 'comp-table-fixedColumn',
  4559. id: '1438108205587750914',
  4560. },
  4561. {
  4562. path: '/comp/table/customerCell',
  4563. component: 'demo/table/CustomerCell',
  4564. route: '1',
  4565. meta: {
  4566. keepAlive: false,
  4567. internalOrExternal: false,
  4568. componentName: 'CustomerCell',
  4569. title: '自定义列',
  4570. },
  4571. name: 'comp-table-customerCell',
  4572. id: '1438108205742940161',
  4573. },
  4574. {
  4575. path: '/comp/table/formTable',
  4576. component: 'demo/table/FormTable',
  4577. route: '1',
  4578. meta: {
  4579. keepAlive: false,
  4580. internalOrExternal: false,
  4581. componentName: 'FormTable',
  4582. title: '开启搜索区域',
  4583. },
  4584. name: 'comp-table-formTable',
  4585. id: '1438108205919100930',
  4586. },
  4587. {
  4588. path: '/comp/table/useTable',
  4589. component: 'demo/table/UseTable',
  4590. route: '1',
  4591. meta: {
  4592. keepAlive: false,
  4593. internalOrExternal: false,
  4594. componentName: 'UseTable',
  4595. title: 'UseTable',
  4596. },
  4597. name: 'comp-table-useTable',
  4598. id: '1438108206086873089',
  4599. },
  4600. {
  4601. path: '/comp/table/refTable',
  4602. component: 'demo/table/RefTable',
  4603. route: '1',
  4604. meta: {
  4605. keepAlive: false,
  4606. internalOrExternal: false,
  4607. componentName: 'RefTable',
  4608. title: 'RefTable',
  4609. },
  4610. name: 'comp-table-refTable',
  4611. id: '1438108206258839553',
  4612. },
  4613. {
  4614. path: '/comp/table/multipleHeader',
  4615. component: 'demo/table/MultipleHeader',
  4616. route: '1',
  4617. meta: {
  4618. keepAlive: false,
  4619. internalOrExternal: false,
  4620. componentName: 'MultipleHeader',
  4621. title: '多级表头',
  4622. },
  4623. name: 'comp-table-multipleHeader',
  4624. id: '1438108206489526274',
  4625. },
  4626. {
  4627. path: '/comp/table/mergeHeader',
  4628. component: 'demo/table/MergeHeader',
  4629. route: '1',
  4630. meta: {
  4631. keepAlive: false,
  4632. internalOrExternal: false,
  4633. componentName: 'MergeHeader',
  4634. title: '合并单元格',
  4635. },
  4636. name: 'comp-table-mergeHeader',
  4637. id: '1438108206661492738',
  4638. },
  4639. {
  4640. path: '/comp/table/nestedTable',
  4641. component: 'demo/table/NestedTable',
  4642. route: '1',
  4643. meta: {
  4644. keepAlive: false,
  4645. internalOrExternal: false,
  4646. componentName: 'NestedTable',
  4647. title: '嵌套子表格',
  4648. },
  4649. name: 'comp-table-nestedTable',
  4650. id: '1438108206959288321',
  4651. },
  4652. {
  4653. path: '/comp/table/expandTable',
  4654. component: 'demo/table/ExpandTable',
  4655. route: '1',
  4656. meta: {
  4657. keepAlive: false,
  4658. internalOrExternal: false,
  4659. componentName: 'ExpandTable',
  4660. title: '可展开表格',
  4661. },
  4662. name: 'comp-table-expandTable',
  4663. id: '1438108207160614913',
  4664. },
  4665. {
  4666. path: '/comp/table/fixedHeight',
  4667. component: 'demo/table/FixedHeight',
  4668. route: '1',
  4669. meta: {
  4670. keepAlive: false,
  4671. internalOrExternal: false,
  4672. componentName: 'FixedHeight',
  4673. title: '定高/头部自定义',
  4674. },
  4675. name: 'comp-table-fixedHeight',
  4676. id: '1438108207374524418',
  4677. },
  4678. {
  4679. path: '/comp/table/footerTable',
  4680. component: 'demo/table/FooterTable',
  4681. route: '1',
  4682. meta: {
  4683. keepAlive: false,
  4684. internalOrExternal: false,
  4685. componentName: 'FooterTable',
  4686. title: '表尾行合计',
  4687. },
  4688. name: 'comp-table-footerTable',
  4689. id: '1438108207563268097',
  4690. },
  4691. {
  4692. path: '/comp/table/editCellTable',
  4693. component: 'demo/table/EditCellTable',
  4694. route: '1',
  4695. meta: {
  4696. keepAlive: false,
  4697. internalOrExternal: false,
  4698. componentName: 'EditCellTable',
  4699. title: '可编辑单元格',
  4700. },
  4701. name: 'comp-table-editCellTable',
  4702. id: '1438108207793954818',
  4703. },
  4704. {
  4705. path: '/comp/table/editRowTable',
  4706. component: 'demo/table/EditRowTable',
  4707. route: '1',
  4708. meta: {
  4709. keepAlive: false,
  4710. internalOrExternal: false,
  4711. componentName: 'EditRowTable',
  4712. title: '可编辑行',
  4713. },
  4714. name: 'comp-table-editRowTable',
  4715. id: '1438108208024641538',
  4716. },
  4717. {
  4718. path: '/comp/table/authColumn',
  4719. component: 'demo/table/AuthColumn',
  4720. route: '1',
  4721. meta: {
  4722. keepAlive: false,
  4723. internalOrExternal: false,
  4724. componentName: 'AuthColumn',
  4725. title: '权限列',
  4726. },
  4727. name: 'comp-table-authColumn',
  4728. id: '1438108208297271297',
  4729. },
  4730. ],
  4731. meta: {
  4732. keepAlive: false,
  4733. internalOrExternal: false,
  4734. icon: 'ant-design:table-outlined',
  4735. componentName: 'index',
  4736. title: 'Table示例',
  4737. },
  4738. name: 'comp-table',
  4739. id: '1438108198113501186',
  4740. },
  4741. {
  4742. path: '/demo/comp/graphTtree/index',
  4743. component: 'demo/comp/graphTtree/index',
  4744. route: '1',
  4745. meta: {
  4746. keepAlive: false,
  4747. internalOrExternal: false,
  4748. icon: 'ant-design:line-height-outlined',
  4749. componentName: 'index',
  4750. title: '图形树组织',
  4751. },
  4752. name: 'demo-comp-graphTtree-index',
  4753. id: '15974199949657866125',
  4754. },
  4755. {
  4756. path: '/comp/tree',
  4757. component: 'layouts/default/index',
  4758. route: '1',
  4759. children: [
  4760. {
  4761. path: '/comp/tree/basic',
  4762. component: 'demo/tree/index',
  4763. route: '1',
  4764. meta: {
  4765. keepAlive: false,
  4766. internalOrExternal: false,
  4767. componentName: 'index',
  4768. title: '基础树',
  4769. },
  4770. name: 'comp-tree-basic',
  4771. id: '1438108208817364993',
  4772. },
  4773. {
  4774. path: '/comp/tree/editTree',
  4775. component: 'demo/tree/EditTree',
  4776. route: '1',
  4777. meta: {
  4778. keepAlive: false,
  4779. internalOrExternal: false,
  4780. componentName: 'EditTree',
  4781. title: '可搜索/工具栏',
  4782. },
  4783. name: 'comp-tree-editTree',
  4784. id: '1438108208980942850',
  4785. },
  4786. {
  4787. path: '/comp/tree/actionTree',
  4788. component: 'demo/tree/ActionTree',
  4789. route: '1',
  4790. meta: {
  4791. keepAlive: false,
  4792. internalOrExternal: false,
  4793. componentName: 'ActionTree',
  4794. title: '函数操作示例',
  4795. },
  4796. name: 'comp-tree-actionTree',
  4797. id: '1438108209228406785',
  4798. },
  4799. ],
  4800. meta: {
  4801. keepAlive: false,
  4802. internalOrExternal: false,
  4803. icon: 'ant-design:partition-outlined',
  4804. componentName: 'index',
  4805. title: 'Tree示例',
  4806. },
  4807. name: 'comp-tree',
  4808. id: '1438108199413735425',
  4809. },
  4810. {
  4811. path: '/demo/pay/Pay',
  4812. component: 'demo/pay/Pay',
  4813. route: '1',
  4814. meta: {
  4815. keepAlive: false,
  4816. internalOrExternal: false,
  4817. icon: 'ant-design:pay-circle-outlined',
  4818. componentName: 'Pay',
  4819. title: '支付示例',
  4820. },
  4821. name: 'demo-pay-Pay',
  4822. id: '1868832511265054722',
  4823. },
  4824. {
  4825. path: '/comp/editor',
  4826. component: 'layouts/default/index',
  4827. route: '1',
  4828. children: [
  4829. {
  4830. path: '/comp/editor/json',
  4831. component: 'demo/editor/json/index',
  4832. route: '1',
  4833. meta: {
  4834. keepAlive: false,
  4835. internalOrExternal: false,
  4836. componentName: 'index',
  4837. title: 'Json编辑器',
  4838. },
  4839. name: 'comp-editor-json',
  4840. id: '1438108210117599234',
  4841. },
  4842. {
  4843. path: '/comp/editor/markdown',
  4844. component: null,
  4845. route: '1',
  4846. children: [
  4847. {
  4848. path: '/comp/editor/markdown/index',
  4849. component: 'demo/editor/markdown/index',
  4850. route: '1',
  4851. meta: {
  4852. keepAlive: false,
  4853. internalOrExternal: false,
  4854. componentName: 'index',
  4855. title: '基础使用',
  4856. },
  4857. name: 'comp-editor-markdown-index',
  4858. id: '1438108211325558785',
  4859. },
  4860. {
  4861. path: '/comp/editor/markdown/editor',
  4862. component: 'demo/editor/markdown/Editor',
  4863. route: '1',
  4864. meta: {
  4865. keepAlive: false,
  4866. internalOrExternal: false,
  4867. componentName: 'Editor',
  4868. title: '嵌入form',
  4869. },
  4870. name: 'comp-editor-markdown-editor',
  4871. id: '1438108211661103106',
  4872. },
  4873. ],
  4874. meta: {
  4875. keepAlive: false,
  4876. internalOrExternal: false,
  4877. title: 'markdown编辑器',
  4878. },
  4879. name: 'comp-editor-markdown',
  4880. id: '1438108210260205570',
  4881. },
  4882. {
  4883. path: '/comp/editor/tinymce',
  4884. component: null,
  4885. route: '1',
  4886. children: [
  4887. {
  4888. path: '/comp/editor/tinymce/index',
  4889. component: 'demo/editor/tinymce/index',
  4890. route: '1',
  4891. meta: {
  4892. keepAlive: false,
  4893. internalOrExternal: false,
  4894. componentName: 'index',
  4895. title: '基础使用',
  4896. },
  4897. name: 'comp-editor-tinymce-index',
  4898. id: '1438108214882328577',
  4899. },
  4900. {
  4901. path: '/comp/editor/tinymce/editor',
  4902. component: 'demo/editor/tinymce/Editor',
  4903. route: '1',
  4904. meta: {
  4905. keepAlive: false,
  4906. internalOrExternal: false,
  4907. componentName: 'Editor',
  4908. title: '嵌入form',
  4909. },
  4910. name: 'comp-editor-tinymce-editor',
  4911. id: '1438108215335313409',
  4912. },
  4913. ],
  4914. meta: {
  4915. keepAlive: false,
  4916. internalOrExternal: false,
  4917. title: '富文本',
  4918. },
  4919. name: 'comp-editor-tinymce',
  4920. id: '1438108211778543618',
  4921. },
  4922. ],
  4923. meta: {
  4924. keepAlive: false,
  4925. internalOrExternal: false,
  4926. icon: 'ant-design:credit-card-twotone',
  4927. componentName: 'index',
  4928. title: '编辑器',
  4929. },
  4930. name: 'comp-editor',
  4931. id: '1438108199539564546',
  4932. },
  4933. {
  4934. path: '/comp/modal',
  4935. component: 'layouts/default/index',
  4936. route: '1',
  4937. children: [
  4938. {
  4939. path: '/comp/modal/basic',
  4940. component: 'demo/comp/modal/index',
  4941. route: '1',
  4942. meta: {
  4943. keepAlive: false,
  4944. internalOrExternal: false,
  4945. componentName: 'index',
  4946. title: '弹窗扩展',
  4947. },
  4948. name: 'comp-modal-basic',
  4949. id: '1438108200076435458',
  4950. },
  4951. {
  4952. path: '/comp/modal/drawer',
  4953. component: 'demo/comp/drawer/index',
  4954. route: '1',
  4955. meta: {
  4956. keepAlive: false,
  4957. internalOrExternal: false,
  4958. componentName: 'index',
  4959. title: '抽屉扩展',
  4960. },
  4961. name: 'comp-modal-drawer',
  4962. id: '1438108200391008257',
  4963. },
  4964. ],
  4965. meta: {
  4966. keepAlive: false,
  4967. internalOrExternal: false,
  4968. icon: 'ant-design:laptop-outlined',
  4969. componentName: 'index',
  4970. title: '弹框抽屉',
  4971. },
  4972. name: 'comp-modal',
  4973. id: '1438108197958311637',
  4974. },
  4975. {
  4976. path: '/comp/gantt',
  4977. component: 'demo/comp/gantt/index',
  4978. route: '1',
  4979. meta: {
  4980. keepAlive: false,
  4981. internalOrExternal: false,
  4982. icon: 'ant-design:align-right-outlined',
  4983. componentName: 'gantt',
  4984. title: '甘特图',
  4985. },
  4986. name: 'gantt',
  4987. id: '1551495184261943297',
  4988. },
  4989. {
  4990. path: '/comp/third',
  4991. component: 'layouts/default/index',
  4992. route: '1',
  4993. children: [
  4994. {
  4995. path: '/comp/third/print',
  4996. component: 'demo/feat/print/index',
  4997. route: '1',
  4998. meta: {
  4999. keepAlive: false,
  5000. internalOrExternal: false,
  5001. componentName: 'index',
  5002. title: '打印',
  5003. },
  5004. name: 'comp-third-print',
  5005. id: '1438108178643542017',
  5006. },
  5007. {
  5008. path: '/comp/third/context-menu',
  5009. component: 'demo/feat/context-menu/index',
  5010. route: '1',
  5011. meta: {
  5012. keepAlive: false,
  5013. internalOrExternal: false,
  5014. componentName: 'index',
  5015. title: '右键菜单',
  5016. },
  5017. name: 'comp-third-context-menu',
  5018. id: '1438108179226550273',
  5019. },
  5020. {
  5021. path: '/comp/third/download',
  5022. component: 'demo/feat/download/index',
  5023. route: '1',
  5024. meta: {
  5025. keepAlive: false,
  5026. internalOrExternal: false,
  5027. componentName: 'index',
  5028. title: '文件下载',
  5029. },
  5030. name: 'comp-third-download',
  5031. id: '1438108179381739521',
  5032. },
  5033. {
  5034. path: '/comp/third/basic',
  5035. component: 'demo/comp/cropper/index',
  5036. route: '1',
  5037. meta: {
  5038. keepAlive: false,
  5039. internalOrExternal: false,
  5040. componentName: 'index',
  5041. title: '图片裁剪',
  5042. },
  5043. name: 'comp-third-basic',
  5044. id: '1438108198855892993',
  5045. },
  5046. {
  5047. path: '/comp/third/click-out-side',
  5048. component: 'demo/feat/click-out-side/index',
  5049. route: '1',
  5050. meta: {
  5051. keepAlive: false,
  5052. internalOrExternal: false,
  5053. componentName: 'index',
  5054. title: 'ClickOutSide组件',
  5055. },
  5056. name: 'comp-third-click-out-side',
  5057. id: '1438108179599843330',
  5058. },
  5059. {
  5060. path: '/comp/third/timestamp',
  5061. component: 'demo/comp/time/index',
  5062. route: '1',
  5063. meta: {
  5064. keepAlive: false,
  5065. internalOrExternal: false,
  5066. componentName: 'index',
  5067. title: '相对时间',
  5068. },
  5069. name: 'comp-third-timestamp',
  5070. id: '1438108199120134145',
  5071. },
  5072. {
  5073. path: '/comp/third/img-preview',
  5074. component: 'demo/feat/img-preview/index',
  5075. route: '1',
  5076. meta: {
  5077. keepAlive: false,
  5078. internalOrExternal: false,
  5079. componentName: 'index',
  5080. title: '图片预览',
  5081. },
  5082. name: 'comp-third-img-preview',
  5083. id: '1438108179910221825',
  5084. },
  5085. {
  5086. path: '/comp/third/transition',
  5087. component: 'demo/comp/transition/index',
  5088. route: '1',
  5089. meta: {
  5090. keepAlive: false,
  5091. internalOrExternal: false,
  5092. componentName: 'index',
  5093. title: '动画组件',
  5094. },
  5095. name: 'comp-third-transition',
  5096. id: '1438108198339993602',
  5097. },
  5098. {
  5099. path: '/comp/third/countTo',
  5100. component: 'demo/comp/count-to/index',
  5101. route: '1',
  5102. meta: {
  5103. keepAlive: false,
  5104. internalOrExternal: false,
  5105. componentName: 'index',
  5106. title: '数字动画',
  5107. },
  5108. name: 'comp-third-countTo',
  5109. id: '1438108199304683521',
  5110. },
  5111. {
  5112. path: '/comp/third/copy',
  5113. component: 'demo/feat/copy/index',
  5114. route: '1',
  5115. meta: {
  5116. keepAlive: false,
  5117. internalOrExternal: false,
  5118. componentName: 'index',
  5119. title: '剪切板',
  5120. },
  5121. name: 'comp-third-copy',
  5122. id: '1438108180077993985',
  5123. },
  5124. {
  5125. path: '/comp/third/watermark',
  5126. component: 'demo/feat/watermark/index',
  5127. route: '1',
  5128. meta: {
  5129. keepAlive: false,
  5130. internalOrExternal: false,
  5131. componentName: 'index',
  5132. title: '水印',
  5133. },
  5134. name: 'comp-third-watermark',
  5135. id: '1438108180434509826',
  5136. },
  5137. {
  5138. path: '/comp/third/ripple',
  5139. component: 'demo/feat/ripple/index',
  5140. route: '1',
  5141. meta: {
  5142. keepAlive: false,
  5143. internalOrExternal: false,
  5144. componentName: 'index',
  5145. title: '水波纹',
  5146. },
  5147. name: 'comp-third-ripple',
  5148. id: '1438108180631642113',
  5149. },
  5150. {
  5151. path: '/comp/third/qrcode',
  5152. component: 'demo/comp/qrcode/index',
  5153. route: '1',
  5154. meta: {
  5155. keepAlive: false,
  5156. internalOrExternal: false,
  5157. componentName: 'index',
  5158. title: '二维码组件',
  5159. },
  5160. name: 'comp-third-qrcode',
  5161. id: '1438108201150177281',
  5162. },
  5163. {
  5164. path: '/comp/third/strength-meter',
  5165. component: 'demo/comp/strength-meter/index',
  5166. route: '1',
  5167. meta: {
  5168. keepAlive: false,
  5169. internalOrExternal: false,
  5170. componentName: 'index',
  5171. title: '密码强度组件',
  5172. },
  5173. name: 'comp-third-strength-meter',
  5174. id: '1438108201502498817',
  5175. },
  5176. {
  5177. path: '/comp/third/upload',
  5178. component: 'demo/comp/upload/index',
  5179. route: '1',
  5180. meta: {
  5181. keepAlive: false,
  5182. internalOrExternal: false,
  5183. componentName: 'index',
  5184. title: '上传组件',
  5185. },
  5186. name: 'comp-third-upload',
  5187. id: '1438108201712214018',
  5188. },
  5189. {
  5190. path: '/comp/third/loading',
  5191. component: 'demo/comp/loading/index',
  5192. route: '1',
  5193. meta: {
  5194. keepAlive: false,
  5195. internalOrExternal: false,
  5196. componentName: 'index',
  5197. title: 'Loading',
  5198. },
  5199. name: 'comp-third-loading',
  5200. id: '1438108202060341249',
  5201. },
  5202. ],
  5203. meta: {
  5204. keepAlive: false,
  5205. internalOrExternal: false,
  5206. icon: 'ant-design:slack-outlined',
  5207. componentName: 'index',
  5208. title: '第三方组件',
  5209. },
  5210. name: 'comp-third',
  5211. id: '1438108197958311677',
  5212. },
  5213. {
  5214. path: '/system',
  5215. component: 'layouts/default/index',
  5216. route: '1',
  5217. children: [
  5218. {
  5219. path: '/system/test',
  5220. component: 'demo/system/test/index',
  5221. route: '1',
  5222. meta: {
  5223. keepAlive: false,
  5224. internalOrExternal: false,
  5225. icon: 'ant-design:bulb-outlined',
  5226. componentName: 'index',
  5227. title: '测试功能',
  5228. },
  5229. name: 'system-test',
  5230. id: '1438108221849067522',
  5231. },
  5232. {
  5233. path: '/system/account',
  5234. component: 'demo/system/account/index',
  5235. route: '1',
  5236. meta: {
  5237. keepAlive: false,
  5238. internalOrExternal: false,
  5239. icon: 'ant-design:user-outlined',
  5240. componentName: 'index',
  5241. title: '账号管理',
  5242. },
  5243. name: 'system-account',
  5244. id: '1438108222218166273',
  5245. },
  5246. {
  5247. path: '/system/account_detail/:id',
  5248. component: 'demo/system/account/AccountDetail',
  5249. route: '1',
  5250. meta: {
  5251. keepAlive: false,
  5252. internalOrExternal: false,
  5253. icon: 'ant-design:idcard-twotone',
  5254. componentName: 'AccountDetail',
  5255. title: '账号详情',
  5256. },
  5257. name: 'system-account_detail-@id',
  5258. id: '1438108222721482753',
  5259. },
  5260. {
  5261. path: '/system/dept',
  5262. component: 'demo/system/dept/index',
  5263. route: '1',
  5264. meta: {
  5265. keepAlive: false,
  5266. internalOrExternal: false,
  5267. icon: 'ant-design:usergroup-add-outlined',
  5268. componentName: 'index',
  5269. title: '部门管理',
  5270. },
  5271. name: 'system-dept',
  5272. id: '1438108223489040385',
  5273. },
  5274. {
  5275. path: '/system/changePassword',
  5276. component: 'demo/system/password/index',
  5277. route: '1',
  5278. meta: {
  5279. keepAlive: false,
  5280. internalOrExternal: false,
  5281. icon: 'ant-design:field-number-outlined',
  5282. componentName: 'index',
  5283. title: '修改密码',
  5284. },
  5285. name: 'system-changePassword',
  5286. id: '1438108223661006850',
  5287. },
  5288. ],
  5289. meta: {
  5290. keepAlive: false,
  5291. internalOrExternal: false,
  5292. icon: 'ion:settings-outline',
  5293. componentName: 'index',
  5294. title: 'Mock示例',
  5295. },
  5296. name: 'system',
  5297. id: '1438108221551271937',
  5298. },
  5299. {
  5300. path: '/comp/scroll',
  5301. component: 'layouts/default/index',
  5302. route: '1',
  5303. children: [
  5304. {
  5305. path: '/comp/scroll/basic',
  5306. component: 'demo/comp/scroll/index',
  5307. route: '1',
  5308. meta: {
  5309. keepAlive: false,
  5310. internalOrExternal: false,
  5311. componentName: 'index',
  5312. title: '基础滚动',
  5313. },
  5314. name: 'comp-scroll-basic',
  5315. id: '1438108215511474177',
  5316. },
  5317. {
  5318. path: '/comp/scroll/action',
  5319. component: 'demo/comp/scroll/Action',
  5320. route: '1',
  5321. meta: {
  5322. keepAlive: false,
  5323. internalOrExternal: false,
  5324. componentName: 'Action',
  5325. title: '滚动函数',
  5326. },
  5327. name: 'comp-scroll-action',
  5328. id: '1438108215687634945',
  5329. },
  5330. {
  5331. path: '/comp/scroll/virtualScroll',
  5332. component: 'demo/comp/scroll/VirtualScroll',
  5333. route: '1',
  5334. meta: {
  5335. keepAlive: false,
  5336. internalOrExternal: false,
  5337. componentName: 'VirtualScroll',
  5338. title: '虚拟滚动',
  5339. },
  5340. name: 'comp-scroll-virtualScroll',
  5341. id: '1438108215989624834',
  5342. },
  5343. ],
  5344. meta: {
  5345. keepAlive: false,
  5346. internalOrExternal: false,
  5347. icon: 'ant-design:column-height-outlined',
  5348. componentName: 'index',
  5349. title: '滚动组件',
  5350. },
  5351. name: 'comp-scroll',
  5352. id: '1438108199631839234',
  5353. },
  5354. {
  5355. path: '/comp/lazy',
  5356. component: 'layouts/default/index',
  5357. route: '1',
  5358. children: [
  5359. {
  5360. path: '/comp/lazy/basic',
  5361. component: 'demo/comp/lazy/index',
  5362. route: '1',
  5363. meta: {
  5364. keepAlive: false,
  5365. internalOrExternal: false,
  5366. componentName: 'index',
  5367. title: '基础示例',
  5368. },
  5369. name: 'comp-lazy-basic',
  5370. id: '1438108216300003330',
  5371. },
  5372. {
  5373. path: '/comp/lazy/transition',
  5374. component: 'demo/comp/lazy/Transition',
  5375. route: '1',
  5376. meta: {
  5377. keepAlive: false,
  5378. internalOrExternal: false,
  5379. componentName: 'Transition',
  5380. title: '动画效果',
  5381. },
  5382. name: 'comp-lazy-transition',
  5383. id: '1438108216597798914',
  5384. },
  5385. ],
  5386. meta: {
  5387. keepAlive: false,
  5388. internalOrExternal: false,
  5389. icon: 'ant-design:small-dash-outlined',
  5390. componentName: 'index',
  5391. title: '懒加载组件',
  5392. },
  5393. name: 'comp-lazy',
  5394. id: '1438108200802050050',
  5395. },
  5396. {
  5397. path: '/comp/verify',
  5398. component: 'layouts/default/index',
  5399. route: '1',
  5400. children: [
  5401. {
  5402. path: '/comp/verify/drag',
  5403. component: 'demo/comp/verify/index',
  5404. route: '1',
  5405. meta: {
  5406. keepAlive: false,
  5407. internalOrExternal: false,
  5408. componentName: 'index',
  5409. title: '拖拽校验',
  5410. },
  5411. name: 'comp-verify-drag',
  5412. id: '1438108216971091969',
  5413. },
  5414. {
  5415. path: '/comp/verify/rotate',
  5416. component: 'demo/comp/verify/Rotate',
  5417. route: '1',
  5418. meta: {
  5419. keepAlive: false,
  5420. internalOrExternal: false,
  5421. componentName: 'Rotate',
  5422. title: '图片还原',
  5423. },
  5424. name: 'comp-verify-rotate',
  5425. id: '1438108217449242626',
  5426. },
  5427. ],
  5428. meta: {
  5429. keepAlive: false,
  5430. internalOrExternal: false,
  5431. icon: 'ant-design:field-binary-outlined',
  5432. componentName: 'index',
  5433. title: '验证组件',
  5434. },
  5435. name: 'comp-verify',
  5436. id: '1438108200919490562',
  5437. },
  5438. {
  5439. path: '/feat',
  5440. component: 'layouts/default/index',
  5441. route: '1',
  5442. children: [
  5443. {
  5444. path: '/feat/ws',
  5445. component: 'demo/feat/ws/index',
  5446. route: '1',
  5447. meta: {
  5448. keepAlive: false,
  5449. internalOrExternal: false,
  5450. componentName: 'index',
  5451. title: 'websocket测试',
  5452. },
  5453. name: 'feat-ws',
  5454. id: '1438108178257666049',
  5455. },
  5456. {
  5457. path: '/feat/session-timeout',
  5458. component: 'demo/feat/session-timeout/index',
  5459. route: '1',
  5460. meta: {
  5461. keepAlive: false,
  5462. internalOrExternal: false,
  5463. componentName: 'index',
  5464. title: '登录过期',
  5465. },
  5466. name: 'feat-session-timeout',
  5467. id: '1438108178421243905',
  5468. },
  5469. {
  5470. path: '/permission',
  5471. component: 'layouts/default/index',
  5472. route: '1',
  5473. children: [
  5474. {
  5475. path: '/permission/front',
  5476. component: null,
  5477. route: '1',
  5478. children: [
  5479. {
  5480. path: '/permission/front/page',
  5481. component: 'demo/permission/front/index',
  5482. route: '1',
  5483. meta: {
  5484. keepAlive: false,
  5485. internalOrExternal: false,
  5486. componentName: 'index',
  5487. title: '页面权限',
  5488. },
  5489. name: 'permission-front-page',
  5490. id: '1438108177351696386',
  5491. },
  5492. {
  5493. path: '/permission/front/btn',
  5494. component: 'demo/permission/front/Btn',
  5495. route: '1',
  5496. meta: {
  5497. keepAlive: false,
  5498. internalOrExternal: false,
  5499. componentName: 'Btn',
  5500. title: '按钮权限',
  5501. },
  5502. name: 'permission-front-btn',
  5503. id: '1438108177565605889',
  5504. },
  5505. ],
  5506. meta: {
  5507. keepAlive: false,
  5508. internalOrExternal: false,
  5509. title: '基于前端权限',
  5510. },
  5511. name: 'permission-front',
  5512. id: '1438108177074872321',
  5513. },
  5514. {
  5515. path: '/permission/back',
  5516. component: null,
  5517. route: '1',
  5518. children: [
  5519. {
  5520. path: '/permission/back/page',
  5521. component: 'demo/permission/back/index',
  5522. route: '1',
  5523. meta: {
  5524. keepAlive: false,
  5525. internalOrExternal: false,
  5526. componentName: 'index',
  5527. title: '页面权限',
  5528. },
  5529. name: 'permission-back-page',
  5530. id: '1438108177720795137',
  5531. },
  5532. {
  5533. path: '/permission/back/btn',
  5534. component: 'demo/permission/back/Btn',
  5535. route: '1',
  5536. meta: {
  5537. keepAlive: false,
  5538. internalOrExternal: false,
  5539. componentName: 'Btn',
  5540. title: '按钮权限',
  5541. },
  5542. name: 'permission-back-btn',
  5543. id: '1438108177880178689',
  5544. },
  5545. ],
  5546. meta: {
  5547. keepAlive: false,
  5548. internalOrExternal: false,
  5549. title: '基于后台权限',
  5550. },
  5551. name: 'permission-back',
  5552. id: '1438108177188118529',
  5553. },
  5554. ],
  5555. meta: {
  5556. keepAlive: false,
  5557. internalOrExternal: false,
  5558. icon: 'ion:key-outline',
  5559. componentName: 'index',
  5560. title: '权限管理',
  5561. },
  5562. name: 'permission',
  5563. id: '1438108176932265985',
  5564. },
  5565. {
  5566. path: '/setup/index',
  5567. component: 'demo/setup/index',
  5568. route: '1',
  5569. meta: {
  5570. keepAlive: false,
  5571. internalOrExternal: false,
  5572. icon: 'whh:paintroll',
  5573. componentName: 'index',
  5574. title: '引导页',
  5575. },
  5576. name: 'setup-index',
  5577. id: '1438108225263230978',
  5578. },
  5579. {
  5580. path: '/feat/full-screen',
  5581. component: 'demo/feat/full-screen/index',
  5582. route: '1',
  5583. meta: {
  5584. keepAlive: false,
  5585. internalOrExternal: false,
  5586. componentName: 'index',
  5587. title: '全屏',
  5588. },
  5589. name: 'feat-full-screen',
  5590. id: '1438108180770054145',
  5591. },
  5592. {
  5593. path: '/feat/error-log',
  5594. component: 'sys/error-log/index',
  5595. route: '1',
  5596. meta: {
  5597. keepAlive: false,
  5598. internalOrExternal: false,
  5599. componentName: 'index',
  5600. title: '错误日志',
  5601. },
  5602. name: 'feat-error-log',
  5603. id: '1438108183085309954',
  5604. },
  5605. ],
  5606. meta: {
  5607. keepAlive: false,
  5608. internalOrExternal: false,
  5609. icon: 'ion:git-compare-outline',
  5610. componentName: 'index',
  5611. title: '功能示例',
  5612. },
  5613. name: 'feat',
  5614. id: '1438108178010202113',
  5615. },
  5616. ],
  5617. meta: {
  5618. keepAlive: false,
  5619. internalOrExternal: false,
  5620. icon: 'ion:layers-outline',
  5621. componentName: 'index',
  5622. title: '组件示例',
  5623. },
  5624. name: 'comp',
  5625. id: '1438108196993622018',
  5626. },
  5627. ],
  5628. sysSafeMode: false,
  5629. });
  5630. },
  5631. },
  5632. ] as unknown as MockMethod[];