admin.php 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810
  1. <?php
  2. return [
  3. [
  4. 'menu_name' => '首页',
  5. 'menu_key' => 'overview',
  6. 'menu_short_name' => '首页',
  7. 'parent_key' => '',
  8. 'menu_type' => '1',
  9. 'icon' => 'element-Monitor',
  10. 'api_url' => '',
  11. 'router_path' => 'index',
  12. 'view_path' => 'index/index',
  13. 'methods' => '',
  14. 'sort' => '100',
  15. 'status' => '1',
  16. 'is_show' => '1',
  17. ],
  18. [
  19. 'menu_name' => '会员管理',
  20. 'menu_key' => 'member',
  21. 'menu_short_name' => '会员',
  22. 'parent_key' => '',
  23. 'menu_type' => '0',
  24. 'icon' => 'iconfont-iconjiaoseyonghu',
  25. 'api_url' => '',
  26. 'router_path' => '',
  27. 'view_path' => '',
  28. 'methods' => '',
  29. 'sort' => '70',
  30. 'status' => '1',
  31. 'is_show' => '1',
  32. 'children' => [
  33. [
  34. 'menu_name' => '会员列表',
  35. 'menu_key' => 'member_list',
  36. 'menu_short_name' => '会员列表',
  37. 'menu_type' => '1',
  38. 'icon' => 'iconfont-iconhuiyuanliebiao',
  39. 'api_url' => 'member/member',
  40. 'router_path' => 'member/member',
  41. 'view_path' => 'member/member',
  42. 'methods' => 'get',
  43. 'sort' => '100',
  44. 'status' => '1',
  45. 'is_show' => '1',
  46. 'children' => [
  47. [
  48. 'menu_name' => '添加会员',
  49. 'menu_key' => 'member_add',
  50. 'menu_short_name' => '添加会员',
  51. 'menu_type' => '2',
  52. 'icon' => '',
  53. 'api_url' => 'member/member',
  54. 'router_path' => '',
  55. 'view_path' => '',
  56. 'methods' => 'post',
  57. 'sort' => '0',
  58. 'status' => '1',
  59. 'is_show' => '1',
  60. ],
  61. [
  62. 'menu_name' => '编辑会员',
  63. 'menu_key' => 'member_update',
  64. 'menu_short_name' => '编辑会员',
  65. 'menu_type' => '2',
  66. 'icon' => '',
  67. 'api_url' => 'member/member/modify/<member_id>/<field>',
  68. 'router_path' => '',
  69. 'view_path' => '',
  70. 'methods' => 'put',
  71. 'sort' => '0',
  72. 'status' => '1',
  73. 'is_show' => '1',
  74. ],
  75. [
  76. 'menu_name' => '删除会员',
  77. 'menu_key' => 'member_delete',
  78. 'menu_short_name' => '删除会员',
  79. 'menu_type' => '2',
  80. 'icon' => '',
  81. 'api_url' => 'member/member/<member_id>',
  82. 'router_path' => '',
  83. 'view_path' => '',
  84. 'methods' => 'delete',
  85. 'sort' => '0',
  86. 'status' => '1',
  87. 'is_show' => '1',
  88. ],
  89. [
  90. 'menu_name' => '修改会员状态',
  91. 'menu_key' => 'member_status_edit',
  92. 'menu_short_name' => '修改会员状态',
  93. 'menu_type' => '2',
  94. 'icon' => '',
  95. 'api_url' => 'member/setstatus/<status>',
  96. 'router_path' => '',
  97. 'view_path' => '',
  98. 'methods' => 'put',
  99. 'sort' => '0',
  100. 'status' => '1',
  101. 'is_show' => '1',
  102. ],
  103. ],
  104. ],
  105. [
  106. 'menu_name' => '会员详情',
  107. 'menu_key' => 'member_info',
  108. 'menu_short_name' => '会员详情',
  109. 'menu_type' => '1',
  110. 'icon' => '',
  111. 'api_url' => 'member/member/<id>',
  112. 'router_path' => 'member/detail',
  113. 'view_path' => 'member/member_detail',
  114. 'methods' => 'get',
  115. 'sort' => '90',
  116. 'status' => '1',
  117. 'is_show' => '0',
  118. ],
  119. [
  120. 'menu_name' => '会员等级',
  121. 'menu_key' => 'member_level',
  122. 'menu_short_name' => '会员等级',
  123. 'menu_type' => '0',
  124. 'icon' => 'iconfont-iconhuiyuandengjipc',
  125. 'api_url' => '',
  126. 'router_path' => '',
  127. 'view_path' => '',
  128. 'methods' => '',
  129. 'sort' => '90',
  130. 'status' => '1',
  131. 'is_show' => '1',
  132. 'children' => [
  133. [
  134. 'menu_name' => '等级列表',
  135. 'menu_key' => 'member_level_list',
  136. 'menu_short_name' => '会员等级',
  137. 'menu_type' => '1',
  138. 'icon' => 'iconfont-iconwenzhangliebiao1',
  139. 'api_url' => 'member/level',
  140. 'router_path' => 'member/level',
  141. 'view_path' => 'member/level',
  142. 'methods' => 'get',
  143. 'sort' => '50',
  144. 'status' => '1',
  145. 'is_show' => '1',
  146. 'children' => [
  147. [
  148. 'menu_name' => '添加等级',
  149. 'menu_key' => 'member_level_add',
  150. 'menu_short_name' => '添加等级',
  151. 'menu_type' => '2',
  152. 'icon' => '',
  153. 'api_url' => 'member/level',
  154. 'router_path' => '',
  155. 'view_path' => '',
  156. 'methods' => 'post',
  157. 'sort' => '0',
  158. 'status' => '1',
  159. 'is_show' => '1',
  160. ],
  161. [
  162. 'menu_name' => '编辑等级',
  163. 'menu_key' => 'member_level_edit',
  164. 'menu_short_name' => '编辑等级',
  165. 'menu_type' => '2',
  166. 'icon' => '',
  167. 'api_url' => 'member/level/<id>',
  168. 'router_path' => '',
  169. 'view_path' => '',
  170. 'methods' => 'put',
  171. 'sort' => '0',
  172. 'status' => '1',
  173. 'is_show' => '1',
  174. ],
  175. [
  176. 'menu_name' => '删除等级',
  177. 'menu_key' => 'member_level_delete',
  178. 'menu_short_name' => '删除等级',
  179. 'menu_type' => '2',
  180. 'icon' => '',
  181. 'api_url' => 'member/level/<id>',
  182. 'router_path' => '',
  183. 'view_path' => '',
  184. 'methods' => 'delete',
  185. 'sort' => '0',
  186. 'status' => '1',
  187. 'is_show' => '1',
  188. ],
  189. ],
  190. ],
  191. [
  192. 'menu_name' => '添加/编辑等级',
  193. 'menu_key' => 'member_level_edit_page',
  194. 'menu_short_name' => '添加/编辑等级',
  195. 'menu_type' => '1',
  196. 'icon' => '',
  197. 'api_url' => '',
  198. 'router_path' => 'member/level_edit',
  199. 'view_path' => 'member/level_edit',
  200. 'methods' => '',
  201. 'sort' => '49',
  202. 'status' => '1',
  203. 'is_show' => '0',
  204. 'children' => [
  205. [
  206. 'menu_name' => '会员等级信息',
  207. 'menu_key' => 'member_level_info',
  208. 'menu_short_name' => '会员等级信息',
  209. 'menu_type' => '2',
  210. 'icon' => '',
  211. 'api_url' => 'member/level/<id>',
  212. 'router_path' => '',
  213. 'view_path' => '',
  214. 'methods' => 'get',
  215. 'sort' => '100',
  216. 'status' => '1',
  217. 'is_show' => '1',
  218. ]
  219. ]
  220. ],
  221. [
  222. 'menu_name' => '成长值规则',
  223. 'menu_key' => 'growth_rule',
  224. 'menu_short_name' => '成长值规则',
  225. 'menu_type' => '1',
  226. 'icon' => '',
  227. 'api_url' => 'member/config/growth_rule',
  228. 'router_path' => 'setting/growth_rule',
  229. 'view_path' => 'setting/growth_rule',
  230. 'methods' => 'get',
  231. 'sort' => '49',
  232. 'status' => '1',
  233. 'is_show' => '1',
  234. 'children' => [
  235. [
  236. 'menu_name' => '设置成长值规则',
  237. 'menu_key' => 'set_growth_rule',
  238. 'menu_short_name' => '设置成长值规则',
  239. 'menu_type' => '2',
  240. 'icon' => '',
  241. 'api_url' => 'member/config/growth_rule',
  242. 'router_path' => '',
  243. 'view_path' => '',
  244. 'methods' => 'post',
  245. 'sort' => '100',
  246. 'status' => '1',
  247. 'is_show' => '1',
  248. ]
  249. ]
  250. ],
  251. [
  252. 'menu_name' => '会员成长值',
  253. 'menu_key' => 'member_growth',
  254. 'menu_short_name' => '会员成长值',
  255. 'menu_type' => '1',
  256. 'icon' => 'iconfont iconjifen-xianxing',
  257. 'api_url' => 'member/account/growth',
  258. 'router_path' => 'member/growth',
  259. 'view_path' => 'member/growth',
  260. 'methods' => 'get',
  261. 'sort' => '49',
  262. 'status' => '1',
  263. 'is_show' => '0',
  264. ],
  265. ]
  266. ],
  267. [
  268. 'menu_name' => '会员标签',
  269. 'menu_key' => 'member_label',
  270. 'menu_short_name' => '会员标签',
  271. 'menu_type' => '1',
  272. 'icon' => 'element-CollectionTag',
  273. 'api_url' => 'member/label',
  274. 'router_path' => 'member/label',
  275. 'view_path' => 'member/label',
  276. 'methods' => 'get',
  277. 'sort' => '80',
  278. 'status' => '1',
  279. 'is_show' => '1',
  280. 'children' => [
  281. [
  282. 'menu_name' => '编辑标签',
  283. 'menu_key' => 'member_label_update',
  284. 'menu_short_name' => '编辑标签',
  285. 'menu_type' => '2',
  286. 'icon' => '',
  287. 'api_url' => 'member/label/<id>',
  288. 'router_path' => '',
  289. 'view_path' => '',
  290. 'methods' => 'put',
  291. 'sort' => '0',
  292. 'status' => '1',
  293. 'is_show' => '1',
  294. ],
  295. [
  296. 'menu_name' => '添加标签',
  297. 'menu_key' => 'member_label_add',
  298. 'menu_short_name' => '添加标签',
  299. 'menu_type' => '2',
  300. 'icon' => '',
  301. 'api_url' => 'member/label',
  302. 'router_path' => '',
  303. 'view_path' => '',
  304. 'methods' => 'post',
  305. 'sort' => '0',
  306. 'status' => '1',
  307. 'is_show' => '1',
  308. ],
  309. [
  310. 'menu_name' => '删除标签',
  311. 'menu_key' => 'member_label_delete',
  312. 'menu_short_name' => '删除标签',
  313. 'menu_type' => '2',
  314. 'icon' => '',
  315. 'api_url' => 'member/label/<id>',
  316. 'router_path' => '',
  317. 'view_path' => '',
  318. 'methods' => 'delete',
  319. 'sort' => '0',
  320. 'status' => '1',
  321. 'is_show' => '1',
  322. ],
  323. ],
  324. ],
  325. [
  326. 'menu_name' => '会员积分',
  327. 'menu_key' => 'member_point',
  328. 'menu_short_name' => '会员积分',
  329. 'menu_type' => '0',
  330. 'icon' => 'iconfont-iconjifen-xianxing',
  331. 'api_url' => 'member/account/point',
  332. 'router_path' => 'member/point',
  333. 'view_path' => 'member/point',
  334. 'methods' => 'get',
  335. 'sort' => '70',
  336. 'status' => '1',
  337. 'is_show' => '1',
  338. 'children' => [
  339. [
  340. 'menu_name' => '会员积分调整',
  341. 'menu_key' => 'member_point_update',
  342. 'menu_short_name' => '会员积分调整',
  343. 'menu_type' => '2',
  344. 'icon' => '',
  345. 'api_url' => 'member/account/point',
  346. 'router_path' => '',
  347. 'view_path' => '',
  348. 'methods' => 'post',
  349. 'sort' => '0',
  350. 'status' => '1',
  351. 'is_show' => '1',
  352. ],
  353. [
  354. 'menu_name' => '积分明细',
  355. 'menu_key' => 'member_point_list',
  356. 'menu_short_name' => '积分明细',
  357. 'menu_type' => '1',
  358. 'icon' => 'iconfont iconjifen-xianxing',
  359. 'api_url' => 'member/account/point',
  360. 'router_path' => 'member/point',
  361. 'view_path' => 'member/point',
  362. 'methods' => 'get',
  363. 'sort' => '120',
  364. 'status' => '1',
  365. 'is_show' => '1',
  366. ],
  367. [
  368. 'menu_name' => '积分规则',
  369. 'menu_key' => 'point_rule',
  370. 'menu_short_name' => '积分规则',
  371. 'menu_type' => '1',
  372. 'icon' => '',
  373. 'api_url' => 'member/config/point_rule',
  374. 'router_path' => 'setting/point_rule',
  375. 'view_path' => 'setting/point_rule',
  376. 'methods' => 'get',
  377. 'sort' => '110',
  378. 'status' => '1',
  379. 'is_show' => '1',
  380. 'children' => [
  381. [
  382. 'menu_name' => '积分规则',
  383. 'menu_key' => 'set_point_rule',
  384. 'menu_short_name' => '设置积分规则',
  385. 'menu_type' => '2',
  386. 'icon' => '',
  387. 'api_url' => 'member/config/point_rule',
  388. 'router_path' => '',
  389. 'view_path' => '',
  390. 'methods' => 'post',
  391. 'sort' => '100',
  392. 'status' => '1',
  393. 'is_show' => '1',
  394. ]
  395. ]
  396. ],
  397. ]
  398. ],
  399. [
  400. 'menu_name' => '会员余额',
  401. 'menu_key' => 'member_balance',
  402. 'menu_short_name' => '会员余额',
  403. 'menu_type' => '1',
  404. 'icon' => 'element-Money',
  405. 'api_url' => 'member/account/balance',
  406. 'router_path' => 'member/balance',
  407. 'view_path' => 'member/balance',
  408. 'methods' => 'get',
  409. 'sort' => '60',
  410. 'status' => '1',
  411. 'is_show' => '1',
  412. 'children' => [
  413. [
  414. 'menu_name' => '会员余额调整',
  415. 'menu_key' => 'member_balance_update',
  416. 'menu_short_name' => '会员余额调整',
  417. 'menu_type' => '2',
  418. 'icon' => '',
  419. 'api_url' => 'member/account/balance',
  420. 'router_path' => '',
  421. 'view_path' => '',
  422. 'methods' => 'post',
  423. 'sort' => '0',
  424. 'status' => '1',
  425. 'is_show' => '1',
  426. ],
  427. ]
  428. ],
  429. [
  430. 'menu_name' => '会员佣金',
  431. 'menu_key' => 'member_commission',
  432. 'menu_short_name' => '会员佣金',
  433. 'menu_type' => '1',
  434. 'icon' => 'iconfont-iconhuiyuanyongjin1',
  435. 'api_url' => 'member/account/commission',
  436. 'router_path' => 'member/commission',
  437. 'view_path' => 'member/commission',
  438. 'methods' => 'get',
  439. 'sort' => '59',
  440. 'status' => '1',
  441. 'is_show' => '1',
  442. ],
  443. ],
  444. ],
  445. [
  446. 'menu_name' => '财务管理',
  447. 'menu_key' => 'finance',
  448. 'menu_short_name' => '财务',
  449. 'parent_key' => '',
  450. 'menu_type' => '0',
  451. 'icon' => 'element-Box',
  452. 'api_url' => '',
  453. 'router_path' => '',
  454. 'view_path' => '',
  455. 'methods' => '',
  456. 'sort' => '60',
  457. 'status' => '1',
  458. 'is_show' => '1',
  459. 'children' => [
  460. [
  461. 'menu_name' => '财务概况',
  462. 'menu_key' => 'finance_index',
  463. 'menu_short_name' => '财务概况',
  464. 'menu_type' => '1',
  465. 'icon' => 'iconfont-icongaikuang1',
  466. 'api_url' => 'finance/index',
  467. 'router_path' => 'finance/index',
  468. 'view_path' => 'finance/index',
  469. 'methods' => 'get',
  470. 'sort' => '100',
  471. 'status' => '1',
  472. 'is_show' => '1',
  473. ],
  474. [
  475. 'menu_name' => '财务流水',
  476. 'menu_key' => 'site_account_list',
  477. 'menu_short_name' => '财务流水',
  478. 'menu_type' => '1',
  479. 'icon' => 'iconfont-iconcaiwuliushui',
  480. 'api_url' => 'finance/account',
  481. 'router_path' => 'finance/account',
  482. 'view_path' => 'finance/account',
  483. 'methods' => 'get',
  484. 'sort' => '100',
  485. 'status' => '1',
  486. 'is_show' => '1',
  487. ],
  488. [
  489. 'menu_name' => '支付单据详情',
  490. 'menu_key' => 'site_pay_detail',
  491. 'menu_short_name' => '支付单据详情',
  492. 'menu_type' => '1',
  493. 'icon' => 'element-Postcard',
  494. 'api_url' => 'pay/detail',
  495. 'router_path' => 'finance/pay/detail',
  496. 'view_path' => 'finance/pay_detail',
  497. 'methods' => 'get',
  498. 'sort' => '98',
  499. 'status' => '1',
  500. 'is_show' => '0',
  501. ],
  502. [
  503. 'menu_name' => '会员提现',
  504. 'menu_key' => 'cash_out_list',
  505. 'menu_short_name' => '会员提现',
  506. 'menu_type' => '1',
  507. 'icon' => 'iconfont-iconhuiyuantixian1',
  508. 'api_url' => 'member/cash_out',
  509. 'router_path' => 'finance/cash_out',
  510. 'view_path' => 'finance/cash_out',
  511. 'methods' => 'get',
  512. 'sort' => '97',
  513. 'status' => '1',
  514. 'is_show' => '1',
  515. 'children' => [
  516. [
  517. 'menu_name' => '会员提现审核',
  518. 'menu_key' => 'member_cash_out_audit',
  519. 'menu_short_name' => '会员提现审核',
  520. 'menu_type' => '2',
  521. 'icon' => '',
  522. 'api_url' => 'member/cash_out/audit/<id>/<action>',
  523. 'router_path' => '',
  524. 'view_path' => '',
  525. 'methods' => 'put',
  526. 'sort' => '100',
  527. 'status' => '1',
  528. 'is_show' => '1',
  529. ],
  530. [
  531. 'menu_name' => '会员提现转账',
  532. 'menu_key' => 'member_cash_out_transfer',
  533. 'menu_short_name' => '会员提现转账',
  534. 'menu_type' => '2',
  535. 'icon' => '',
  536. 'api_url' => 'member/cash_out/transfer/<id>',
  537. 'router_path' => '',
  538. 'view_path' => '',
  539. 'methods' => 'put',
  540. 'sort' => '100',
  541. 'status' => '1',
  542. 'is_show' => '1',
  543. ],
  544. ]
  545. ],
  546. [
  547. 'menu_name' => '会员退款',
  548. 'menu_key' => 'member_refund_list',
  549. 'menu_short_name' => '会员退款',
  550. 'menu_type' => '1',
  551. 'icon' => 'iconfont-iconhuiyuantixian',
  552. 'api_url' => 'pay/pay_refund',
  553. 'router_path' => 'finance/refund',
  554. 'view_path' => 'finance/pay_refund',
  555. 'methods' => 'get',
  556. 'sort' => '9',
  557. 'status' => '1',
  558. 'is_show' => '1',
  559. 'children' => [
  560. [
  561. 'menu_name' => '会员退款转账',
  562. 'menu_key' => 'member_refund_transfer',
  563. 'menu_short_name' => '会员退款转账',
  564. 'menu_type' => '2',
  565. 'icon' => '',
  566. 'api_url' => 'pay/refund/transfer',
  567. 'router_path' => '',
  568. 'view_path' => '',
  569. 'methods' => 'post',
  570. 'sort' => '100',
  571. 'status' => '1',
  572. 'is_show' => '1',
  573. ],
  574. ]
  575. ],
  576. [
  577. 'menu_name' => '退款详情',
  578. 'menu_key' => 'member_refund_detail',
  579. 'menu_short_name' => '退款详情',
  580. 'menu_type' => '1',
  581. 'icon' => 'iconfont-iconhuiyuantixian',
  582. 'api_url' => 'pay/refund',
  583. 'router_path' => 'finance/refund/detail',
  584. 'view_path' => 'finance/refund_detail',
  585. 'methods' => 'get',
  586. 'sort' => '9',
  587. 'status' => '1',
  588. 'is_show' => '0',
  589. ],
  590. [
  591. 'menu_name' => '店铺提现',
  592. 'menu_key' => 'shop_cash_out_list',
  593. 'menu_short_name' => '店铺提现',
  594. 'menu_type' => '1',
  595. 'icon' => 'iconfont-icondianputixian1',
  596. 'api_url' => 'shop/admin/shop/cash_out',
  597. 'router_path' => 'finance/shop_cash_out',
  598. 'view_path' => 'finance/shop_cash_out',
  599. 'methods' => 'get',
  600. 'sort' => '97',
  601. 'status' => '1',
  602. 'is_show' => '1',
  603. 'children' => [
  604. [
  605. 'menu_name' => '店铺提现审核',
  606. 'menu_key' => 'shop_cash_out_audit',
  607. 'menu_short_name' => '店铺提现审核',
  608. 'menu_type' => '2',
  609. 'icon' => '',
  610. 'api_url' => 'shop/admin/shop/cashout/audit/<id>',
  611. 'router_path' => '',
  612. 'view_path' => '',
  613. 'methods' => 'put',
  614. 'sort' => '100',
  615. 'status' => '1',
  616. 'is_show' => '1',
  617. ],
  618. [
  619. 'menu_name' => '店铺提现转账',
  620. 'menu_key' => 'shop_cash_out_transfer',
  621. 'menu_short_name' => '店铺提现转账',
  622. 'menu_type' => '2',
  623. 'icon' => '',
  624. 'api_url' => 'shop/admin/shop/cashout/transfer/<id>',
  625. 'router_path' => '',
  626. 'view_path' => '',
  627. 'methods' => 'put',
  628. 'sort' => '100',
  629. 'status' => '1',
  630. 'is_show' => '1',
  631. ],
  632. ]
  633. ],
  634. [
  635. 'menu_name' => '支付记录',
  636. 'menu_key' => 'pay_list',
  637. 'menu_short_name' => '支付记录',
  638. 'menu_type' => '1',
  639. 'icon' => 'iconfont-iconzhifujilu',
  640. 'api_url' => '',
  641. 'router_path' => 'finance/pay/list',
  642. 'view_path' => 'finance/pay_list',
  643. 'methods' => 'get',
  644. 'sort' => '96',
  645. 'status' => '1',
  646. 'is_show' => '1',
  647. ],
  648. ],
  649. ],
  650. [
  651. 'menu_name' => '营销管理',
  652. 'menu_key' => 'marketing',
  653. 'menu_short_name' => '营销',
  654. 'parent_key' => '',
  655. 'menu_type' => '0',
  656. 'icon' => 'iconfont-iconyingxiao1',
  657. 'api_url' => '',
  658. 'router_path' => '',
  659. 'view_path' => '',
  660. 'methods' => '',
  661. 'sort' => '60',
  662. 'status' => '1',
  663. 'is_show' => '1',
  664. 'children' => [
  665. [
  666. 'menu_name' => '签到管理',
  667. 'menu_key' => 'sign',
  668. 'menu_short_name' => '签到管理',
  669. 'menu_type' => '0',
  670. 'icon' => 'iconfont-iconqiandaoguanli',
  671. 'api_url' => '',
  672. 'router_path' => '',
  673. 'view_path' => '',
  674. 'methods' => '',
  675. 'sort' => '90',
  676. 'status' => '1',
  677. 'is_show' => '1',
  678. 'children' => [
  679. [
  680. 'menu_name' => '签到设置',
  681. 'menu_key' => 'sign_setting',
  682. 'menu_short_name' => '签到设置',
  683. 'menu_type' => '1',
  684. 'icon' => 'iconfont-iconqiandaoshezhi',
  685. 'api_url' => 'coupon',
  686. 'router_path' => 'marketing/sign/config',
  687. 'view_path' => 'marketing/sign_config',
  688. 'methods' => 'get',
  689. 'sort' => '100',
  690. 'status' => '1',
  691. 'is_show' => '1',
  692. ],
  693. [
  694. 'menu_name' => '签到记录',
  695. 'menu_key' => 'sign_list',
  696. 'menu_short_name' => '签到记录',
  697. 'menu_type' => '1',
  698. 'icon' => 'iconfont-iconqiandaojilu',
  699. 'api_url' => 'coupon',
  700. 'router_path' => 'marketing/sign/list',
  701. 'view_path' => 'marketing/sign_list',
  702. 'methods' => 'get',
  703. 'sort' => '90',
  704. 'status' => '1',
  705. 'is_show' => '1',
  706. ],
  707. ],
  708. ],
  709. ]
  710. ],
  711. [
  712. 'menu_name' => '渠道管理',
  713. 'menu_key' => 'channel',
  714. 'menu_short_name' => '渠道',
  715. 'parent_key' => '',
  716. 'menu_type' => '0',
  717. 'icon' => 'element-DataBoard',
  718. 'api_url' => '',
  719. 'router_path' => '',
  720. 'view_path' => '',
  721. 'methods' => '',
  722. 'sort' => '50',
  723. 'status' => '1',
  724. 'is_show' => '1',
  725. 'children' => [
  726. [
  727. 'menu_name' => '电脑端',
  728. 'menu_key' => 'pc_config',
  729. 'menu_short_name' => '电脑端',
  730. 'menu_type' => '1',
  731. 'icon' => 'iconfont-icondesktop',
  732. 'api_url' => 'channel/pc/config',
  733. 'router_path' => 'channel/pc/config',
  734. 'view_path' => 'channel/pc/config',
  735. 'methods' => 'put',
  736. 'sort' => '100',
  737. 'status' => '1',
  738. 'is_show' => '1',
  739. ],
  740. [
  741. 'menu_name' => 'H5端',
  742. 'menu_key' => 'h5_config',
  743. 'menu_short_name' => 'H5端',
  744. 'menu_type' => '1',
  745. 'icon' => 'iconfont-iconh5e',
  746. 'api_url' => 'channel/h5/config',
  747. 'router_path' => 'channel/h5/config',
  748. 'view_path' => 'channel/h5/config',
  749. 'methods' => 'put',
  750. 'sort' => '90',
  751. 'status' => '1',
  752. 'is_show' => '1',
  753. ],
  754. [
  755. 'menu_name' => '微信公众号',
  756. 'menu_key' => 'channel_wechat',
  757. 'menu_short_name' => '微信公众号',
  758. 'menu_type' => '1',
  759. 'icon' => 'iconfont-iconweixingongzhonghao1',
  760. 'api_url' => 'wechat/access',
  761. 'router_path' => 'channel/wechat',
  762. 'view_path' => 'channel/wechat/access',
  763. 'methods' => '',
  764. 'sort' => '80',
  765. 'status' => '1',
  766. 'is_show' => '1',
  767. 'children' => [
  768. [
  769. 'menu_name' => '设置微信菜单',
  770. 'menu_key' => 'channel_wechat_menu_set',
  771. 'menu_short_name' => '设置微信菜单',
  772. 'menu_type' => '2',
  773. 'icon' => '',
  774. 'api_url' => 'wechat/menu',
  775. 'router_path' => '',
  776. 'view_path' => '',
  777. 'methods' => 'put',
  778. 'sort' => '100',
  779. 'status' => '1',
  780. 'is_show' => '1',
  781. ],
  782. [
  783. 'menu_name' => '同步消息模板',
  784. 'menu_key' => 'channel_wechat_template_sync',
  785. 'menu_short_name' => '同步消息模板',
  786. 'menu_type' => '2',
  787. 'icon' => '',
  788. 'api_url' => 'wechat/template/sync',
  789. 'router_path' => '',
  790. 'view_path' => '',
  791. 'methods' => 'put',
  792. 'sort' => '100',
  793. 'status' => '1',
  794. 'is_show' => '1',
  795. ],
  796. [
  797. 'menu_name' => '新增关键词回复',
  798. 'menu_key' => 'channel_wechat_reply_keywords_add',
  799. 'menu_short_name' => '新增关键词回复',
  800. 'menu_type' => '2',
  801. 'icon' => '',
  802. 'api_url' => 'wechat/reply/keywords',
  803. 'router_path' => '',
  804. 'view_path' => '',
  805. 'methods' => 'post',
  806. 'sort' => '100',
  807. 'status' => '1',
  808. 'is_show' => '1',
  809. ],
  810. [
  811. 'menu_name' => '更新关键词回复',
  812. 'menu_key' => 'channel_wechat_reply_keywords_edit',
  813. 'menu_short_name' => '更新关键词回复',
  814. 'menu_type' => '2',
  815. 'icon' => '',
  816. 'api_url' => 'wechat/reply/keywords/<id>',
  817. 'router_path' => '',
  818. 'view_path' => '',
  819. 'methods' => 'put',
  820. 'sort' => '100',
  821. 'status' => '1',
  822. 'is_show' => '1',
  823. ],
  824. [
  825. 'menu_name' => '删除关键词回复',
  826. 'menu_key' => 'channel_wechat_reply_keywords_del',
  827. 'menu_short_name' => '删除关键词回复',
  828. 'menu_type' => '2',
  829. 'icon' => '',
  830. 'api_url' => 'wechat/reply/keywords/<id>',
  831. 'router_path' => '',
  832. 'view_path' => '',
  833. 'methods' => 'delete',
  834. 'sort' => '100',
  835. 'status' => '1',
  836. 'is_show' => '1',
  837. ],
  838. ]
  839. ],
  840. [
  841. 'menu_name' => '微信小程序',
  842. 'menu_key' => 'weapp_access',
  843. 'menu_short_name' => '微信小程序',
  844. 'menu_type' => '1',
  845. 'icon' => 'iconfont-iconxiaochengxushezhi',
  846. 'api_url' => 'weapp/access',
  847. 'router_path' => 'channel/weapp',
  848. 'view_path' => 'channel/weapp/access',
  849. 'methods' => 'get',
  850. 'sort' => '70',
  851. 'status' => '1',
  852. 'is_show' => '1',
  853. 'children' => [
  854. [
  855. 'menu_name' => '添加版本',
  856. 'menu_key' => 'weapp_access_add_version',
  857. 'menu_short_name' => '添加版本',
  858. 'menu_type' => '2',
  859. 'icon' => '',
  860. 'api_url' => 'weapp/version',
  861. 'router_path' => '',
  862. 'view_path' => '',
  863. 'methods' => 'post',
  864. 'sort' => '100',
  865. 'status' => '1',
  866. 'is_show' => '1',
  867. ],
  868. [
  869. 'menu_name' => '同步订阅消息',
  870. 'menu_key' => 'weapp_access_template_sync',
  871. 'menu_short_name' => '同步订阅消息',
  872. 'menu_type' => '2',
  873. 'icon' => '',
  874. 'api_url' => 'weapp/template/sync',
  875. 'router_path' => '',
  876. 'view_path' => '',
  877. 'methods' => 'put',
  878. 'sort' => '100',
  879. 'status' => '1',
  880. 'is_show' => '1',
  881. ],
  882. ]
  883. ],
  884. [
  885. 'menu_name' => '支付宝小程序',
  886. 'menu_key' => 'aliapp_weapp_access',
  887. 'menu_short_name' => '支付宝小程序',
  888. 'menu_type' => '1',
  889. 'icon' => 'iconfont-iconzhifubao',
  890. 'api_url' => 'aliapp/access',
  891. 'router_path' => 'channel/aliapp',
  892. 'view_path' => 'channel/aliapp/access',
  893. 'methods' => 'get',
  894. 'sort' => '60',
  895. 'status' => '1',
  896. 'is_show' => '1',
  897. ],
  898. [
  899. 'menu_name' => '发布教程',
  900. 'menu_key' => 'wechat_course',
  901. 'menu_short_name' => '发布教程',
  902. 'menu_type' => '1',
  903. 'icon' => '',
  904. 'api_url' => 'wechat/course',
  905. 'router_path' => 'channel/wechat/course',
  906. 'view_path' => 'channel/wechat/course',
  907. 'methods' => 'get',
  908. 'sort' => '0',
  909. 'status' => '1',
  910. 'is_show' => '0',
  911. ],
  912. [
  913. 'menu_name' => '公众号配置',
  914. 'menu_key' => 'wechat_config',
  915. 'menu_short_name' => '公众号配置',
  916. 'menu_type' => '1',
  917. 'icon' => '',
  918. 'api_url' => 'wechat/config',
  919. 'router_path' => 'channel/wechat/config',
  920. 'view_path' => 'channel/wechat/config',
  921. 'methods' => 'get',
  922. 'sort' => '0',
  923. 'status' => '1',
  924. 'is_show' => '0',
  925. 'children' => [
  926. [
  927. 'menu_name' => '保存设置',
  928. 'menu_key' => 'wechat_config_set',
  929. 'menu_short_name' => '保存设置',
  930. 'menu_type' => '2',
  931. 'icon' => '',
  932. 'api_url' => 'wechat/config',
  933. 'router_path' => '',
  934. 'view_path' => '',
  935. 'methods' => 'put',
  936. 'sort' => '100',
  937. 'status' => '1',
  938. 'is_show' => '1',
  939. ],
  940. ],
  941. ],
  942. [
  943. 'menu_name' => '公众号回复配置',
  944. 'menu_key' => 'wechat_reply_config',
  945. 'menu_short_name' => '公众号回复配置',
  946. 'menu_type' => '1',
  947. 'icon' => '',
  948. 'api_url' => '',
  949. 'router_path' => 'channel/wechat/reply',
  950. 'view_path' => 'channel/wechat/reply',
  951. 'methods' => 'get',
  952. 'sort' => '0',
  953. 'status' => '1',
  954. 'is_show' => '0',
  955. 'children' => [
  956. [
  957. 'menu_name' => '默认回复设置',
  958. 'menu_key' => 'wechat_default_reply_set',
  959. 'menu_short_name' => '默认回复设置',
  960. 'menu_type' => '2',
  961. 'icon' => '',
  962. 'api_url' => 'channel/wechat/reply/default',
  963. 'router_path' => '',
  964. 'view_path' => '',
  965. 'methods' => 'put',
  966. 'sort' => '100',
  967. 'status' => '1',
  968. 'is_show' => '1',
  969. ],
  970. [
  971. 'menu_name' => '关注回复设置',
  972. 'menu_key' => 'wechat_subscribe_reply_set',
  973. 'menu_short_name' => '关注回复设置',
  974. 'menu_type' => '2',
  975. 'icon' => '',
  976. 'api_url' => 'channel/wechat/reply/subscribe',
  977. 'router_path' => '',
  978. 'view_path' => '',
  979. 'methods' => 'put',
  980. 'sort' => '100',
  981. 'status' => '1',
  982. 'is_show' => '1',
  983. ]
  984. ]
  985. ],
  986. [
  987. 'menu_name' => '关键字回复添加/编辑',
  988. 'menu_key' => 'wechat_keyword_reply',
  989. 'menu_short_name' => '关键字回复添加/编辑',
  990. 'menu_type' => '1',
  991. 'icon' => '',
  992. 'api_url' => 'channel/wechat/reply/keywords/<id>',
  993. 'router_path' => 'channel/wechat/keyword_reply_edit',
  994. 'view_path' => 'channel/wechat/keyword_reply_edit',
  995. 'methods' => 'get',
  996. 'sort' => '0',
  997. 'status' => '1',
  998. 'is_show' => '0',
  999. 'children' => [
  1000. [
  1001. 'menu_name' => '关键字回复添加',
  1002. 'menu_key' => 'wechat_keyword_reply_add',
  1003. 'menu_short_name' => '关键字回复添加',
  1004. 'menu_type' => '2',
  1005. 'icon' => '',
  1006. 'api_url' => 'channel/wechat/reply/keywords/<id>',
  1007. 'router_path' => '',
  1008. 'view_path' => '',
  1009. 'methods' => 'post',
  1010. 'sort' => '0',
  1011. 'status' => '1',
  1012. 'is_show' => '1',
  1013. ],
  1014. [
  1015. 'menu_name' => '关键字回复编辑',
  1016. 'menu_key' => 'wechat_keyword_reply_edit',
  1017. 'menu_short_name' => '关键字回复编辑',
  1018. 'menu_type' => '2',
  1019. 'icon' => '',
  1020. 'api_url' => 'channel/wechat/reply/keywords/<id>',
  1021. 'router_path' => '',
  1022. 'view_path' => '',
  1023. 'methods' => 'put',
  1024. 'sort' => '0',
  1025. 'status' => '1',
  1026. 'is_show' => '1',
  1027. ],
  1028. [
  1029. 'menu_name' => '关键字回复删除',
  1030. 'menu_key' => 'wechat_keyword_reply_delete',
  1031. 'menu_short_name' => '关键字回复编辑',
  1032. 'menu_type' => '2',
  1033. 'icon' => '',
  1034. 'api_url' => 'channel/wechat/reply/keywords/<id>',
  1035. 'router_path' => '',
  1036. 'view_path' => '',
  1037. 'methods' => 'delete',
  1038. 'sort' => '0',
  1039. 'status' => '1',
  1040. 'is_show' => '1',
  1041. ],
  1042. ]
  1043. ],
  1044. [
  1045. 'menu_name' => '自定义菜单',
  1046. 'menu_key' => 'wechat_menu',
  1047. 'menu_short_name' => '自定义菜单',
  1048. 'menu_type' => '1',
  1049. 'icon' => '',
  1050. 'api_url' => 'wechat/menu',
  1051. 'router_path' => 'channel/wechat/menu',
  1052. 'view_path' => 'channel/wechat/menu',
  1053. 'methods' => 'get',
  1054. 'sort' => '0',
  1055. 'status' => '1',
  1056. 'is_show' => '0',
  1057. ],
  1058. [
  1059. 'menu_name' => '模板消息',
  1060. 'menu_key' => 'wechat_template_message',
  1061. 'menu_short_name' => '模板消息',
  1062. 'menu_type' => '1',
  1063. 'icon' => 'iconfont-iconxiaoximoban',
  1064. 'api_url' => 'wechat/template',
  1065. 'router_path' => 'channel/wechat/message',
  1066. 'view_path' => 'channel/wechat/template',
  1067. 'methods' => 'get',
  1068. 'sort' => '0',
  1069. 'status' => '1',
  1070. 'is_show' => '0',
  1071. ],
  1072. [
  1073. 'menu_name' => '配置教程',
  1074. 'menu_key' => 'weapp_course',
  1075. 'menu_short_name' => '配置教程',
  1076. 'menu_type' => '1',
  1077. 'icon' => '',
  1078. 'api_url' => 'weapp/course',
  1079. 'router_path' => 'channel/weapp/course',
  1080. 'view_path' => 'channel/weapp/course',
  1081. 'methods' => 'get',
  1082. 'sort' => '0',
  1083. 'status' => '1',
  1084. 'is_show' => '0',
  1085. ],
  1086. [
  1087. 'menu_name' => '小程序配置',
  1088. 'menu_key' => 'weapp_config',
  1089. 'menu_short_name' => '小程序配置',
  1090. 'menu_type' => '1',
  1091. 'icon' => '',
  1092. 'api_url' => 'weapp/config',
  1093. 'router_path' => 'channel/weapp/config',
  1094. 'view_path' => 'channel/weapp/config',
  1095. 'methods' => 'get',
  1096. 'sort' => '0',
  1097. 'status' => '1',
  1098. 'is_show' => '0',
  1099. 'children' => [
  1100. [
  1101. 'menu_name' => '保存设置',
  1102. 'menu_key' => 'weapp_config_set',
  1103. 'menu_short_name' => '保存设置',
  1104. 'menu_type' => '2',
  1105. 'icon' => '',
  1106. 'api_url' => 'weapp/config',
  1107. 'router_path' => '',
  1108. 'view_path' => '',
  1109. 'methods' => 'put',
  1110. 'sort' => '100',
  1111. 'status' => '1',
  1112. 'is_show' => '1',
  1113. ],
  1114. ],
  1115. ],
  1116. [
  1117. 'menu_name' => '订阅消息',
  1118. 'menu_key' => 'weapp_template_message',
  1119. 'menu_short_name' => '订阅消息',
  1120. 'menu_type' => '1',
  1121. 'icon' => '',
  1122. 'api_url' => 'weapp/template',
  1123. 'router_path' => 'channel/weapp/message',
  1124. 'view_path' => 'channel/weapp/template',
  1125. 'methods' => 'get',
  1126. 'sort' => '0',
  1127. 'status' => '1',
  1128. 'is_show' => '0',
  1129. ],
  1130. [
  1131. 'menu_name' => '小程序发布',
  1132. 'menu_key' => 'weapp_code',
  1133. 'menu_short_name' => '小程序发布',
  1134. 'menu_type' => '1',
  1135. 'icon' => '',
  1136. 'api_url' => 'weapp/code',
  1137. 'router_path' => 'channel/weapp/code',
  1138. 'view_path' => 'channel/weapp/code',
  1139. 'methods' => 'get',
  1140. 'sort' => '0',
  1141. 'status' => '1',
  1142. 'is_show' => '0',
  1143. ],
  1144. [
  1145. 'menu_name' => '支付宝配置',
  1146. 'menu_key' => 'aliapp_config',
  1147. 'menu_short_name' => '支付宝配置',
  1148. 'menu_type' => '1',
  1149. 'icon' => '',
  1150. 'api_url' => 'aliapp/config',
  1151. 'router_path' => 'channel/aliapp/config',
  1152. 'view_path' => 'channel/aliapp/config',
  1153. 'methods' => 'put',
  1154. 'sort' => '0',
  1155. 'status' => '1',
  1156. 'is_show' => '0',
  1157. 'children' => [
  1158. [
  1159. 'menu_name' => '保存设置',
  1160. 'menu_key' => 'aliapp_config_set',
  1161. 'menu_short_name' => '保存设置',
  1162. 'menu_type' => '2',
  1163. 'icon' => '',
  1164. 'api_url' => 'aliapp/config',
  1165. 'router_path' => '',
  1166. 'view_path' => '',
  1167. 'methods' => 'put',
  1168. 'sort' => '100',
  1169. 'status' => '1',
  1170. 'is_show' => '1',
  1171. ],
  1172. ],
  1173. ],
  1174. [
  1175. 'menu_name' => '配置教程',
  1176. 'menu_key' => 'aliapp_course',
  1177. 'menu_short_name' => '配置教程',
  1178. 'menu_type' => '1',
  1179. 'icon' => '',
  1180. 'api_url' => 'aliapp/course',
  1181. 'router_path' => 'channel/aliapp/course',
  1182. 'view_path' => 'channel/aliapp/course',
  1183. 'methods' => 'get',
  1184. 'sort' => '0',
  1185. 'status' => '1',
  1186. 'is_show' => '0',
  1187. ],
  1188. ],
  1189. ],
  1190. [
  1191. 'menu_name' => '网站装修',
  1192. 'menu_key' => 'web_diy',
  1193. 'menu_short_name' => '网站',
  1194. 'parent_key' => '',
  1195. 'menu_type' => '0',
  1196. 'icon' => 'element-Brush',
  1197. 'api_url' => '',
  1198. 'router_path' => '',
  1199. 'view_path' => '',
  1200. 'methods' => '',
  1201. 'sort' => '90',
  1202. 'status' => '1',
  1203. 'is_show' => '1',
  1204. 'children' => [
  1205. [
  1206. 'menu_name' => '手机端',
  1207. 'menu_key' => 'diy_wap',
  1208. 'menu_short_name' => '手机端',
  1209. 'menu_type' => '0',
  1210. 'icon' => 'iconfont-iconshoujiduan',
  1211. 'api_url' => '',
  1212. 'router_path' => '',
  1213. 'view_path' => '',
  1214. 'methods' => '',
  1215. 'sort' => '100',
  1216. 'status' => '1',
  1217. 'is_show' => '1',
  1218. 'children' =>[
  1219. [
  1220. 'menu_name' => '启动页',
  1221. 'menu_key' => 'diy_page_decorate_index',
  1222. 'menu_short_name' => '启动页',
  1223. 'menu_type' => '1',
  1224. 'icon' => 'element-House',
  1225. 'api_url' => '',
  1226. 'router_path' => 'diy/index',
  1227. 'view_path' => 'diy/index',
  1228. 'methods' => '',
  1229. 'sort' => '100',
  1230. 'status' => '1',
  1231. 'is_show' => '1',
  1232. ],
  1233. [
  1234. 'menu_name' => '个人中心',
  1235. 'menu_key' => 'diy_page_decorate_member_index',
  1236. 'menu_short_name' => '个人中心',
  1237. 'menu_type' => '1',
  1238. 'icon' => 'iconfont-iconhuiyuanliebiao',
  1239. 'api_url' => '',
  1240. 'router_path' => 'diy/member',
  1241. 'view_path' => 'diy/member',
  1242. 'methods' => '',
  1243. 'sort' => '99',
  1244. 'status' => '1',
  1245. 'is_show' => '1',
  1246. ],
  1247. [
  1248. 'menu_name' => '微页面',
  1249. 'menu_key' => 'diy_page_list',
  1250. 'menu_short_name' => '微页面',
  1251. 'menu_type' => '1',
  1252. 'icon' => 'iconfont-iconweiyemian',
  1253. 'api_url' => 'diy/diy',
  1254. 'router_path' => 'diy/list',
  1255. 'view_path' => 'diy/list',
  1256. 'methods' => 'get',
  1257. 'sort' => '90',
  1258. 'status' => '1',
  1259. 'is_show' => '1',
  1260. 'children' => [
  1261. [
  1262. 'menu_name' => '保存',
  1263. 'menu_key' => 'diy_page_update',
  1264. 'menu_short_name' => '保存',
  1265. 'menu_type' => '2',
  1266. 'icon' => '',
  1267. 'api_url' => 'diy/diy',
  1268. 'router_path' => '',
  1269. 'view_path' => '',
  1270. 'methods' => 'post',
  1271. 'sort' => '95',
  1272. 'status' => '1',
  1273. 'is_show' => '1',
  1274. ],
  1275. [
  1276. 'menu_name' => '删除',
  1277. 'menu_key' => 'diy_page_delete',
  1278. 'menu_short_name' => '删除',
  1279. 'menu_type' => '2',
  1280. 'icon' => '',
  1281. 'api_url' => 'diy/diy/<id>',
  1282. 'router_path' => '',
  1283. 'view_path' => '',
  1284. 'methods' => 'delete',
  1285. 'sort' => '95',
  1286. 'status' => '1',
  1287. 'is_show' => '1',
  1288. ],
  1289. [
  1290. 'menu_name' => '页面分享内容设置',
  1291. 'menu_key' => 'diy_page_share_set',
  1292. 'menu_short_name' => '页面分享内容设置',
  1293. 'menu_type' => '2',
  1294. 'icon' => '',
  1295. 'api_url' => 'diy/share',
  1296. 'router_path' => '',
  1297. 'view_path' => '',
  1298. 'methods' => 'put',
  1299. 'sort' => '100',
  1300. 'status' => '1',
  1301. 'is_show' => '1',
  1302. ],
  1303. ]
  1304. ],
  1305. [
  1306. 'menu_name' => '页面路径',
  1307. 'menu_key' => 'diy_page_route',
  1308. 'menu_short_name' => '页面路径',
  1309. 'menu_type' => '1',
  1310. 'icon' => 'iconfont-iconyemianlujing',
  1311. 'api_url' => 'diy/diy',
  1312. 'router_path' => 'diy/route',
  1313. 'view_path' => 'diy/route',
  1314. 'methods' => 'get',
  1315. 'sort' => '85',
  1316. 'status' => '1',
  1317. 'is_show' => '1',
  1318. 'children' => [
  1319. [
  1320. 'menu_name' => '分享设置',
  1321. 'menu_key' => 'diy_page_route_share_set',
  1322. 'menu_short_name' => '分享设置',
  1323. 'menu_type' => '2',
  1324. 'icon' => '',
  1325. 'api_url' => 'route/share',
  1326. 'router_path' => '',
  1327. 'view_path' => '',
  1328. 'methods' => 'put',
  1329. 'sort' => '100',
  1330. 'status' => '1',
  1331. 'is_show' => '1',
  1332. ],
  1333. ],
  1334. ],
  1335. [
  1336. 'menu_name' => '底部导航',
  1337. 'menu_key' => 'diy_bottom',
  1338. 'menu_short_name' => '底部导航',
  1339. 'menu_type' => '1',
  1340. 'icon' => 'iconfont-icondibudaohang',
  1341. 'api_url' => 'diy/bottom',
  1342. 'router_path' => 'diy/tabbar',
  1343. 'view_path' => 'diy/tabbar',
  1344. 'methods' => 'get',
  1345. 'sort' => '80',
  1346. 'status' => '1',
  1347. 'is_show' => '1',
  1348. 'children' => [
  1349. [
  1350. 'menu_name' => '保存',
  1351. 'menu_key' => 'diy_tabbar_update',
  1352. 'menu_short_name' => '保存',
  1353. 'menu_type' => '2',
  1354. 'icon' => '',
  1355. 'api_url' => 'diy/bottom',
  1356. 'router_path' => '',
  1357. 'view_path' => '',
  1358. 'methods' => 'post',
  1359. 'sort' => '100',
  1360. 'status' => '1',
  1361. 'is_show' => '1',
  1362. ],
  1363. ],
  1364. ],
  1365. ],
  1366. ],
  1367. [
  1368. 'menu_name' => '电脑端',
  1369. 'menu_key' => 'diy_web',
  1370. 'menu_short_name' => '电脑端',
  1371. 'menu_type' => '0',
  1372. 'icon' => 'iconfont-icondesktop',
  1373. 'api_url' => '',
  1374. 'router_path' => 'web',
  1375. 'view_path' => '',
  1376. 'methods' => '',
  1377. 'sort' => '99',
  1378. 'status' => '1',
  1379. 'is_show' => '1',
  1380. 'children' =>[
  1381. [
  1382. 'menu_name' => '首页导航',
  1383. 'menu_key' => 'diy_web_nav',
  1384. 'menu_short_name' => '首页导航',
  1385. 'menu_type' => '1',
  1386. 'icon' => 'iconfont-iconshouye1',
  1387. 'api_url' => '',
  1388. 'router_path' => 'web/nav',
  1389. 'view_path' => 'web/nav',
  1390. 'methods' => '',
  1391. 'sort' => '100',
  1392. 'status' => '1',
  1393. 'is_show' => '1',
  1394. 'children' => [
  1395. [
  1396. 'menu_name' => '首页导航添加',
  1397. 'menu_key' => 'diy_web_nav_add',
  1398. 'menu_short_name' => '首页导航添加',
  1399. 'menu_type' => '2',
  1400. 'icon' => '',
  1401. 'api_url' => 'web/nav',
  1402. 'router_path' => '',
  1403. 'view_path' => '',
  1404. 'methods' => 'post',
  1405. 'sort' => '1',
  1406. 'status' => '1',
  1407. 'is_show' => '1',
  1408. ],
  1409. [
  1410. 'menu_name' => '首页导航编辑',
  1411. 'menu_key' => 'diy_web_nav_edit',
  1412. 'menu_short_name' => '首页导航编辑',
  1413. 'menu_type' => '2',
  1414. 'icon' => '',
  1415. 'api_url' => 'web/nav/<id>',
  1416. 'router_path' => '',
  1417. 'view_path' => '',
  1418. 'methods' => 'put',
  1419. 'sort' => '1',
  1420. 'status' => '1',
  1421. 'is_show' => '1',
  1422. ],
  1423. [
  1424. 'menu_name' => '首页导航删除',
  1425. 'menu_key' => 'diy_web_nav_delete',
  1426. 'menu_short_name' => '首页导航删除',
  1427. 'menu_type' => '2',
  1428. 'icon' => '',
  1429. 'api_url' => 'web/nav/<id>',
  1430. 'router_path' => '',
  1431. 'view_path' => '',
  1432. 'methods' => 'delete',
  1433. 'sort' => '1',
  1434. 'status' => '1',
  1435. 'is_show' => '1',
  1436. ]
  1437. ]
  1438. ],
  1439. [
  1440. 'menu_name' => '友情链接',
  1441. 'menu_key' => 'diy_web_friendly_link',
  1442. 'menu_short_name' => '友情链接',
  1443. 'menu_type' => '1',
  1444. 'icon' => 'iconfont-iconyouqinglianjie1',
  1445. 'api_url' => '',
  1446. 'router_path' => 'web/friendly_link',
  1447. 'view_path' => 'web/friendly_link',
  1448. 'methods' => '',
  1449. 'sort' => '100',
  1450. 'status' => '1',
  1451. 'is_show' => '1',
  1452. 'children' => [
  1453. [
  1454. 'menu_name' => '友情链接添加',
  1455. 'menu_key' => 'diy_web_friendly_link_add',
  1456. 'menu_short_name' => '友情链接添加',
  1457. 'menu_type' => '2',
  1458. 'icon' => '',
  1459. 'api_url' => 'web/friendly_link',
  1460. 'router_path' => '',
  1461. 'view_path' => '',
  1462. 'methods' => 'post',
  1463. 'sort' => '1',
  1464. 'status' => '1',
  1465. 'is_show' => '1',
  1466. ],
  1467. [
  1468. 'menu_name' => '友情链接编辑',
  1469. 'menu_key' => 'diy_web_friendly_link_edit',
  1470. 'menu_short_name' => '友情链接编辑',
  1471. 'menu_type' => '2',
  1472. 'icon' => '',
  1473. 'api_url' => 'web/friendly_link/<id>',
  1474. 'router_path' => '',
  1475. 'view_path' => '',
  1476. 'methods' => 'put',
  1477. 'sort' => '1',
  1478. 'status' => '1',
  1479. 'is_show' => '1',
  1480. ],
  1481. [
  1482. 'menu_name' => '友情链接删除',
  1483. 'menu_key' => 'diy_web_friendly_link_delete',
  1484. 'menu_short_name' => '友情链接删除',
  1485. 'menu_type' => '2',
  1486. 'icon' => '',
  1487. 'api_url' => 'web/friendly_link/<id>',
  1488. 'router_path' => '',
  1489. 'view_path' => '',
  1490. 'methods' => 'delete',
  1491. 'sort' => '1',
  1492. 'status' => '1',
  1493. 'is_show' => '1',
  1494. ]
  1495. ]
  1496. ],
  1497. ],
  1498. ],
  1499. [
  1500. 'menu_name' => '广告位',
  1501. 'menu_key' => 'diy_adv_position',
  1502. 'menu_short_name' => '广告位',
  1503. 'menu_type' => '1',
  1504. 'icon' => 'iconfont-icontupianguanggao1',
  1505. 'api_url' => '',
  1506. 'router_path' => 'diy/adv_position',
  1507. 'view_path' => 'diy/adv_position',
  1508. 'methods' => 'get',
  1509. 'sort' => '75',
  1510. 'status' => '1',
  1511. 'is_show' => '1',
  1512. ],
  1513. [
  1514. 'menu_name' => '文章管理',
  1515. 'menu_key' => 'article',
  1516. 'menu_short_name' => '文章管理',
  1517. 'menu_type' => '1',
  1518. 'icon' => 'iconfont-iconwenzhangguanli1',
  1519. 'api_url' => '',
  1520. 'router_path' => 'article',
  1521. 'view_path' => '',
  1522. 'methods' => '',
  1523. 'sort' => '60',
  1524. 'status' => '1',
  1525. 'is_show' => '1',
  1526. 'children' =>[
  1527. [
  1528. 'menu_name' => '文章列表',
  1529. 'menu_key' => 'article_list',
  1530. 'menu_short_name' => '文章列表',
  1531. 'menu_type' => '1',
  1532. 'icon' => 'iconfont-iconwenzhangliebiao1',
  1533. 'api_url' => '',
  1534. 'router_path' => 'article/list',
  1535. 'view_path' => 'article/list',
  1536. 'methods' => '',
  1537. 'sort' => '100',
  1538. 'status' => '1',
  1539. 'is_show' => '1',
  1540. 'children' => [
  1541. [
  1542. 'menu_name' => '文章删除',
  1543. 'menu_key' => 'article_delete',
  1544. 'menu_short_name' => '文章删除',
  1545. 'menu_type' => '2',
  1546. 'icon' => '',
  1547. 'api_url' => 'article/article/<id>',
  1548. 'router_path' => '',
  1549. 'view_path' => '',
  1550. 'methods' => 'delete',
  1551. 'sort' => '1',
  1552. 'status' => '1',
  1553. 'is_show' => '1',
  1554. ]
  1555. ]
  1556. ],
  1557. [
  1558. 'menu_name' => '文章添加/编辑',
  1559. 'menu_key' => 'article_add_edit',
  1560. 'menu_short_name' => '文章添加/编辑',
  1561. 'menu_type' => '1',
  1562. 'icon' => '',
  1563. 'api_url' => '',
  1564. 'router_path' => 'article/edit',
  1565. 'view_path' => 'article/edit',
  1566. 'methods' => 'post',
  1567. 'sort' => '90',
  1568. 'status' => '1',
  1569. 'is_show' => '0',
  1570. 'children' =>[
  1571. [
  1572. 'menu_name' => '文章添加',
  1573. 'menu_key' => 'article_add',
  1574. 'menu_short_name' => '文章添加',
  1575. 'menu_type' => '2',
  1576. 'icon' => '',
  1577. 'api_url' => 'article/article',
  1578. 'router_path' => '',
  1579. 'view_path' => '',
  1580. 'methods' => 'post',
  1581. 'sort' => '1',
  1582. 'status' => '1',
  1583. 'is_show' => '1',
  1584. ],
  1585. [
  1586. 'menu_name' => '文章编辑',
  1587. 'menu_key' => 'article_edit',
  1588. 'menu_short_name' => '文章编辑',
  1589. 'menu_type' => '2',
  1590. 'icon' => '',
  1591. 'api_url' => 'article/article/<id>',
  1592. 'router_path' => '',
  1593. 'view_path' => '',
  1594. 'methods' => 'put',
  1595. 'sort' => '1',
  1596. 'status' => '1',
  1597. 'is_show' => '1',
  1598. ],
  1599. ]
  1600. ],
  1601. [
  1602. 'menu_name' => '文章栏目',
  1603. 'menu_key' => 'article_category',
  1604. 'menu_short_name' => '文章栏目',
  1605. 'menu_type' => '1',
  1606. 'icon' => 'iconfont-iconwenzhanglanmu1',
  1607. 'api_url' => '',
  1608. 'router_path' => 'article/category',
  1609. 'view_path' => 'article/category',
  1610. 'methods' => '',
  1611. 'sort' => '100',
  1612. 'status' => '1',
  1613. 'is_show' => '1',
  1614. 'children' => [
  1615. [
  1616. 'menu_name' => '文章栏目添加',
  1617. 'menu_key' => 'article_category_add',
  1618. 'menu_short_name' => '文章栏目添加',
  1619. 'menu_type' => '2',
  1620. 'icon' => '',
  1621. 'api_url' => 'article/category',
  1622. 'router_path' => '',
  1623. 'view_path' => '',
  1624. 'methods' => 'post',
  1625. 'sort' => '1',
  1626. 'status' => '1',
  1627. 'is_show' => '1',
  1628. ],
  1629. [
  1630. 'menu_name' => '文章栏目编辑',
  1631. 'menu_key' => 'article_category_edit',
  1632. 'menu_short_name' => '文章栏目编辑',
  1633. 'menu_type' => '2',
  1634. 'icon' => '',
  1635. 'api_url' => 'article/category/<id>',
  1636. 'router_path' => '',
  1637. 'view_path' => '',
  1638. 'methods' => 'put',
  1639. 'sort' => '1',
  1640. 'status' => '1',
  1641. 'is_show' => '1',
  1642. ],
  1643. [
  1644. 'menu_name' => '文章栏目删除',
  1645. 'menu_key' => 'article_category_delete',
  1646. 'menu_short_name' => '文章栏目删除',
  1647. 'menu_type' => '2',
  1648. 'icon' => '',
  1649. 'api_url' => 'article/category/<category_id>',
  1650. 'router_path' => '',
  1651. 'view_path' => '',
  1652. 'methods' => 'delete',
  1653. 'sort' => '1',
  1654. 'status' => '1',
  1655. 'is_show' => '1',
  1656. ]
  1657. ]
  1658. ],
  1659. ],
  1660. ],
  1661. [
  1662. 'menu_name' => '广告管理',
  1663. 'menu_key' => 'diy_adv',
  1664. 'menu_short_name' => '广告',
  1665. 'menu_type' => '1',
  1666. 'icon' => 'element-House',
  1667. 'api_url' => '',
  1668. 'router_path' => 'diy/adv',
  1669. 'view_path' => 'diy/adv',
  1670. 'methods' => '',
  1671. 'sort' => '100',
  1672. 'status' => '1',
  1673. 'is_show' => '0',
  1674. 'children' => [
  1675. [
  1676. 'menu_name' => '广告添加',
  1677. 'menu_key' => 'diy_adv_add',
  1678. 'menu_short_name' => '广告添加',
  1679. 'menu_type' => '2',
  1680. 'icon' => '',
  1681. 'api_url' => 'diy/adv',
  1682. 'router_path' => '',
  1683. 'view_path' => '',
  1684. 'methods' => 'post',
  1685. 'sort' => '1',
  1686. 'status' => '1',
  1687. 'is_show' => '1',
  1688. ],
  1689. [
  1690. 'menu_name' => '广告编辑',
  1691. 'menu_key' => 'diy_adv_edit',
  1692. 'menu_short_name' => '广告编辑',
  1693. 'menu_type' => '2',
  1694. 'icon' => '',
  1695. 'api_url' => 'diy/adv/<id>',
  1696. 'router_path' => '',
  1697. 'view_path' => '',
  1698. 'methods' => 'put',
  1699. 'sort' => '1',
  1700. 'status' => '1',
  1701. 'is_show' => '1',
  1702. ],
  1703. [
  1704. 'menu_name' => '广告删除',
  1705. 'menu_key' => 'diy_adv_delete',
  1706. 'menu_short_name' => '广告删除',
  1707. 'menu_type' => '2',
  1708. 'icon' => '',
  1709. 'api_url' => 'diy/adv/<id>',
  1710. 'router_path' => '',
  1711. 'view_path' => '',
  1712. 'methods' => 'delete',
  1713. 'sort' => '1',
  1714. 'status' => '1',
  1715. 'is_show' => '1',
  1716. ]
  1717. ]
  1718. ],
  1719. [
  1720. 'menu_name' => '素材管理',
  1721. 'menu_key' => 'attachment',
  1722. 'menu_short_name' => '素材管理',
  1723. 'menu_type' => '1',
  1724. 'icon' => 'iconfont-iconsucaiguanli',
  1725. 'api_url' => 'sys/attachment',
  1726. 'router_path' => 'diy/attachment',
  1727. 'view_path' => 'tools/attachment',
  1728. 'methods' => 'get',
  1729. 'sort' => '75',
  1730. 'status' => '1',
  1731. 'is_show' => '1',
  1732. 'children' => [
  1733. [
  1734. 'menu_name' => '素材移动',
  1735. 'menu_key' => 'attachment_move',
  1736. 'menu_short_name' => '素材移动',
  1737. 'menu_type' => '2',
  1738. 'icon' => '',
  1739. 'api_url' => 'sys/attachment/batchmove',
  1740. 'router_path' => '',
  1741. 'view_path' => '',
  1742. 'methods' => 'put',
  1743. 'sort' => '1',
  1744. 'status' => '1',
  1745. 'is_show' => '1',
  1746. ],
  1747. [
  1748. 'menu_name' => '素材删除',
  1749. 'menu_key' => 'attachment_del',
  1750. 'menu_short_name' => '素材删除',
  1751. 'menu_type' => '2',
  1752. 'icon' => '',
  1753. 'api_url' => 'sys/attachment/del',
  1754. 'router_path' => '',
  1755. 'view_path' => '',
  1756. 'methods' => 'delete',
  1757. 'sort' => '1',
  1758. 'status' => '1',
  1759. 'is_show' => '1',
  1760. ],
  1761. [
  1762. 'menu_name' => '分组添加',
  1763. 'menu_key' => 'attachment_category_add',
  1764. 'menu_short_name' => '分组添加',
  1765. 'menu_type' => '2',
  1766. 'icon' => '',
  1767. 'api_url' => 'sys/attachment/category',
  1768. 'router_path' => '',
  1769. 'view_path' => '',
  1770. 'methods' => 'post',
  1771. 'sort' => '1',
  1772. 'status' => '1',
  1773. 'is_show' => '1',
  1774. ],
  1775. [
  1776. 'menu_name' => '分组编辑',
  1777. 'menu_key' => 'attachment_category_edit',
  1778. 'menu_short_name' => '分组编辑',
  1779. 'menu_type' => '2',
  1780. 'icon' => '',
  1781. 'api_url' => 'sys/attachment/category/<id>',
  1782. 'router_path' => '',
  1783. 'view_path' => '',
  1784. 'methods' => 'put',
  1785. 'sort' => '1',
  1786. 'status' => '1',
  1787. 'is_show' => '1',
  1788. ],
  1789. [
  1790. 'menu_name' => '分组删除',
  1791. 'menu_key' => 'attachment_category_del',
  1792. 'menu_short_name' => '分组删除',
  1793. 'menu_type' => '2',
  1794. 'icon' => '',
  1795. 'api_url' => 'sys/attachment/category/<id>',
  1796. 'router_path' => '',
  1797. 'view_path' => '',
  1798. 'methods' => 'delete',
  1799. 'sort' => '1',
  1800. 'status' => '1',
  1801. 'is_show' => '1',
  1802. ],
  1803. [
  1804. 'menu_name' => '附件图片上传',
  1805. 'menu_key' => 'attachment_image_upload',
  1806. 'menu_short_name' => '附件图片上传',
  1807. 'menu_type' => '2',
  1808. 'icon' => '',
  1809. 'api_url' => 'sys/image',
  1810. 'router_path' => '',
  1811. 'view_path' => '',
  1812. 'methods' => 'post',
  1813. 'sort' => '1',
  1814. 'status' => '1',
  1815. 'is_show' => '1',
  1816. ],
  1817. [
  1818. 'menu_name' => '附件视频上传',
  1819. 'menu_key' => 'attachment_video_upload',
  1820. 'menu_short_name' => '附件视频上传',
  1821. 'menu_type' => '2',
  1822. 'icon' => '',
  1823. 'api_url' => 'sys/video',
  1824. 'router_path' => '',
  1825. 'view_path' => '',
  1826. 'methods' => 'post',
  1827. 'sort' => '1',
  1828. 'status' => '1',
  1829. 'is_show' => '1',
  1830. ],
  1831. [
  1832. 'menu_name' => '附件上传',
  1833. 'menu_key' => 'attachment_document_upload',
  1834. 'menu_short_name' => '附件上传',
  1835. 'menu_type' => '2',
  1836. 'icon' => '',
  1837. 'api_url' => 'sys/document/<type>',
  1838. 'router_path' => '',
  1839. 'view_path' => '',
  1840. 'methods' => 'post',
  1841. 'sort' => '1',
  1842. 'status' => '1',
  1843. 'is_show' => '1',
  1844. ]
  1845. ]
  1846. ],
  1847. [
  1848. 'menu_name' => '海报管理',
  1849. 'menu_key' => 'poster_management',
  1850. 'menu_short_name' => '海报管理',
  1851. 'menu_type' => '1',
  1852. 'icon' => 'iconfont iconshangpintupianpc',
  1853. 'api_url' => 'poster',
  1854. 'router_path' => 'poster/list',
  1855. 'view_path' => 'poster/list',
  1856. 'methods' => 'get',
  1857. 'sort' => '50',
  1858. 'status' => '1',
  1859. 'is_show' => '1',
  1860. ],
  1861. [
  1862. 'menu_name' => '海报装修',
  1863. 'menu_key' => 'poster_decorate',
  1864. 'menu_short_name' => '海报装修',
  1865. 'menu_type' => '1',
  1866. 'icon' => '',
  1867. 'api_url' => 'poster/<id>',
  1868. 'router_path' => 'poster/edit',
  1869. 'view_path' => 'poster/edit',
  1870. 'methods' => 'put',
  1871. 'sort' => '0',
  1872. 'status' => '1',
  1873. 'is_show' => '0',
  1874. ]
  1875. ],
  1876. ],
  1877. [
  1878. 'menu_name' => '页面装修',
  1879. 'menu_key' => 'decorate',
  1880. 'menu_short_name' => '页面装修',
  1881. 'parent_key' => '',
  1882. 'menu_type' => '0',
  1883. 'icon' => '',
  1884. 'api_url' => '',
  1885. 'router_path' => '',
  1886. 'view_path' => '',
  1887. 'methods' => '',
  1888. 'sort' => '21',
  1889. 'status' => '1',
  1890. 'is_show' => '0',
  1891. 'children' => [
  1892. [
  1893. 'menu_name' => '装修',
  1894. 'menu_key' => 'page_decorate',
  1895. 'menu_short_name' => '装修',
  1896. 'menu_type' => '1',
  1897. 'icon' => '',
  1898. 'api_url' => 'diy/diy/<id>',
  1899. 'router_path' => 'decorate/edit',
  1900. 'view_path' => 'diy/edit',
  1901. 'methods' => 'put',
  1902. 'sort' => '0',
  1903. 'status' => '1',
  1904. 'is_show' => '0',
  1905. 'children' => [
  1906. [
  1907. 'menu_name' => '切换模板',
  1908. 'menu_key' => 'page_change_template',
  1909. 'menu_short_name' => '切换模板',
  1910. 'menu_type' => '2',
  1911. 'icon' => '',
  1912. 'api_url' => 'diy/change',
  1913. 'router_path' => '',
  1914. 'view_path' => '',
  1915. 'methods' => 'put',
  1916. 'sort' => '0',
  1917. 'status' => '1',
  1918. 'is_show' => '0',
  1919. ],
  1920. [
  1921. 'menu_name' => '设为使用',
  1922. 'menu_key' => 'page_set_use',
  1923. 'menu_short_name' => '设为使用',
  1924. 'menu_type' => '2',
  1925. 'icon' => '',
  1926. 'api_url' => 'diy/use',
  1927. 'router_path' => '',
  1928. 'view_path' => '',
  1929. 'methods' => 'put',
  1930. 'sort' => '0',
  1931. 'status' => '1',
  1932. 'is_show' => '0',
  1933. ],
  1934. ]
  1935. ],
  1936. ],
  1937. ],
  1938. [
  1939. 'menu_name' => '页面预览',
  1940. 'menu_key' => 'preview',
  1941. 'menu_short_name' => '页面预览',
  1942. 'parent_key' => '',
  1943. 'menu_type' => '0',
  1944. 'icon' => '',
  1945. 'api_url' => '',
  1946. 'router_path' => '',
  1947. 'view_path' => '',
  1948. 'methods' => 'get',
  1949. 'sort' => '0',
  1950. 'status' => '1',
  1951. 'is_show' => '0',
  1952. 'children' => [
  1953. [
  1954. 'menu_name' => '页面预览',
  1955. 'menu_key' => 'page_wap_preview',
  1956. 'menu_short_name' => '页面预览',
  1957. 'menu_type' => '1',
  1958. 'icon' => '',
  1959. 'api_url' => '',
  1960. 'router_path' => 'preview/wap',
  1961. 'view_path' => 'index/preview',
  1962. 'methods' => 'get',
  1963. 'sort' => '0',
  1964. 'status' => '1',
  1965. 'is_show' => '0',
  1966. ],
  1967. ],
  1968. ],
  1969. [
  1970. 'menu_name' => '系统设置',
  1971. 'menu_key' => 'setting_manage',
  1972. 'menu_short_name' => '设置',
  1973. 'parent_key' => '',
  1974. 'menu_type' => '0',
  1975. 'icon' => 'element-Setting',
  1976. 'api_url' => '',
  1977. 'router_path' => '',
  1978. 'view_path' => '',
  1979. 'methods' => '',
  1980. 'sort' => '20',
  1981. 'status' => '1',
  1982. 'is_show' => '1',
  1983. 'children' => [
  1984. [
  1985. 'menu_name' => '网站设置',
  1986. 'menu_key' => 'website_setting',
  1987. 'menu_short_name' => '网站设置',
  1988. 'menu_type' => '0',
  1989. 'icon' => 'iconfont-iconwangzhan1',
  1990. 'api_url' => '',
  1991. 'router_path' => '',
  1992. 'view_path' => '',
  1993. 'methods' => '',
  1994. 'sort' => '80',
  1995. 'status' => '1',
  1996. 'is_show' => '1',
  1997. 'children' => [
  1998. [
  1999. 'menu_name' => '基础设置',
  2000. 'menu_key' => 'base_setting',
  2001. 'menu_short_name' => '基础设置',
  2002. 'menu_type' => '1',
  2003. 'icon' => 'iconfont-iconshangchengshezhi',
  2004. 'api_url' => 'sys/config/website',
  2005. 'router_path' => 'setting/website/system',
  2006. 'view_path' => 'setting/system',
  2007. 'methods' => 'get',
  2008. 'sort' => '100',
  2009. 'status' => '1',
  2010. 'is_show' => '1',
  2011. 'children' => [
  2012. [
  2013. 'menu_name' => '保存设置',
  2014. 'menu_key' => 'base_setting_set',
  2015. 'menu_short_name' => '保存设置',
  2016. 'menu_type' => '2',
  2017. 'icon' => '',
  2018. 'api_url' => 'sys/config/website',
  2019. 'router_path' => '',
  2020. 'view_path' => '',
  2021. 'methods' => 'put',
  2022. 'sort' => '100',
  2023. 'status' => '1',
  2024. 'is_show' => '1',
  2025. ],
  2026. ],
  2027. ],
  2028. [
  2029. 'menu_name' => '版权设置',
  2030. 'menu_key' => 'setting_copyright',
  2031. 'menu_short_name' => '版权设置',
  2032. 'menu_type' => '1',
  2033. 'icon' => 'iconfont-iconbanquan1',
  2034. 'api_url' => 'sys/config/copyright',
  2035. 'router_path' => 'setting/website/copyright',
  2036. 'view_path' => 'setting/copyright',
  2037. 'methods' => 'get',
  2038. 'sort' => '90',
  2039. 'status' => '1',
  2040. 'is_show' => '1',
  2041. 'children' => [
  2042. [
  2043. 'menu_name' => '保存设置',
  2044. 'menu_key' => 'setting_copyright_set',
  2045. 'menu_short_name' => '保存设置',
  2046. 'menu_type' => '2',
  2047. 'icon' => '',
  2048. 'api_url' => 'sys/config/copyright',
  2049. 'router_path' => '',
  2050. 'view_path' => '',
  2051. 'methods' => 'put',
  2052. 'sort' => '100',
  2053. 'status' => '1',
  2054. 'is_show' => '1',
  2055. ],
  2056. ],
  2057. ],
  2058. [
  2059. 'menu_name' => '协议管理',
  2060. 'menu_key' => 'system_agreement',
  2061. 'menu_short_name' => '协议管理',
  2062. 'menu_type' => '1',
  2063. 'icon' => 'element-Notebook',
  2064. 'api_url' => 'sys/agreement',
  2065. 'router_path' => 'setting/agreement',
  2066. 'view_path' => 'setting/agreement',
  2067. 'methods' => 'get',
  2068. 'sort' => '80',
  2069. 'status' => '1',
  2070. 'is_show' => '1',
  2071. ],
  2072. [
  2073. 'menu_name' => '协议编辑',
  2074. 'menu_key' => 'system_agreement_edit',
  2075. 'menu_short_name' => '协议编辑',
  2076. 'menu_type' => '1',
  2077. 'icon' => 'element-Notebook',
  2078. 'api_url' => 'sys/agreement/<key>',
  2079. 'router_path' => 'setting/agreement/edit',
  2080. 'view_path' => 'setting/agreement_edit',
  2081. 'methods' => 'get',
  2082. 'sort' => '80',
  2083. 'status' => '1',
  2084. 'is_show' => '0',
  2085. 'children' => [
  2086. [
  2087. 'menu_name' => '协议编辑保存',
  2088. 'menu_key' => 'system_agreement_edit_set',
  2089. 'menu_short_name' => '协议编辑保存',
  2090. 'menu_type' => '2',
  2091. 'icon' => '',
  2092. 'api_url' => 'sys/agreement/<key>',
  2093. 'router_path' => '',
  2094. 'view_path' => '',
  2095. 'methods' => 'put',
  2096. 'sort' => '100',
  2097. 'status' => '1',
  2098. 'is_show' => '1',
  2099. ],
  2100. ],
  2101. ],
  2102. [
  2103. 'menu_name' => '登录设置',
  2104. 'menu_key' => 'setting_login',
  2105. 'menu_short_name' => '登录设置',
  2106. 'menu_type' => '1',
  2107. 'icon' => 'iconfont-iconzhuceshezhi',
  2108. 'api_url' => 'sys/config/login',
  2109. 'router_path' => 'setting/adminlogin',
  2110. 'view_path' => 'setting/adminlogin',
  2111. 'methods' => 'get',
  2112. 'sort' => '20',
  2113. 'status' => '1',
  2114. 'is_show' => '1',
  2115. 'children' => [
  2116. [
  2117. 'menu_name' => '保存设置',
  2118. 'menu_key' => 'setting_login_set',
  2119. 'menu_short_name' => '保存设置',
  2120. 'menu_type' => '2',
  2121. 'icon' => '',
  2122. 'api_url' => 'sys/config/login',
  2123. 'router_path' => '',
  2124. 'view_path' => '',
  2125. 'methods' => 'put',
  2126. 'sort' => '100',
  2127. 'status' => '1',
  2128. 'is_show' => '1',
  2129. ],
  2130. ]
  2131. ],
  2132. ],
  2133. ],
  2134. [
  2135. 'menu_name' => '权限设置',
  2136. 'menu_key' => 'auth',
  2137. 'menu_short_name' => '权限设置',
  2138. 'menu_type' => '0',
  2139. 'icon' => 'iconfont-iconquanxianguanli',
  2140. 'api_url' => '',
  2141. 'router_path' => '',
  2142. 'view_path' => '',
  2143. 'methods' => '',
  2144. 'sort' => '40',
  2145. 'status' => '1',
  2146. 'is_show' => '1',
  2147. 'children' => [
  2148. [
  2149. 'menu_name' => '管理员',
  2150. 'menu_key' => 'auth_list',
  2151. 'menu_short_name' => '管理员',
  2152. 'menu_type' => '1',
  2153. 'icon' => 'element-Lock',
  2154. 'api_url' => '',
  2155. 'router_path' => 'setting/auth/user',
  2156. 'view_path' => 'auth/user',
  2157. 'methods' => '',
  2158. 'sort' => '100',
  2159. 'status' => '1',
  2160. 'is_show' => '1',
  2161. 'children' => [
  2162. [
  2163. 'menu_name' => '新增管理员',
  2164. 'menu_key' => 'auth_add',
  2165. 'menu_short_name' => '新增管理员',
  2166. 'menu_type' => '2',
  2167. 'icon' => '',
  2168. 'api_url' => 'sys/role',
  2169. 'router_path' => '',
  2170. 'view_path' => 'site/user',
  2171. 'methods' => 'post',
  2172. 'sort' => '1',
  2173. 'status' => '1',
  2174. 'is_show' => '1',
  2175. ],
  2176. [
  2177. 'menu_name' => '编辑管理员',
  2178. 'menu_key' => 'auth_update',
  2179. 'menu_short_name' => '编辑管理员',
  2180. 'menu_type' => '2',
  2181. 'icon' => '',
  2182. 'api_url' => 'site/user/<uid>',
  2183. 'router_path' => '',
  2184. 'view_path' => '',
  2185. 'methods' => 'put',
  2186. 'sort' => '1',
  2187. 'status' => '1',
  2188. 'is_show' => '1',
  2189. ],
  2190. [
  2191. 'menu_name' => '锁定管理员',
  2192. 'menu_key' => 'auth_lock',
  2193. 'menu_short_name' => '锁定管理员',
  2194. 'menu_type' => '2',
  2195. 'icon' => '',
  2196. 'api_url' => 'site/user/lock/<uid>',
  2197. 'router_path' => '',
  2198. 'view_path' => '',
  2199. 'methods' => 'put',
  2200. 'sort' => '1',
  2201. 'status' => '1',
  2202. 'is_show' => '1',
  2203. ],
  2204. [
  2205. 'menu_name' => '解锁管理员',
  2206. 'menu_key' => 'auth_unlock',
  2207. 'menu_short_name' => '解锁管理员',
  2208. 'menu_type' => '2',
  2209. 'icon' => '',
  2210. 'api_url' => 'site/user/unlock/<uid>',
  2211. 'router_path' => '',
  2212. 'view_path' => '',
  2213. 'methods' => 'put',
  2214. 'sort' => '1',
  2215. 'status' => '1',
  2216. 'is_show' => '1',
  2217. ],
  2218. ],
  2219. ],
  2220. [
  2221. 'menu_name' => '管理员角色',
  2222. 'menu_key' => 'auth_role',
  2223. 'menu_short_name' => '管理员角色',
  2224. 'menu_type' => '1',
  2225. 'icon' => 'iconfont-iconhuiyuanliebiao',
  2226. 'api_url' => 'sys/role',
  2227. 'router_path' => 'setting/auth/role',
  2228. 'view_path' => 'auth/role',
  2229. 'methods' => 'get',
  2230. 'sort' => '70',
  2231. 'status' => '1',
  2232. 'is_show' => '1',
  2233. 'children' => [
  2234. [
  2235. 'menu_name' => '新增',
  2236. 'menu_key' => 'auth_role_add',
  2237. 'menu_short_name' => '新增',
  2238. 'menu_type' => '2',
  2239. 'icon' => '',
  2240. 'api_url' => 'sys/role',
  2241. 'router_path' => '',
  2242. 'view_path' => '',
  2243. 'methods' => 'post',
  2244. 'sort' => '1',
  2245. 'status' => '1',
  2246. 'is_show' => '1',
  2247. ],
  2248. [
  2249. 'menu_name' => '编辑',
  2250. 'menu_key' => 'auth_role_update',
  2251. 'menu_short_name' => '编辑',
  2252. 'menu_type' => '2',
  2253. 'icon' => '',
  2254. 'api_url' => 'sys/role/<role_id>',
  2255. 'router_path' => '',
  2256. 'view_path' => '',
  2257. 'methods' => 'put',
  2258. 'sort' => '1',
  2259. 'status' => '1',
  2260. 'is_show' => '1',
  2261. ],
  2262. [
  2263. 'menu_name' => '删除',
  2264. 'menu_key' => 'auth_role_del',
  2265. 'menu_short_name' => '删除',
  2266. 'menu_type' => '2',
  2267. 'icon' => '',
  2268. 'api_url' => 'sys/role/<role_id>',
  2269. 'router_path' => '',
  2270. 'view_path' => '',
  2271. 'methods' => 'delete',
  2272. 'sort' => '1',
  2273. 'status' => '1',
  2274. 'is_show' => '1',
  2275. ],
  2276. ],
  2277. ],
  2278. [
  2279. 'menu_name' => '操作日志',
  2280. 'menu_key' => 'auth_log',
  2281. 'menu_short_name' => '操作日志',
  2282. 'menu_type' => '1',
  2283. 'icon' => 'element-Document',
  2284. 'api_url' => 'sys/log',
  2285. 'router_path' => 'setting/auth/log',
  2286. 'view_path' => 'auth/log',
  2287. 'methods' => 'get',
  2288. 'sort' => '60',
  2289. 'status' => '1',
  2290. 'is_show' => '1',
  2291. ],
  2292. ],
  2293. ],
  2294. [
  2295. 'menu_name' => '会员管理',
  2296. 'menu_key' => 'member_setting_manage',
  2297. 'menu_short_name' => '会员管理',
  2298. 'menu_type' => '0',
  2299. 'icon' => 'iconfont-iconhuiyuanguanli',
  2300. 'api_url' => '',
  2301. 'router_path' => '',
  2302. 'view_path' => '',
  2303. 'methods' => '',
  2304. 'sort' => '9',
  2305. 'status' => '1',
  2306. 'is_show' => '1',
  2307. 'children' => [
  2308. [
  2309. 'menu_name' => '会员设置',
  2310. 'menu_key' => 'setting_member',
  2311. 'menu_short_name' => '会员设置',
  2312. 'menu_type' => '1',
  2313. 'icon' => 'iconfont-iconhuiyuanxinxi',
  2314. 'api_url' => 'member/config/member',
  2315. 'router_path' => 'setting/member',
  2316. 'view_path' => 'setting/member',
  2317. 'methods' => 'get',
  2318. 'sort' => '71',
  2319. 'status' => '1',
  2320. 'is_show' => '1',
  2321. 'children' => [
  2322. [
  2323. 'menu_name' => '设置',
  2324. 'menu_key' => 'setting_member_set',
  2325. 'menu_short_name' => '设置',
  2326. 'menu_type' => '2',
  2327. 'icon' => '',
  2328. 'api_url' => 'member/config/member',
  2329. 'router_path' => '',
  2330. 'view_path' => '',
  2331. 'methods' => 'post',
  2332. 'sort' => '100',
  2333. 'status' => '1',
  2334. 'is_show' => '1',
  2335. ],
  2336. ]
  2337. ],
  2338. [
  2339. 'menu_name' => '注册登录',
  2340. 'menu_key' => 'setting_login_register',
  2341. 'menu_short_name' => '注册登录',
  2342. 'menu_type' => '1',
  2343. 'icon' => 'iconfont-iconzhuceshezhi',
  2344. 'api_url' => 'member/config/login',
  2345. 'router_path' => 'setting/login',
  2346. 'view_path' => 'setting/login',
  2347. 'methods' => 'get',
  2348. 'sort' => '70',
  2349. 'status' => '1',
  2350. 'is_show' => '1',
  2351. 'children' => [
  2352. [
  2353. 'menu_name' => '注册登录设置',
  2354. 'menu_key' => 'setting_login_register_set',
  2355. 'menu_short_name' => '注册登录设置',
  2356. 'menu_type' => '2',
  2357. 'icon' => '',
  2358. 'api_url' => 'member/config/login',
  2359. 'router_path' => '',
  2360. 'view_path' => '',
  2361. 'methods' => 'post',
  2362. 'sort' => '100',
  2363. 'status' => '1',
  2364. 'is_show' => '1',
  2365. ],
  2366. ]
  2367. ],
  2368. ]
  2369. ],
  2370. [
  2371. 'menu_name' => '支付管理',
  2372. 'menu_key' => 'setting_pay',
  2373. 'menu_short_name' => '支付管理',
  2374. 'menu_type' => '1',
  2375. 'icon' => 'element-Wallet',
  2376. 'api_url' => '',
  2377. 'router_path' => 'setting/pay',
  2378. 'view_path' => '',
  2379. 'methods' => 'get',
  2380. 'sort' => '60',
  2381. 'status' => '1',
  2382. 'is_show' => '1',
  2383. 'children' => [
  2384. [
  2385. 'menu_name' => '支付设置',
  2386. 'menu_key' => 'setting_pay_channel',
  2387. 'menu_short_name' => '支付设置',
  2388. 'menu_type' => '1',
  2389. 'icon' => 'iconfont-iconzhifushezhi',
  2390. 'api_url' => 'pay/channel/lists',
  2391. 'router_path' => 'setting/pay/channel',
  2392. 'view_path' => 'setting/pay',
  2393. 'methods' => 'get',
  2394. 'sort' => '100',
  2395. 'status' => '1',
  2396. 'is_show' => '1',
  2397. 'children' => [
  2398. [
  2399. 'menu_name' => '设置',
  2400. 'menu_key' => 'setting_pay_channel_set',
  2401. 'menu_short_name' => '设置',
  2402. 'menu_type' => '2',
  2403. 'icon' => '',
  2404. 'api_url' => 'pay/channel/set/<channel>/<type>',
  2405. 'router_path' => '',
  2406. 'view_path' => '',
  2407. 'methods' => 'post',
  2408. 'sort' => '100',
  2409. 'status' => '1',
  2410. 'is_show' => '1',
  2411. ],
  2412. [
  2413. 'menu_name' => '保存全部',
  2414. 'menu_key' => 'setting_pay_channel_set_all',
  2415. 'menu_short_name' => '保存全部',
  2416. 'menu_type' => '2',
  2417. 'icon' => '',
  2418. 'api_url' => 'pay/channel/set/all',
  2419. 'router_path' => '',
  2420. 'view_path' => '',
  2421. 'methods' => 'post',
  2422. 'sort' => '100',
  2423. 'status' => '1',
  2424. 'is_show' => '1',
  2425. ],
  2426. ],
  2427. ],
  2428. [
  2429. 'menu_name' => '打款设置',
  2430. 'menu_key' => 'setting_pay_transfer',
  2431. 'menu_short_name' => '打款设置',
  2432. 'menu_type' => '1',
  2433. 'icon' => 'iconfont-icondakuanshezhi',
  2434. 'api_url' => 'pay/channel/lists/<channel>',
  2435. 'router_path' => 'setting/pay/transfer',
  2436. 'view_path' => 'setting/transfer',
  2437. 'methods' => 'get',
  2438. 'sort' => '90',
  2439. 'status' => '1',
  2440. 'is_show' => '1',
  2441. 'children' => [
  2442. [
  2443. 'menu_name' => '设置',
  2444. 'menu_key' => 'setting_pay_transfer_set',
  2445. 'menu_short_name' => '设置',
  2446. 'menu_type' => '2',
  2447. 'icon' => '',
  2448. 'api_url' => 'pay/channel/set/transfer',
  2449. 'router_path' => '',
  2450. 'view_path' => '',
  2451. 'methods' => 'post',
  2452. 'sort' => '90',
  2453. 'status' => '1',
  2454. 'is_show' => '1',
  2455. ],
  2456. ],
  2457. ],
  2458. [
  2459. 'menu_name' => '提现设置',
  2460. 'menu_key' => 'cash_out_config',
  2461. 'menu_short_name' => '提现设置',
  2462. 'menu_type' => '1',
  2463. 'icon' => 'element-Postcard',
  2464. 'api_url' => '',
  2465. 'router_path' => 'setting/cash_out',
  2466. 'view_path' => 'setting/cash_out',
  2467. 'methods' => '',
  2468. 'sort' => '59',
  2469. 'status' => '1',
  2470. 'is_show' => '1',
  2471. 'children' => [
  2472. [
  2473. 'menu_name' => '会员提现设置',
  2474. 'menu_key' => 'member_cash_out_config_set',
  2475. 'menu_short_name' => '会员提现设置',
  2476. 'menu_type' => '2',
  2477. 'icon' => '',
  2478. 'api_url' => 'member/config/cash_out',
  2479. 'router_path' => '',
  2480. 'view_path' => '',
  2481. 'methods' => 'post',
  2482. 'sort' => '90',
  2483. 'status' => '1',
  2484. 'is_show' => '1',
  2485. ],
  2486. [
  2487. 'menu_name' => '店铺提现设置',
  2488. 'menu_key' => 'shop_cash_out_config_set',
  2489. 'menu_short_name' => '店铺提现设置',
  2490. 'menu_type' => '2',
  2491. 'icon' => '',
  2492. 'api_url' => 'shop/admin/shop/config/cash_out',
  2493. 'router_path' => '',
  2494. 'view_path' => '',
  2495. 'methods' => 'post',
  2496. 'sort' => '97',
  2497. 'status' => '1',
  2498. 'is_show' => '1',
  2499. ],
  2500. ],
  2501. ],
  2502. ],
  2503. ],
  2504. [
  2505. 'menu_name' => '消息管理',
  2506. 'menu_key' => 'setting_notice',
  2507. 'menu_short_name' => '消息管理',
  2508. 'menu_type' => '1',
  2509. 'icon' => 'element-ChatLineSquare',
  2510. 'api_url' => '',
  2511. 'router_path' => 'setting/notice',
  2512. 'view_path' => '',
  2513. 'methods' => '',
  2514. 'sort' => '50',
  2515. 'status' => '1',
  2516. 'is_show' => '1',
  2517. 'children' => [
  2518. [
  2519. 'menu_name' => '消息模板',
  2520. 'menu_key' => 'setting_notice_template',
  2521. 'menu_short_name' => '消息模板',
  2522. 'menu_type' => '1',
  2523. 'icon' => 'iconfont-iconxiaoximoban',
  2524. 'api_url' => 'notice/notice',
  2525. 'router_path' => 'setting/notice/template',
  2526. 'view_path' => 'setting/notice',
  2527. 'methods' => 'get',
  2528. 'sort' => '10',
  2529. 'status' => '1',
  2530. 'is_show' => '1',
  2531. 'children' => [
  2532. [
  2533. 'menu_name' => '消息设置',
  2534. 'menu_key' => 'setting_notice_template_message_set',
  2535. 'menu_short_name' => '消息设置',
  2536. 'menu_type' => '2',
  2537. 'icon' => '',
  2538. 'api_url' => 'notice/notice/edit',
  2539. 'router_path' => '',
  2540. 'view_path' => '',
  2541. 'methods' => 'post',
  2542. 'sort' => '12',
  2543. 'status' => '1',
  2544. 'is_show' => '1',
  2545. ],
  2546. [
  2547. 'menu_name' => '消息启动与关闭',
  2548. 'menu_key' => 'setting_notice_template_status_set',
  2549. 'menu_short_name' => '消息启动与关闭',
  2550. 'menu_type' => '2',
  2551. 'icon' => '',
  2552. 'api_url' => 'notice/notice/editstatus',
  2553. 'router_path' => '',
  2554. 'view_path' => '',
  2555. 'methods' => 'post',
  2556. 'sort' => '12',
  2557. 'status' => '1',
  2558. 'is_show' => '1',
  2559. ],
  2560. ]
  2561. ],
  2562. [
  2563. 'menu_name' => '发送记录',
  2564. 'menu_key' => 'setting_notice_records',
  2565. 'menu_short_name' => '发送记录',
  2566. 'menu_type' => '1',
  2567. 'icon' => 'iconfont-iconlishijilu',
  2568. 'api_url' => 'notice/notice/log',
  2569. 'router_path' => 'setting/notice/records',
  2570. 'view_path' => 'setting/notice_records',
  2571. 'methods' => 'get',
  2572. 'sort' => '9',
  2573. 'status' => '1',
  2574. 'is_show' => '1',
  2575. ],
  2576. ],
  2577. ],
  2578. [
  2579. 'menu_name' => '短信管理',
  2580. 'menu_key' => 'sms_notice',
  2581. 'menu_short_name' => '短信管理',
  2582. 'menu_type' => '0',
  2583. 'icon' => 'element-Message',
  2584. 'api_url' => '',
  2585. 'router_path' => '',
  2586. 'view_path' => '',
  2587. 'methods' => '',
  2588. 'sort' => '40',
  2589. 'status' => '1',
  2590. 'is_show' => '1',
  2591. 'children' => [
  2592. [
  2593. 'menu_name' => '短信设置',
  2594. 'menu_key' => 'sms_setting',
  2595. 'menu_short_name' => '短信设置',
  2596. 'menu_type' => '1',
  2597. 'icon' => 'iconfont-iconduanxinshezhi-1',
  2598. 'api_url' => 'notice/sms',
  2599. 'router_path' => 'setting/sms/setting',
  2600. 'view_path' => 'setting/sms',
  2601. 'methods' => 'get',
  2602. 'sort' => '12',
  2603. 'status' => '1',
  2604. 'is_show' => '1',
  2605. 'children' => [
  2606. [
  2607. 'menu_name' => '短信配置修改',
  2608. 'menu_key' => 'sms_setting_set',
  2609. 'menu_short_name' => '短信配置修改',
  2610. 'menu_type' => '2',
  2611. 'icon' => '',
  2612. 'api_url' => 'notice/notice/sms/<sms_type>',
  2613. 'router_path' => '',
  2614. 'view_path' => '',
  2615. 'methods' => 'put',
  2616. 'sort' => '12',
  2617. 'status' => '1',
  2618. 'is_show' => '1',
  2619. ],
  2620. ]
  2621. ],
  2622. [
  2623. 'menu_name' => '发送记录',
  2624. 'menu_key' => 'sms_notice_records',
  2625. 'menu_short_name' => '发送记录',
  2626. 'menu_type' => '1',
  2627. 'icon' => 'iconfont-iconlishijilu',
  2628. 'api_url' => 'notice/sms/log',
  2629. 'router_path' => 'setting/sms/records',
  2630. 'view_path' => 'setting/sms_records',
  2631. 'methods' => 'get',
  2632. 'sort' => '11',
  2633. 'status' => '1',
  2634. 'is_show' => '1',
  2635. ],
  2636. ],
  2637. ],
  2638. [
  2639. 'menu_name' => '系统工具',
  2640. 'menu_key' => 'sys_tools',
  2641. 'menu_short_name' => '系统工具',
  2642. 'menu_type' => '0',
  2643. 'icon' => 'iconfont-iconshezhiV6xx',
  2644. 'api_url' => '',
  2645. 'router_path' => '',
  2646. 'view_path' => '',
  2647. 'methods' => '',
  2648. 'sort' => '9',
  2649. 'status' => '1',
  2650. 'is_show' => '1',
  2651. 'children' => [
  2652. [
  2653. 'menu_name' => '存储设置',
  2654. 'menu_key' => 'setting_storage',
  2655. 'menu_short_name' => '存储设置',
  2656. 'menu_type' => '1',
  2657. 'icon' => 'element-FolderChecked',
  2658. 'api_url' => 'sys/storage/<storage_type>',
  2659. 'router_path' => 'setting/storage',
  2660. 'view_path' => 'setting/storage',
  2661. 'methods' => 'get',
  2662. 'sort' => '30',
  2663. 'status' => '1',
  2664. 'is_show' => '1',
  2665. 'children' => [
  2666. [
  2667. 'menu_name' => '保存设置',
  2668. 'menu_key' => 'setting_storage_set',
  2669. 'menu_short_name' => '保存设置',
  2670. 'menu_type' => '2',
  2671. 'icon' => '',
  2672. 'api_url' => 'sys/storage/<storage_type>',
  2673. 'router_path' => '',
  2674. 'view_path' => '',
  2675. 'methods' => 'put',
  2676. 'sort' => '100',
  2677. 'status' => '1',
  2678. 'is_show' => '1',
  2679. ],
  2680. ],
  2681. ],
  2682. [
  2683. 'menu_name' => '数据导出',
  2684. 'menu_key' => 'setting_export',
  2685. 'menu_short_name' => '数据导出',
  2686. 'menu_type' => '1',
  2687. 'icon' => 'iconfont-iconshujudaochu',
  2688. 'api_url' => 'sys/export',
  2689. 'router_path' => 'setting/export',
  2690. 'view_path' => 'setting/export',
  2691. 'methods' => 'get',
  2692. 'sort' => '10',
  2693. 'status' => '1',
  2694. 'is_show' => '1',
  2695. 'children' => [
  2696. [
  2697. 'menu_name' => '导出数据',
  2698. 'menu_key' => 'setting_export_export',
  2699. 'menu_short_name' => '导出数据',
  2700. 'menu_type' => '2',
  2701. 'icon' => '',
  2702. 'api_url' => 'sys/export/<export_type>',
  2703. 'router_path' => '',
  2704. 'view_path' => '',
  2705. 'methods' => 'get',
  2706. 'sort' => '100',
  2707. 'status' => '1',
  2708. 'is_show' => '1',
  2709. ],
  2710. [
  2711. 'menu_name' => '导出数据删除',
  2712. 'menu_key' => 'setting_export_del',
  2713. 'menu_short_name' => '导出数据删除',
  2714. 'menu_type' => '2',
  2715. 'icon' => '',
  2716. 'api_url' => 'sys/export/<id>',
  2717. 'router_path' => '',
  2718. 'view_path' => '',
  2719. 'methods' => 'delete',
  2720. 'sort' => '100',
  2721. 'status' => '1',
  2722. 'is_show' => '1',
  2723. ],
  2724. ]
  2725. ],
  2726. [
  2727. 'menu_name' => '地图秘钥',
  2728. 'menu_key' => 'map_setting',
  2729. 'menu_short_name' => '地图秘钥',
  2730. 'menu_type' => '1',
  2731. 'icon' => 'element-Message',
  2732. 'api_url' => 'sys/config/map',
  2733. 'router_path' => 'setting/map',
  2734. 'view_path' => 'setting/map',
  2735. 'methods' => 'get',
  2736. 'sort' => '9',
  2737. 'status' => '1',
  2738. 'is_show' => '1',
  2739. 'children' => [
  2740. [
  2741. 'menu_name' => '保存设置',
  2742. 'menu_key' => 'map_setting_set',
  2743. 'menu_short_name' => '保存设置',
  2744. 'menu_type' => '2',
  2745. 'icon' => '',
  2746. 'api_url' => 'sys/config/map',
  2747. 'router_path' => '',
  2748. 'view_path' => '',
  2749. 'methods' => 'put',
  2750. 'sort' => '12',
  2751. 'status' => '1',
  2752. 'is_show' => '1',
  2753. ],
  2754. ]
  2755. ],
  2756. ]
  2757. ],
  2758. ],
  2759. ],
  2760. [
  2761. 'menu_name' => '开发工具',
  2762. 'menu_key' => 'tool',
  2763. 'menu_short_name' => '开发',
  2764. 'parent_key' => '',
  2765. 'menu_type' => '0',
  2766. 'icon' => 'iconfont-iconkaifashezhi',
  2767. 'api_url' => '',
  2768. 'router_path' => '',
  2769. 'view_path' => '',
  2770. 'methods' => '',
  2771. 'sort' => '10',
  2772. 'status' => '1',
  2773. 'is_show' => '1',
  2774. 'children' => [
  2775. [
  2776. 'menu_name' => '插件管理',
  2777. 'menu_key' => 'app_manage_store',
  2778. 'menu_short_name' => '插件管理',
  2779. 'menu_type' => '1',
  2780. 'icon' => 'iconfont-iconchajian1',
  2781. 'api_url' => '',
  2782. 'router_path' => 'app_manage/app_store',
  2783. 'view_path' => 'index/store',
  2784. 'methods' => 'get',
  2785. 'sort' => '10',
  2786. 'status' => '1',
  2787. 'is_show' => '1',
  2788. 'children' => [
  2789. [
  2790. 'menu_name' => '安装插件',
  2791. 'menu_key' => 'app_manage_store_install',
  2792. 'menu_short_name' => '安装插件',
  2793. 'menu_type' => '2',
  2794. 'icon' => '',
  2795. 'api_url' => 'addon/install/<addon>',
  2796. 'router_path' => '',
  2797. 'view_path' => '',
  2798. 'methods' => 'post',
  2799. 'sort' => '1',
  2800. 'status' => '1',
  2801. 'is_show' => '1',
  2802. ],
  2803. [
  2804. 'menu_name' => '云安装插件',
  2805. 'menu_key' => 'app_manage_store_install_cloud',
  2806. 'menu_short_name' => '云安装插件',
  2807. 'menu_type' => '2',
  2808. 'icon' => '',
  2809. 'api_url' => 'addon/cloudinstall/<addon>',
  2810. 'router_path' => '',
  2811. 'view_path' => '',
  2812. 'methods' => 'post',
  2813. 'sort' => '1',
  2814. 'status' => '1',
  2815. 'is_show' => '1',
  2816. ],
  2817. [
  2818. 'menu_name' => '下载插件',
  2819. 'menu_key' => 'app_manage_store_download',
  2820. 'menu_short_name' => '下载插件',
  2821. 'menu_type' => '2',
  2822. 'icon' => '',
  2823. 'api_url' => 'addon/download/<addon>',
  2824. 'router_path' => '',
  2825. 'view_path' => '',
  2826. 'methods' => 'post',
  2827. 'sort' => '1',
  2828. 'status' => '1',
  2829. 'is_show' => '1',
  2830. ],
  2831. [
  2832. 'menu_name' => '卸载插件',
  2833. 'menu_key' => 'app_manage_store_uninstall',
  2834. 'menu_short_name' => '卸载插件',
  2835. 'menu_type' => '2',
  2836. 'icon' => '',
  2837. 'api_url' => 'addon/uninstall/<addon>',
  2838. 'router_path' => '',
  2839. 'view_path' => '',
  2840. 'methods' => 'post',
  2841. 'sort' => '1',
  2842. 'status' => '1',
  2843. 'is_show' => '1',
  2844. ],
  2845. [
  2846. 'menu_name' => '取消安装任务',
  2847. 'menu_key' => 'app_manage_store_install_cancel',
  2848. 'menu_short_name' => '取消安装任务',
  2849. 'menu_type' => '2',
  2850. 'icon' => '',
  2851. 'api_url' => 'addon/install/cancel/<addon>',
  2852. 'router_path' => '',
  2853. 'view_path' => '',
  2854. 'methods' => 'post',
  2855. 'sort' => '1',
  2856. 'status' => '1',
  2857. 'is_show' => '1',
  2858. ],
  2859. ]
  2860. ],
  2861. [
  2862. 'menu_name' => '插件开发',
  2863. 'menu_key' => 'addon_develop',
  2864. 'menu_short_name' => '插件开发',
  2865. 'menu_type' => '1',
  2866. 'icon' => 'iconfont-iconchajiankaifa',
  2867. 'api_url' => '',
  2868. 'router_path' => 'tools/addon',
  2869. 'view_path' => 'tools/addon/index',
  2870. 'methods' => '',
  2871. 'sort' => '110',
  2872. 'status' => '1',
  2873. 'is_show' => '1',
  2874. 'children' => [
  2875. [
  2876. 'menu_name' => '插件删除',
  2877. 'menu_key' => 'addon_delete',
  2878. 'menu_short_name' => '插件删除',
  2879. 'menu_type' => '2',
  2880. 'icon' => '',
  2881. 'api_url' => 'addon_develop/<key>',
  2882. 'router_path' => '',
  2883. 'view_path' => '',
  2884. 'methods' => 'delete',
  2885. 'sort' => '1',
  2886. 'status' => '1',
  2887. 'is_show' => '1',
  2888. ],
  2889. [
  2890. 'menu_name' => '插件打包',
  2891. 'menu_key' => 'addon_build',
  2892. 'menu_short_name' => '插件打包',
  2893. 'menu_type' => '2',
  2894. 'icon' => '',
  2895. 'api_url' => 'addon_develop/build/<key>',
  2896. 'router_path' => '',
  2897. 'view_path' => '',
  2898. 'methods' => 'post',
  2899. 'sort' => '1',
  2900. 'status' => '1',
  2901. 'is_show' => '1',
  2902. ],
  2903. [
  2904. 'menu_name' => '插件下载',
  2905. 'menu_key' => 'addon_download',
  2906. 'menu_short_name' => '插件下载',
  2907. 'menu_type' => '2',
  2908. 'icon' => '',
  2909. 'api_url' => 'addon_develop/download/<key>',
  2910. 'router_path' => '',
  2911. 'view_path' => '',
  2912. 'methods' => 'post',
  2913. 'sort' => '1',
  2914. 'status' => '1',
  2915. 'is_show' => '1',
  2916. ]
  2917. ]
  2918. ],
  2919. [
  2920. 'menu_name' => '代码生成',
  2921. 'menu_key' => 'code',
  2922. 'menu_short_name' => '代码生成',
  2923. 'menu_type' => '1',
  2924. 'icon' => 'iconfont-icondaimashengcheng',
  2925. 'api_url' => 'generator/generator',
  2926. 'router_path' => 'tools/code',
  2927. 'view_path' => 'tools/code/index',
  2928. 'methods' => 'get',
  2929. 'sort' => '100',
  2930. 'status' => '1',
  2931. 'is_show' => '1',
  2932. 'children' => [
  2933. [
  2934. 'menu_name' => '添加代码生成',
  2935. 'menu_key' => 'code_add',
  2936. 'menu_short_name' => '添加代码生成',
  2937. 'menu_type' => '2',
  2938. 'icon' => '',
  2939. 'api_url' => 'generator/generator',
  2940. 'router_path' => '',
  2941. 'view_path' => '',
  2942. 'methods' => 'post',
  2943. 'sort' => '1',
  2944. 'status' => '1',
  2945. 'is_show' => '1',
  2946. ],
  2947. [
  2948. 'menu_name' => '删除代码生成',
  2949. 'menu_key' => 'code_delete',
  2950. 'menu_short_name' => '删除代码生成',
  2951. 'menu_type' => '2',
  2952. 'icon' => '',
  2953. 'api_url' => 'generator/generator/<id>',
  2954. 'router_path' => '',
  2955. 'view_path' => '',
  2956. 'methods' => 'delete',
  2957. 'sort' => '1',
  2958. 'status' => '1',
  2959. 'is_show' => '1',
  2960. ],
  2961. [
  2962. 'menu_name' => '代码生成',
  2963. 'menu_key' => 'code_create',
  2964. 'menu_short_name' => '代码生成',
  2965. 'menu_type' => '2',
  2966. 'icon' => '',
  2967. 'api_url' => 'generator/download',
  2968. 'router_path' => '',
  2969. 'view_path' => '',
  2970. 'methods' => 'post',
  2971. 'sort' => '1',
  2972. 'status' => '1',
  2973. 'is_show' => '1',
  2974. ]
  2975. ]
  2976. ],
  2977. [
  2978. 'menu_name' => '编辑代码生成',
  2979. 'menu_key' => 'code_edit',
  2980. 'menu_short_name' => '编辑代码生成',
  2981. 'menu_type' => '1',
  2982. 'icon' => '',
  2983. 'api_url' => 'generator/generator/<id>',
  2984. 'router_path' => 'tools/code/edit',
  2985. 'view_path' => 'tools/code/edit',
  2986. 'methods' => 'put',
  2987. 'sort' => '99',
  2988. 'status' => '1',
  2989. 'is_show' => '0',
  2990. ],
  2991. [
  2992. 'menu_name' => '插件添加/编辑',
  2993. 'menu_key' => 'addon_add_edit',
  2994. 'menu_short_name' => '插件添加/编辑',
  2995. 'menu_type' => '1',
  2996. 'icon' => '',
  2997. 'api_url' => '',
  2998. 'router_path' => 'tools/addon_edit',
  2999. 'view_path' => 'tools/addon/edit',
  3000. 'methods' => 'get',
  3001. 'sort' => '90',
  3002. 'status' => '1',
  3003. 'is_show' => '0',
  3004. 'children' => [
  3005. [
  3006. 'menu_name' => '插件添加',
  3007. 'menu_key' => 'addon_add',
  3008. 'menu_short_name' => '插件添加',
  3009. 'menu_type' => '2',
  3010. 'icon' => '',
  3011. 'api_url' => 'addon_develop/<key>',
  3012. 'router_path' => '',
  3013. 'view_path' => '',
  3014. 'methods' => 'post',
  3015. 'sort' => '1',
  3016. 'status' => '1',
  3017. 'is_show' => '1',
  3018. ],
  3019. [
  3020. 'menu_name' => '插件编辑',
  3021. 'menu_key' => 'addon_edit',
  3022. 'menu_short_name' => '插件编辑',
  3023. 'menu_type' => '2',
  3024. 'icon' => '',
  3025. 'api_url' => 'addon_develop/<key>',
  3026. 'router_path' => '',
  3027. 'view_path' => '',
  3028. 'methods' => 'put',
  3029. 'sort' => '1',
  3030. 'status' => '1',
  3031. 'is_show' => '1',
  3032. ]
  3033. ]
  3034. ],
  3035. [
  3036. 'menu_name' => '数据字典',
  3037. 'menu_key' => 'sys_dict_dict_dict_list',
  3038. 'menu_short_name' => '数据字典',
  3039. 'menu_type' => '1',
  3040. 'icon' => 'iconfont-iconwenzhangguanli1',
  3041. 'api_url' => 'dict/post/post',
  3042. 'router_path' => 'tools/list',
  3043. 'view_path' => 'dict/list',
  3044. 'methods' => 'get',
  3045. 'sort' => '90',
  3046. 'status' => '1',
  3047. 'is_show' => '1',
  3048. 'children' => [
  3049. [
  3050. 'menu_name' => '数据字典添加',
  3051. 'menu_key' => 'sys_dict_dict_dict_add',
  3052. 'menu_short_name' => '数据字典添加',
  3053. 'menu_type' => '2',
  3054. 'icon' => '',
  3055. 'api_url' => 'dict',
  3056. 'router_path' => 'edit',
  3057. 'view_path' => 'dict/edit',
  3058. 'methods' => 'post',
  3059. 'sort' => '4',
  3060. 'status' => '1',
  3061. 'is_show' => '1',
  3062. ],
  3063. [
  3064. 'menu_name' => '数据字典编辑',
  3065. 'menu_key' => 'sys_dict_dict_dict_edit',
  3066. 'menu_short_name' => '数据字典编辑',
  3067. 'menu_type' => '2',
  3068. 'icon' => '',
  3069. 'api_url' => 'dict/<id>',
  3070. 'router_path' => 'edit',
  3071. 'view_path' => 'dict/edit',
  3072. 'methods' => 'put',
  3073. 'sort' => '3',
  3074. 'status' => '1',
  3075. 'is_show' => '1',
  3076. ],
  3077. [
  3078. 'menu_name' => '数据字典删除',
  3079. 'menu_key' => 'sys_dict_dict_dict_delete',
  3080. 'menu_short_name' => '数据字典删除',
  3081. 'menu_type' => '2',
  3082. 'icon' => '',
  3083. 'api_url' => 'dict/<id>',
  3084. 'router_path' => '',
  3085. 'view_path' => '',
  3086. 'methods' => 'delete',
  3087. 'sort' => '2',
  3088. 'status' => '1',
  3089. 'is_show' => '1',
  3090. ],
  3091. [
  3092. 'menu_name' => '添加/编辑数据字典数据',
  3093. 'menu_key' => 'sys_dict_dict_data_add_edit',
  3094. 'menu_short_name' => '添加/编辑数据字典数据',
  3095. 'menu_type' => '2',
  3096. 'icon' => '',
  3097. 'api_url' => 'dictionary/<id>',
  3098. 'router_path' => '',
  3099. 'view_path' => '',
  3100. 'methods' => 'delete',
  3101. 'sort' => '2',
  3102. 'status' => '1',
  3103. 'is_show' => '1',
  3104. ],
  3105. ],
  3106. ],
  3107. [
  3108. 'menu_name' => '环境检测',
  3109. 'menu_key' => 'tools_check_environment',
  3110. 'menu_short_name' => '环境检测',
  3111. 'menu_type' => '1',
  3112. 'icon' => 'iconfont-iconhuanjingjiance',
  3113. 'api_url' => '',
  3114. 'router_path' => 'tools/detection',
  3115. 'view_path' => 'tools/detection',
  3116. 'methods' => '',
  3117. 'sort' => '50',
  3118. 'status' => '1',
  3119. 'is_show' => '1',
  3120. ],
  3121. [
  3122. 'menu_name' => '用户信息修改',
  3123. 'menu_key' => 'platform_user_info_edit',
  3124. 'menu_short_name' => '用户信息修改',
  3125. 'menu_type' => '2',
  3126. 'icon' => '',
  3127. 'api_url' => 'auth/edit',
  3128. 'router_path' => '',
  3129. 'view_path' => '',
  3130. 'methods' => 'put',
  3131. 'sort' => '50',
  3132. 'status' => '1',
  3133. 'is_show' => '1',
  3134. ],
  3135. [
  3136. 'menu_name' => '平台菜单',
  3137. 'menu_key' => 'platform_menu',
  3138. 'menu_short_name' => '平台菜单',
  3139. 'menu_type' => '1',
  3140. 'icon' => 'iconfont-iconcaidan',
  3141. 'api_url' => 'sys/menu',
  3142. 'router_path' => 'tools/admin_menu',
  3143. 'view_path' => 'auth/menu',
  3144. 'methods' => 'get',
  3145. 'sort' => '49',
  3146. 'status' => '1',
  3147. 'is_show' => '1',
  3148. 'children' => [
  3149. [
  3150. 'menu_name' => '新增',
  3151. 'menu_key' => 'auth_menu_add',
  3152. 'menu_short_name' => '新增',
  3153. 'menu_type' => '2',
  3154. 'icon' => '',
  3155. 'api_url' => 'sys/menu',
  3156. 'router_path' => '',
  3157. 'view_path' => '',
  3158. 'methods' => 'post',
  3159. 'sort' => '1',
  3160. 'status' => '1',
  3161. 'is_show' => '1',
  3162. ],
  3163. [
  3164. 'menu_name' => '编辑',
  3165. 'menu_key' => 'auth_menu_update',
  3166. 'menu_short_name' => '编辑',
  3167. 'menu_type' => '2',
  3168. 'icon' => '',
  3169. 'api_url' => 'sys/menu/<menu_key>',
  3170. 'router_path' => '',
  3171. 'view_path' => '',
  3172. 'methods' => 'put',
  3173. 'sort' => '1',
  3174. 'status' => '1',
  3175. 'is_show' => '1',
  3176. ],
  3177. [
  3178. 'menu_name' => '删除',
  3179. 'menu_key' => 'auth_menu_del',
  3180. 'menu_short_name' => '删除',
  3181. 'menu_type' => '2',
  3182. 'icon' => '',
  3183. 'api_url' => 'sys/menu',
  3184. 'router_path' => '',
  3185. 'view_path' => '',
  3186. 'methods' => 'delete',
  3187. 'sort' => '1',
  3188. 'status' => '1',
  3189. 'is_show' => '1',
  3190. ],
  3191. [
  3192. 'menu_name' => '详情',
  3193. 'menu_key' => 'auth_menu_info',
  3194. 'menu_short_name' => '详情',
  3195. 'menu_type' => '2',
  3196. 'icon' => '',
  3197. 'api_url' => 'sys/menu/<menu_key>',
  3198. 'router_path' => '',
  3199. 'view_path' => '',
  3200. 'methods' => 'get',
  3201. 'sort' => '0',
  3202. 'status' => '1',
  3203. 'is_show' => '1',
  3204. ],
  3205. ],
  3206. ],
  3207. [
  3208. 'menu_name' => '店铺菜单',
  3209. 'menu_key' => 'site_menu',
  3210. 'menu_short_name' => '店铺菜单',
  3211. 'menu_type' => '1',
  3212. 'icon' => 'iconfont-icondianpucaidan',
  3213. 'api_url' => 'sys/menu',
  3214. 'router_path' => 'tools/site_menu',
  3215. 'view_path' => 'auth/site_menu',
  3216. 'methods' => 'get',
  3217. 'sort' => '48',
  3218. 'status' => '1',
  3219. 'is_show' => '1',
  3220. 'children' => [
  3221. [
  3222. 'menu_name' => '新增',
  3223. 'menu_key' => 'auth_site_menu_add',
  3224. 'menu_short_name' => '新增',
  3225. 'menu_type' => '2',
  3226. 'icon' => '',
  3227. 'api_url' => 'sys/menu',
  3228. 'router_path' => '',
  3229. 'view_path' => '',
  3230. 'methods' => 'post',
  3231. 'sort' => '1',
  3232. 'status' => '1',
  3233. 'is_show' => '1',
  3234. ],
  3235. [
  3236. 'menu_name' => '编辑',
  3237. 'menu_key' => 'auth_site_menu_update',
  3238. 'menu_short_name' => '编辑',
  3239. 'menu_type' => '2',
  3240. 'icon' => '',
  3241. 'api_url' => 'sys/menu/<menu_key>',
  3242. 'router_path' => '',
  3243. 'view_path' => '',
  3244. 'methods' => 'put',
  3245. 'sort' => '1',
  3246. 'status' => '1',
  3247. 'is_show' => '1',
  3248. ],
  3249. [
  3250. 'menu_name' => '删除',
  3251. 'menu_key' => 'auth_site_menu_del',
  3252. 'menu_short_name' => '删除',
  3253. 'menu_type' => '2',
  3254. 'icon' => '',
  3255. 'api_url' => 'sys/menu',
  3256. 'router_path' => '',
  3257. 'view_path' => '',
  3258. 'methods' => 'delete',
  3259. 'sort' => '1',
  3260. 'status' => '1',
  3261. 'is_show' => '1',
  3262. ],
  3263. [
  3264. 'menu_name' => '详情',
  3265. 'menu_key' => 'auth_site_menu_info',
  3266. 'menu_short_name' => '详情',
  3267. 'menu_type' => '2',
  3268. 'icon' => '',
  3269. 'api_url' => 'sys/menu/<menu_key>',
  3270. 'router_path' => '',
  3271. 'view_path' => '',
  3272. 'methods' => 'get',
  3273. 'sort' => '0',
  3274. 'status' => '1',
  3275. 'is_show' => '1',
  3276. ],
  3277. ],
  3278. ],
  3279. [
  3280. 'menu_name' => '计划任务',
  3281. 'menu_key' => 'tools_schedule',
  3282. 'menu_short_name' => '计划任务',
  3283. 'menu_type' => '1',
  3284. 'icon' => 'iconfont-iconjihuarenwu',
  3285. 'api_url' => 'sys/schedule/list',
  3286. 'router_path' => 'tools/schedule',
  3287. 'view_path' => 'tools/schedule',
  3288. 'methods' => '',
  3289. 'sort' => '40',
  3290. 'status' => '1',
  3291. 'is_show' => '1',
  3292. 'children' => [
  3293. [
  3294. 'menu_name' => '新增',
  3295. 'menu_key' => 'schedule_add',
  3296. 'menu_short_name' => '新增',
  3297. 'menu_type' => '2',
  3298. 'icon' => '',
  3299. 'api_url' => 'sys/schedule',
  3300. 'router_path' => '',
  3301. 'view_path' => '',
  3302. 'methods' => 'post',
  3303. 'sort' => '4',
  3304. 'status' => '1',
  3305. 'is_show' => '1',
  3306. ],
  3307. [
  3308. 'menu_name' => '编辑',
  3309. 'menu_key' => 'schedule_update',
  3310. 'menu_short_name' => '编辑',
  3311. 'menu_type' => '2',
  3312. 'icon' => '',
  3313. 'api_url' => 'sys/schedule/<id>',
  3314. 'router_path' => '',
  3315. 'view_path' => '',
  3316. 'methods' => 'put',
  3317. 'sort' => '3',
  3318. 'status' => '1',
  3319. 'is_show' => '1',
  3320. ],
  3321. [
  3322. 'menu_name' => '设置状态',
  3323. 'menu_key' => 'schedule_set_status',
  3324. 'menu_short_name' => '设置状态',
  3325. 'menu_type' => '2',
  3326. 'icon' => '',
  3327. 'api_url' => 'schedule/modify/status/<id>',
  3328. 'router_path' => '',
  3329. 'view_path' => '',
  3330. 'methods' => 'put',
  3331. 'sort' => '2',
  3332. 'status' => '1',
  3333. 'is_show' => '1',
  3334. ],
  3335. [
  3336. 'menu_name' => '删除',
  3337. 'menu_key' => 'schedule_del',
  3338. 'menu_short_name' => '删除',
  3339. 'menu_type' => '2',
  3340. 'icon' => '',
  3341. 'api_url' => 'sys/schedule/<id>',
  3342. 'router_path' => '',
  3343. 'view_path' => '',
  3344. 'methods' => 'delete',
  3345. 'sort' => '1',
  3346. 'status' => '1',
  3347. 'is_show' => '1',
  3348. ],
  3349. ],
  3350. ],
  3351. [
  3352. 'menu_name' => '授权信息',
  3353. 'menu_key' => 'app_auth',
  3354. 'menu_short_name' => '授权信息',
  3355. 'menu_type' => '1',
  3356. 'icon' => 'iconfont-iconshouquanxinxi2',
  3357. 'api_url' => 'niucloud/authinfo',
  3358. 'router_path' => 'tools/authorize',
  3359. 'view_path' => 'app/authorize',
  3360. 'methods' => 'get',
  3361. 'sort' => '30',
  3362. 'status' => '1',
  3363. 'is_show' => '1',
  3364. 'children' => [
  3365. [
  3366. 'menu_name' => '授权码认证',
  3367. 'menu_key' => 'app_auth_code',
  3368. 'menu_short_name' => '授权码认证',
  3369. 'menu_type' => '2',
  3370. 'icon' => '',
  3371. 'api_url' => 'niucloud/authinfo',
  3372. 'router_path' => '',
  3373. 'view_path' => '',
  3374. 'methods' => 'post',
  3375. 'sort' => '100',
  3376. 'status' => '1',
  3377. 'is_show' => '1',
  3378. ],
  3379. [
  3380. 'menu_name' => '检查更新',
  3381. 'menu_key' => 'app_auth_check_update',
  3382. 'menu_short_name' => '检查更新',
  3383. 'menu_type' => '2',
  3384. 'icon' => '',
  3385. 'api_url' => 'niucloud/addon/status/<version_id>',
  3386. 'router_path' => '',
  3387. 'view_path' => '',
  3388. 'methods' => 'put',
  3389. 'sort' => '100',
  3390. 'status' => '1',
  3391. 'is_show' => '1',
  3392. ],
  3393. [
  3394. 'menu_name' => '云编译',
  3395. 'menu_key' => 'app_auth_cloud_compile',
  3396. 'menu_short_name' => '云编译',
  3397. 'menu_type' => '2',
  3398. 'icon' => '',
  3399. 'api_url' => 'niucloud/build',
  3400. 'router_path' => '',
  3401. 'view_path' => '',
  3402. 'methods' => 'post',
  3403. 'sort' => '100',
  3404. 'status' => '1',
  3405. 'is_show' => '1',
  3406. ],
  3407. [
  3408. 'menu_name' => '清除编译任务',
  3409. 'menu_key' => 'app_auth_clear_cloud_compile_task',
  3410. 'menu_short_name' => '清除编译任务',
  3411. 'menu_type' => '2',
  3412. 'icon' => '',
  3413. 'api_url' => 'niucloud/build/clear',
  3414. 'router_path' => '',
  3415. 'view_path' => '',
  3416. 'methods' => 'post',
  3417. 'sort' => '100',
  3418. 'status' => '1',
  3419. 'is_show' => '1',
  3420. ],
  3421. ]
  3422. ],
  3423. [
  3424. 'menu_name' => '开发者key',
  3425. 'menu_key' => 'developer_token',
  3426. 'menu_short_name' => '开发者key',
  3427. 'menu_type' => '1',
  3428. 'icon' => 'iconfont-iconkaifazheguanli',
  3429. 'api_url' => 'sys/config/developer_token',
  3430. 'router_path' => 'tools/developer_token',
  3431. 'view_path' => 'setting/developer_token',
  3432. 'methods' => 'get',
  3433. 'sort' => '20',
  3434. 'status' => '1',
  3435. 'is_show' => '1',
  3436. ],
  3437. ],
  3438. ],
  3439. [
  3440. 'menu_name' => '店铺管理',
  3441. 'menu_key' => 'shop_manage',
  3442. 'menu_short_name' => '店铺',
  3443. 'parent_key' => '',
  3444. 'menu_type' => '0',
  3445. 'icon' => 'element-Memo',
  3446. 'api_url' => '',
  3447. 'router_path' => '',
  3448. 'view_path' => '',
  3449. 'methods' => '',
  3450. 'sort' => '50',
  3451. 'status' => '1',
  3452. 'is_show' => '1',
  3453. 'children' => [
  3454. [
  3455. 'menu_name' => '店铺列表',
  3456. 'menu_key' => 'shop_list',
  3457. 'menu_short_name' => '店铺列表',
  3458. 'menu_type' => '1',
  3459. 'icon' => 'iconfont-icondianpuliebiao1',
  3460. 'api_url' => 'shop/admin/shop',
  3461. 'router_path' => 'shop/list',
  3462. 'view_path' => 'shop/admin/list',
  3463. 'methods' => 'get',
  3464. 'sort' => '100',
  3465. 'status' => '1',
  3466. 'is_show' => '1',
  3467. 'children' => [
  3468. [
  3469. 'menu_name' => '添加',
  3470. 'menu_key' => 'add_shop',
  3471. 'menu_short_name' => '添加店铺',
  3472. 'menu_type' => '2',
  3473. 'icon' => '',
  3474. 'api_url' => 'shop/admin/shop',
  3475. 'router_path' => '',
  3476. 'view_path' => '',
  3477. 'methods' => 'post',
  3478. 'sort' => '100',
  3479. 'status' => '1',
  3480. 'is_show' => '1',
  3481. ],
  3482. [
  3483. 'menu_name' => '编辑店铺',
  3484. 'menu_key' => 'edit_shop',
  3485. 'menu_short_name' => '编辑店铺',
  3486. 'menu_type' => '2',
  3487. 'icon' => '',
  3488. 'api_url' => 'shop/admin/shop/<id>',
  3489. 'router_path' => '',
  3490. 'view_path' => '',
  3491. 'methods' => 'put',
  3492. 'sort' => '100',
  3493. 'status' => '1',
  3494. 'is_show' => '1',
  3495. ],
  3496. [
  3497. 'menu_name' => '删除店铺',
  3498. 'menu_key' => 'delete_shop',
  3499. 'menu_short_name' => '删除店铺',
  3500. 'menu_type' => '2',
  3501. 'icon' => '',
  3502. 'api_url' => 'shop/admin/shop/<id>',
  3503. 'router_path' => '',
  3504. 'view_path' => '',
  3505. 'methods' => 'delete',
  3506. 'sort' => '100',
  3507. 'status' => '1',
  3508. 'is_show' => '1',
  3509. ],
  3510. [
  3511. 'menu_name' => '关闭店铺',
  3512. 'menu_key' => 'close_shop',
  3513. 'menu_short_name' => '关闭店铺',
  3514. 'menu_type' => '2',
  3515. 'icon' => '',
  3516. 'api_url' => 'shop/admin/shop/close/<id>',
  3517. 'router_path' => '',
  3518. 'view_path' => '',
  3519. 'methods' => 'put',
  3520. 'sort' => '100',
  3521. 'status' => '1',
  3522. 'is_show' => '1',
  3523. ],
  3524. [
  3525. 'menu_name' => '开启店铺',
  3526. 'menu_key' => 'open_shop',
  3527. 'menu_short_name' => '开启店铺',
  3528. 'menu_type' => '2',
  3529. 'icon' => '',
  3530. 'api_url' => 'shop/admin/shop/open/<id>',
  3531. 'router_path' => '',
  3532. 'view_path' => '',
  3533. 'methods' => 'put',
  3534. 'sort' => '100',
  3535. 'status' => '1',
  3536. 'is_show' => '1',
  3537. ],
  3538. [
  3539. 'menu_name' => '店铺账户信息修改',
  3540. 'menu_key' => 'edit_shop_account',
  3541. 'menu_short_name' => '店铺账户信息修改',
  3542. 'menu_type' => '2',
  3543. 'icon' => '',
  3544. 'api_url' => 'shop/admin/shop/account/<id>',
  3545. 'router_path' => '',
  3546. 'view_path' => '',
  3547. 'methods' => 'put',
  3548. 'sort' => '100',
  3549. 'status' => '1',
  3550. 'is_show' => '1',
  3551. ],
  3552. ],
  3553. ],
  3554. [
  3555. 'menu_name' => '店铺详情',
  3556. 'menu_key' => 'shop_info',
  3557. 'menu_short_name' => '店铺详情',
  3558. 'menu_type' => '1',
  3559. 'icon' => '',
  3560. 'api_url' => 'shop/admin/shop/<site_id>',
  3561. 'router_path' => 'shop/info',
  3562. 'view_path' => 'shop/admin/info',
  3563. 'methods' => 'get',
  3564. 'sort' => '90',
  3565. 'status' => '1',
  3566. 'is_show' => '0',
  3567. ],
  3568. [
  3569. 'menu_name' => '店铺套餐',
  3570. 'menu_key' => 'shop_group',
  3571. 'menu_short_name' => '店铺套餐',
  3572. 'menu_type' => '1',
  3573. 'icon' => 'iconfont-icondianputaocan1',
  3574. 'api_url' => 'shop/admin/group',
  3575. 'router_path' => 'shop/group',
  3576. 'view_path' => 'shop/admin/group',
  3577. 'methods' => 'get',
  3578. 'sort' => '80',
  3579. 'status' => '1',
  3580. 'is_show' => '1',
  3581. 'children' => [
  3582. [
  3583. 'menu_name' => '店铺套餐删除',
  3584. 'menu_key' => 'shop_group_delete',
  3585. 'menu_short_name' => '店铺套餐删除',
  3586. 'menu_type' => '2',
  3587. 'icon' => '',
  3588. 'api_url' => 'shop/admin/shop_group/<group_id>',
  3589. 'router_path' => '',
  3590. 'view_path' => '',
  3591. 'methods' => 'delete',
  3592. 'sort' => '100',
  3593. 'status' => '1',
  3594. 'is_show' => '1',
  3595. ],
  3596. ]
  3597. ],
  3598. [
  3599. 'menu_name' => '店铺套餐添加/编辑',
  3600. 'menu_key' => 'shop_group_add_edit',
  3601. 'menu_short_name' => '店铺套餐添加/编辑',
  3602. 'menu_type' => '1',
  3603. 'icon' => 'element-PriceTag',
  3604. 'api_url' => '',
  3605. 'router_path' => 'shop/group_edit',
  3606. 'view_path' => 'shop/admin/group_edit',
  3607. 'methods' => 'get',
  3608. 'sort' => '70',
  3609. 'status' => '1',
  3610. 'is_show' => '0',
  3611. 'children' => [
  3612. [
  3613. 'menu_name' => '店铺套餐添加',
  3614. 'menu_key' => 'shop_group_add',
  3615. 'menu_short_name' => '店铺套餐添加',
  3616. 'menu_type' => '2',
  3617. 'icon' => '',
  3618. 'api_url' => 'shop/admin/shop_group',
  3619. 'router_path' => '',
  3620. 'view_path' => '',
  3621. 'methods' => 'post',
  3622. 'sort' => '100',
  3623. 'status' => '1',
  3624. 'is_show' => '1',
  3625. ],
  3626. [
  3627. 'menu_name' => '店铺套餐编辑',
  3628. 'menu_key' => 'shop_group_edit',
  3629. 'menu_short_name' => '店铺套餐编辑',
  3630. 'menu_type' => '2',
  3631. 'icon' => '',
  3632. 'api_url' => 'shop/admin/shop_group/<group_id>',
  3633. 'router_path' => '',
  3634. 'view_path' => '',
  3635. 'methods' => 'put',
  3636. 'sort' => '100',
  3637. 'status' => '1',
  3638. 'is_show' => '1',
  3639. ],
  3640. ]
  3641. ],
  3642. [
  3643. 'menu_name' => '店铺分类',
  3644. 'menu_key' => 'shop_category',
  3645. 'menu_short_name' => '店铺分类',
  3646. 'menu_type' => '1',
  3647. 'icon' => 'iconfont-icondianpufenlei1',
  3648. 'api_url' => 'shop/admin/category',
  3649. 'router_path' => 'shop/category',
  3650. 'view_path' => 'shop/admin/category',
  3651. 'methods' => 'get',
  3652. 'sort' => '80',
  3653. 'status' => '1',
  3654. 'is_show' => '1',
  3655. 'children' => [
  3656. [
  3657. 'menu_name' => '店铺分类删除',
  3658. 'menu_key' => 'shop_category_delete',
  3659. 'menu_short_name' => '店铺分类删除',
  3660. 'menu_type' => '2',
  3661. 'icon' => '',
  3662. 'api_url' => 'shop/admin/shop_category/<id>',
  3663. 'router_path' => '',
  3664. 'view_path' => '',
  3665. 'methods' => 'delete',
  3666. 'sort' => '100',
  3667. 'status' => '1',
  3668. 'is_show' => '1',
  3669. ],
  3670. ]
  3671. ],
  3672. [
  3673. 'menu_name' => '店铺分类添加/编辑',
  3674. 'menu_key' => 'shop_category_add_edit',
  3675. 'menu_short_name' => '店铺分类添加/编辑',
  3676. 'menu_type' => '1',
  3677. 'icon' => 'element-PriceTag',
  3678. 'api_url' => '',
  3679. 'router_path' => 'shop/category_edit',
  3680. 'view_path' => 'shop/admin/category_edit',
  3681. 'methods' => 'get',
  3682. 'sort' => '70',
  3683. 'status' => '1',
  3684. 'is_show' => '0',
  3685. 'children' => [
  3686. [
  3687. 'menu_name' => '店铺分类添加',
  3688. 'menu_key' => 'shop_category_add',
  3689. 'menu_short_name' => '店铺分类添加',
  3690. 'menu_type' => '2',
  3691. 'icon' => '',
  3692. 'api_url' => 'shop/admin/shop_category',
  3693. 'router_path' => '',
  3694. 'view_path' => '',
  3695. 'methods' => 'post',
  3696. 'sort' => '100',
  3697. 'status' => '1',
  3698. 'is_show' => '1',
  3699. ],
  3700. [
  3701. 'menu_name' => '店铺分类编辑',
  3702. 'menu_key' => 'shop_category_edit',
  3703. 'menu_short_name' => '店铺分类编辑',
  3704. 'menu_type' => '2',
  3705. 'icon' => '',
  3706. 'api_url' => 'shop/admin/shop_category/<id>',
  3707. 'router_path' => '',
  3708. 'view_path' => '',
  3709. 'methods' => 'put',
  3710. 'sort' => '100',
  3711. 'status' => '1',
  3712. 'is_show' => '1',
  3713. ],
  3714. ]
  3715. ],
  3716. [
  3717. 'menu_name' => '店铺用户',
  3718. 'menu_key' => 'shop_user_list',
  3719. 'menu_short_name' => '店铺用户',
  3720. 'menu_type' => '1',
  3721. 'icon' => 'iconfont-icondianpuyonghu1',
  3722. 'api_url' => 'shop/admin/site/user',
  3723. 'router_path' => 'shop/user',
  3724. 'view_path' => 'shop/admin/user',
  3725. 'methods' => 'get',
  3726. 'sort' => '90',
  3727. 'status' => '1',
  3728. 'is_show' => '1',
  3729. ],
  3730. [
  3731. 'menu_name' => '用户详情',
  3732. 'menu_key' => 'shop_user_info',
  3733. 'menu_short_name' => '用户详情',
  3734. 'menu_type' => '1',
  3735. 'icon' => 'element-OfficeBuilding',
  3736. 'api_url' => '',
  3737. 'router_path' => 'shop/user_info',
  3738. 'view_path' => 'shop/admin/user_info',
  3739. 'methods' => 'get',
  3740. 'sort' => '80',
  3741. 'status' => '1',
  3742. 'is_show' => '0',
  3743. ],
  3744. [
  3745. 'menu_name' => '店铺申请',
  3746. 'menu_key' => 'shop_apply',
  3747. 'menu_short_name' => '店铺申请',
  3748. 'menu_type' => '1',
  3749. 'icon' => 'iconfont-icondianpushenqing1',
  3750. 'api_url' => 'shop/admin/apply',
  3751. 'router_path' => 'shop/apply',
  3752. 'view_path' => 'shop/admin/apply',
  3753. 'methods' => 'get',
  3754. 'sort' => '70',
  3755. 'status' => '1',
  3756. 'is_show' => '1',
  3757. 'children' => [
  3758. [
  3759. 'menu_name' => '删除店铺申请',
  3760. 'menu_key' => 'shop_apply_del',
  3761. 'menu_short_name' => '删除店铺申请',
  3762. 'menu_type' => '2',
  3763. 'icon' => '',
  3764. 'api_url' => 'shop/admin/shop_apply/<id>',
  3765. 'router_path' => '',
  3766. 'view_path' => '',
  3767. 'methods' => 'delete',
  3768. 'sort' => '100',
  3769. 'status' => '1',
  3770. 'is_show' => '1',
  3771. ],
  3772. [
  3773. 'menu_name' => '店铺申请审核',
  3774. 'menu_key' => 'shop_apply_audit',
  3775. 'menu_short_name' => '店铺申请审核',
  3776. 'menu_type' => '2',
  3777. 'icon' => '',
  3778. 'api_url' => 'shop/admin/shop_apply/verify/<id>',
  3779. 'router_path' => '',
  3780. 'view_path' => '',
  3781. 'methods' => 'put',
  3782. 'sort' => '100',
  3783. 'status' => '1',
  3784. 'is_show' => '1',
  3785. ],
  3786. ],
  3787. ],
  3788. [
  3789. 'menu_name' => '店铺申请详情',
  3790. 'menu_key' => 'shop_apply_info',
  3791. 'menu_short_name' => '店铺申请详情',
  3792. 'menu_type' => '1',
  3793. 'icon' => '',
  3794. 'api_url' => '',
  3795. 'router_path' => 'shop/apply_info',
  3796. 'view_path' => 'shop/admin/apply_info',
  3797. 'methods' => 'get',
  3798. 'sort' => '100',
  3799. 'status' => '1',
  3800. 'is_show' => '0',
  3801. ],
  3802. ],
  3803. ],
  3804. ];