menu.php 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151
  1. <?php
  2. /**
  3. * 菜单配置文件
  4. */
  5. return array (
  6. 0 =>
  7. array (
  8. 'type' => 'file',
  9. 'name' => 'shopro',
  10. 'title' => 'Shopro商城',
  11. 'icon' => 'fa fa-dropbox',
  12. 'url' => '',
  13. 'condition' => '',
  14. 'remark' => '',
  15. 'ismenu' => 1,
  16. 'menutype' => 'addtabs',
  17. 'extend' => '',
  18. 'py' => 'Ssc',
  19. 'pinyin' => 'Shoproshangcheng',
  20. 'weigh' => 0,
  21. 'sublist' =>
  22. array (
  23. 0 =>
  24. array (
  25. 'type' => 'file',
  26. 'name' => 'shopro/data',
  27. 'title' => '数据管理',
  28. 'icon' => 'fa fa-bar-chart',
  29. 'url' => '',
  30. 'condition' => '',
  31. 'remark' => '',
  32. 'ismenu' => 1,
  33. 'menutype' => 'addtabs',
  34. 'extend' => '',
  35. 'py' => 'sjgl',
  36. 'pinyin' => 'shujuguanli',
  37. 'weigh' => 50,
  38. 'sublist' =>
  39. array (
  40. 0 =>
  41. array (
  42. 'type' => 'file',
  43. 'name' => 'shopro/data/fake_user',
  44. 'title' => '虚拟用户',
  45. 'icon' => 'fa fa-user-o',
  46. 'url' => '',
  47. 'condition' => '',
  48. 'remark' => '',
  49. 'ismenu' => 1,
  50. 'menutype' => 'addtabs',
  51. 'extend' => '',
  52. 'py' => 'xnyh',
  53. 'pinyin' => 'xuniyonghu',
  54. 'weigh' => 10,
  55. 'sublist' =>
  56. array (
  57. 0 =>
  58. array (
  59. 'type' => 'file',
  60. 'name' => 'shopro/data/fake_user/index',
  61. 'title' => '查看',
  62. 'icon' => 'fa fa-circle-o',
  63. 'url' => '',
  64. 'condition' => '',
  65. 'remark' => '',
  66. 'ismenu' => 0,
  67. 'menutype' => 'addtabs',
  68. 'extend' => '',
  69. 'py' => 'zk',
  70. 'pinyin' => 'zhakan',
  71. 'weigh' => 0,
  72. ),
  73. 1 =>
  74. array (
  75. 'type' => 'file',
  76. 'name' => 'shopro/data/fake_user/detail',
  77. 'title' => '详情',
  78. 'icon' => 'fa fa-circle-o',
  79. 'url' => '',
  80. 'condition' => '',
  81. 'remark' => '',
  82. 'ismenu' => 0,
  83. 'menutype' => 'addtabs',
  84. 'extend' => '',
  85. 'py' => 'xq',
  86. 'pinyin' => 'xiangqing',
  87. 'weigh' => 0,
  88. ),
  89. 2 =>
  90. array (
  91. 'type' => 'file',
  92. 'name' => 'shopro/data/fake_user/add',
  93. 'title' => '添加',
  94. 'icon' => 'fa fa-circle-o',
  95. 'url' => '',
  96. 'condition' => '',
  97. 'remark' => '',
  98. 'ismenu' => 0,
  99. 'menutype' => 'addtabs',
  100. 'extend' => '',
  101. 'py' => 'tj',
  102. 'pinyin' => 'tianjia',
  103. 'weigh' => 0,
  104. ),
  105. 3 =>
  106. array (
  107. 'type' => 'file',
  108. 'name' => 'shopro/data/fake_user/edit',
  109. 'title' => '编辑',
  110. 'icon' => 'fa fa-circle-o',
  111. 'url' => '',
  112. 'condition' => '',
  113. 'remark' => '',
  114. 'ismenu' => 0,
  115. 'menutype' => 'addtabs',
  116. 'extend' => '',
  117. 'py' => 'bj',
  118. 'pinyin' => 'bianji',
  119. 'weigh' => 0,
  120. ),
  121. 4 =>
  122. array (
  123. 'type' => 'file',
  124. 'name' => 'shopro/data/fake_user/delete',
  125. 'title' => '删除',
  126. 'icon' => 'fa fa-circle-o',
  127. 'url' => '',
  128. 'condition' => '',
  129. 'remark' => '',
  130. 'ismenu' => 0,
  131. 'menutype' => 'addtabs',
  132. 'extend' => '',
  133. 'py' => 'sc',
  134. 'pinyin' => 'shanchu',
  135. 'weigh' => 0,
  136. ),
  137. 5 =>
  138. array (
  139. 'type' => 'file',
  140. 'name' => 'shopro/data/fake_user/random',
  141. 'title' => '随机生成虚拟用户',
  142. 'icon' => 'fa fa-circle-o',
  143. 'url' => '',
  144. 'condition' => '',
  145. 'remark' => '',
  146. 'ismenu' => 0,
  147. 'menutype' => 'addtabs',
  148. 'extend' => '',
  149. 'py' => 'sjscxnyh',
  150. 'pinyin' => 'suijishengchengxuniyonghu',
  151. 'weigh' => 0,
  152. ),
  153. ),
  154. ),
  155. 1 =>
  156. array (
  157. 'type' => 'file',
  158. 'name' => 'shopro/data/page',
  159. 'title' => '页面链接',
  160. 'icon' => 'fa fa-link',
  161. 'url' => '',
  162. 'condition' => '',
  163. 'remark' => '',
  164. 'ismenu' => 1,
  165. 'menutype' => 'addtabs',
  166. 'extend' => '',
  167. 'py' => 'ymlj',
  168. 'pinyin' => 'yemianlianjie',
  169. 'weigh' => 9,
  170. 'sublist' =>
  171. array (
  172. 0 =>
  173. array (
  174. 'type' => 'file',
  175. 'name' => 'shopro/data/page/index',
  176. 'title' => '查看',
  177. 'icon' => 'fa fa-circle-o',
  178. 'url' => '',
  179. 'condition' => '',
  180. 'remark' => '',
  181. 'ismenu' => 0,
  182. 'menutype' => 'addtabs',
  183. 'extend' => '',
  184. 'py' => 'zk',
  185. 'pinyin' => 'zhakan',
  186. 'weigh' => 0,
  187. ),
  188. 1 =>
  189. array (
  190. 'type' => 'file',
  191. 'name' => 'shopro/data/page/detail',
  192. 'title' => '详情',
  193. 'icon' => 'fa fa-circle-o',
  194. 'url' => '',
  195. 'condition' => '',
  196. 'remark' => '',
  197. 'ismenu' => 0,
  198. 'menutype' => 'addtabs',
  199. 'extend' => '',
  200. 'py' => 'xq',
  201. 'pinyin' => 'xiangqing',
  202. 'weigh' => 0,
  203. ),
  204. 2 =>
  205. array (
  206. 'type' => 'file',
  207. 'name' => 'shopro/data/page/add',
  208. 'title' => '添加',
  209. 'icon' => 'fa fa-circle-o',
  210. 'url' => '',
  211. 'condition' => '',
  212. 'remark' => '',
  213. 'ismenu' => 0,
  214. 'menutype' => 'addtabs',
  215. 'extend' => '',
  216. 'py' => 'tj',
  217. 'pinyin' => 'tianjia',
  218. 'weigh' => 0,
  219. ),
  220. 3 =>
  221. array (
  222. 'type' => 'file',
  223. 'name' => 'shopro/data/page/edit',
  224. 'title' => '编辑',
  225. 'icon' => 'fa fa-circle-o',
  226. 'url' => '',
  227. 'condition' => '',
  228. 'remark' => '',
  229. 'ismenu' => 0,
  230. 'menutype' => 'addtabs',
  231. 'extend' => '',
  232. 'py' => 'bj',
  233. 'pinyin' => 'bianji',
  234. 'weigh' => 0,
  235. ),
  236. 4 =>
  237. array (
  238. 'type' => 'file',
  239. 'name' => 'shopro/data/page/delete',
  240. 'title' => '删除',
  241. 'icon' => 'fa fa-circle-o',
  242. 'url' => '',
  243. 'condition' => '',
  244. 'remark' => '',
  245. 'ismenu' => 0,
  246. 'menutype' => 'addtabs',
  247. 'extend' => '',
  248. 'py' => 'sc',
  249. 'pinyin' => 'shanchu',
  250. 'weigh' => 0,
  251. ),
  252. ),
  253. ),
  254. 2 =>
  255. array (
  256. 'type' => 'file',
  257. 'name' => 'shopro/data/richtext',
  258. 'title' => '富文本',
  259. 'icon' => 'fa fa-language',
  260. 'url' => '',
  261. 'condition' => '',
  262. 'remark' => '',
  263. 'ismenu' => 1,
  264. 'menutype' => 'addtabs',
  265. 'extend' => '',
  266. 'py' => 'fwb',
  267. 'pinyin' => 'fuwenben',
  268. 'weigh' => 8,
  269. 'sublist' =>
  270. array (
  271. 0 =>
  272. array (
  273. 'type' => 'file',
  274. 'name' => 'shopro/data/richtext/index',
  275. 'title' => '查看',
  276. 'icon' => 'fa fa-circle-o',
  277. 'url' => '',
  278. 'condition' => '',
  279. 'remark' => '',
  280. 'ismenu' => 0,
  281. 'menutype' => 'addtabs',
  282. 'extend' => '',
  283. 'py' => 'zk',
  284. 'pinyin' => 'zhakan',
  285. 'weigh' => 0,
  286. ),
  287. 1 =>
  288. array (
  289. 'type' => 'file',
  290. 'name' => 'shopro/data/richtext/detail',
  291. 'title' => '详情',
  292. 'icon' => 'fa fa-circle-o',
  293. 'url' => '',
  294. 'condition' => '',
  295. 'remark' => '',
  296. 'ismenu' => 0,
  297. 'menutype' => 'addtabs',
  298. 'extend' => '',
  299. 'py' => 'xq',
  300. 'pinyin' => 'xiangqing',
  301. 'weigh' => 0,
  302. ),
  303. 2 =>
  304. array (
  305. 'type' => 'file',
  306. 'name' => 'shopro/data/richtext/add',
  307. 'title' => '添加',
  308. 'icon' => 'fa fa-circle-o',
  309. 'url' => '',
  310. 'condition' => '',
  311. 'remark' => '',
  312. 'ismenu' => 0,
  313. 'menutype' => 'addtabs',
  314. 'extend' => '',
  315. 'py' => 'tj',
  316. 'pinyin' => 'tianjia',
  317. 'weigh' => 0,
  318. ),
  319. 3 =>
  320. array (
  321. 'type' => 'file',
  322. 'name' => 'shopro/data/richtext/edit',
  323. 'title' => '编辑',
  324. 'icon' => 'fa fa-circle-o',
  325. 'url' => '',
  326. 'condition' => '',
  327. 'remark' => '',
  328. 'ismenu' => 0,
  329. 'menutype' => 'addtabs',
  330. 'extend' => '',
  331. 'py' => 'bj',
  332. 'pinyin' => 'bianji',
  333. 'weigh' => 0,
  334. ),
  335. 4 =>
  336. array (
  337. 'type' => 'file',
  338. 'name' => 'shopro/data/richtext/delete',
  339. 'title' => '删除',
  340. 'icon' => 'fa fa-circle-o',
  341. 'url' => '',
  342. 'condition' => '',
  343. 'remark' => '',
  344. 'ismenu' => 0,
  345. 'menutype' => 'addtabs',
  346. 'extend' => '',
  347. 'py' => 'sc',
  348. 'pinyin' => 'shanchu',
  349. 'weigh' => 0,
  350. ),
  351. ),
  352. ),
  353. 3 =>
  354. array (
  355. 'type' => 'file',
  356. 'name' => 'shopro/data/faq',
  357. 'title' => '常见问题',
  358. 'icon' => 'fa fa-info-circle',
  359. 'url' => '',
  360. 'condition' => '',
  361. 'remark' => '',
  362. 'ismenu' => 1,
  363. 'menutype' => 'addtabs',
  364. 'extend' => '',
  365. 'py' => 'cjwt',
  366. 'pinyin' => 'changjianwenti',
  367. 'weigh' => 7,
  368. 'sublist' =>
  369. array (
  370. 0 =>
  371. array (
  372. 'type' => 'file',
  373. 'name' => 'shopro/data/faq/index',
  374. 'title' => '查看',
  375. 'icon' => 'fa fa-circle-o',
  376. 'url' => '',
  377. 'condition' => '',
  378. 'remark' => '',
  379. 'ismenu' => 0,
  380. 'menutype' => 'addtabs',
  381. 'extend' => '',
  382. 'py' => 'zk',
  383. 'pinyin' => 'zhakan',
  384. 'weigh' => 0,
  385. ),
  386. 1 =>
  387. array (
  388. 'type' => 'file',
  389. 'name' => 'shopro/data/faq/detail',
  390. 'title' => '详情',
  391. 'icon' => 'fa fa-circle-o',
  392. 'url' => '',
  393. 'condition' => '',
  394. 'remark' => '',
  395. 'ismenu' => 0,
  396. 'menutype' => 'addtabs',
  397. 'extend' => '',
  398. 'py' => 'xq',
  399. 'pinyin' => 'xiangqing',
  400. 'weigh' => 0,
  401. ),
  402. 2 =>
  403. array (
  404. 'type' => 'file',
  405. 'name' => 'shopro/data/faq/add',
  406. 'title' => '添加',
  407. 'icon' => 'fa fa-circle-o',
  408. 'url' => '',
  409. 'condition' => '',
  410. 'remark' => '',
  411. 'ismenu' => 0,
  412. 'menutype' => 'addtabs',
  413. 'extend' => '',
  414. 'py' => 'tj',
  415. 'pinyin' => 'tianjia',
  416. 'weigh' => 0,
  417. ),
  418. 3 =>
  419. array (
  420. 'type' => 'file',
  421. 'name' => 'shopro/data/faq/edit',
  422. 'title' => '编辑',
  423. 'icon' => 'fa fa-circle-o',
  424. 'url' => '',
  425. 'condition' => '',
  426. 'remark' => '',
  427. 'ismenu' => 0,
  428. 'menutype' => 'addtabs',
  429. 'extend' => '',
  430. 'py' => 'bj',
  431. 'pinyin' => 'bianji',
  432. 'weigh' => 0,
  433. ),
  434. 4 =>
  435. array (
  436. 'type' => 'file',
  437. 'name' => 'shopro/data/faq/delete',
  438. 'title' => '删除',
  439. 'icon' => 'fa fa-circle-o',
  440. 'url' => '',
  441. 'condition' => '',
  442. 'remark' => '',
  443. 'ismenu' => 0,
  444. 'menutype' => 'addtabs',
  445. 'extend' => '',
  446. 'py' => 'sc',
  447. 'pinyin' => 'shanchu',
  448. 'weigh' => 0,
  449. ),
  450. ),
  451. ),
  452. 4 =>
  453. array (
  454. 'type' => 'file',
  455. 'name' => 'shopro/data/area',
  456. 'title' => '省市区',
  457. 'icon' => 'fa fa-percent',
  458. 'url' => '',
  459. 'condition' => '',
  460. 'remark' => '',
  461. 'ismenu' => 1,
  462. 'menutype' => 'addtabs',
  463. 'extend' => '',
  464. 'py' => 'ssq',
  465. 'pinyin' => 'shengshiqu',
  466. 'weigh' => 6,
  467. 'sublist' =>
  468. array (
  469. 0 =>
  470. array (
  471. 'type' => 'file',
  472. 'name' => 'shopro/data/area/index',
  473. 'title' => '查看',
  474. 'icon' => 'fa fa-circle-o',
  475. 'url' => '',
  476. 'condition' => '',
  477. 'remark' => '',
  478. 'ismenu' => 0,
  479. 'menutype' => 'addtabs',
  480. 'extend' => '',
  481. 'py' => 'zk',
  482. 'pinyin' => 'zhakan',
  483. 'weigh' => 0,
  484. ),
  485. 1 =>
  486. array (
  487. 'type' => 'file',
  488. 'name' => 'shopro/data/area/detail',
  489. 'title' => '详情',
  490. 'icon' => 'fa fa-circle-o',
  491. 'url' => '',
  492. 'condition' => '',
  493. 'remark' => '',
  494. 'ismenu' => 0,
  495. 'menutype' => 'addtabs',
  496. 'extend' => '',
  497. 'py' => 'xq',
  498. 'pinyin' => 'xiangqing',
  499. 'weigh' => 0,
  500. ),
  501. 2 =>
  502. array (
  503. 'type' => 'file',
  504. 'name' => 'shopro/data/area/add',
  505. 'title' => '添加',
  506. 'icon' => 'fa fa-circle-o',
  507. 'url' => '',
  508. 'condition' => '',
  509. 'remark' => '',
  510. 'ismenu' => 0,
  511. 'menutype' => 'addtabs',
  512. 'extend' => '',
  513. 'py' => 'tj',
  514. 'pinyin' => 'tianjia',
  515. 'weigh' => 0,
  516. ),
  517. 3 =>
  518. array (
  519. 'type' => 'file',
  520. 'name' => 'shopro/data/area/edit',
  521. 'title' => '编辑',
  522. 'icon' => 'fa fa-circle-o',
  523. 'url' => '',
  524. 'condition' => '',
  525. 'remark' => '',
  526. 'ismenu' => 0,
  527. 'menutype' => 'addtabs',
  528. 'extend' => '',
  529. 'py' => 'bj',
  530. 'pinyin' => 'bianji',
  531. 'weigh' => 0,
  532. ),
  533. 4 =>
  534. array (
  535. 'type' => 'file',
  536. 'name' => 'shopro/data/area/delete',
  537. 'title' => '删除',
  538. 'icon' => 'fa fa-circle-o',
  539. 'url' => '',
  540. 'condition' => '',
  541. 'remark' => '',
  542. 'ismenu' => 0,
  543. 'menutype' => 'addtabs',
  544. 'extend' => '',
  545. 'py' => 'sc',
  546. 'pinyin' => 'shanchu',
  547. 'weigh' => 0,
  548. ),
  549. ),
  550. ),
  551. 5 =>
  552. array (
  553. 'type' => 'file',
  554. 'name' => 'shopro/data/express',
  555. 'title' => '快递公司',
  556. 'icon' => 'fa fa-ambulance',
  557. 'url' => '',
  558. 'condition' => '',
  559. 'remark' => '',
  560. 'ismenu' => 1,
  561. 'menutype' => 'addtabs',
  562. 'extend' => '',
  563. 'py' => 'kdgs',
  564. 'pinyin' => 'kuaidigongsi',
  565. 'weigh' => 5,
  566. 'sublist' =>
  567. array (
  568. 0 =>
  569. array (
  570. 'type' => 'file',
  571. 'name' => 'shopro/data/express/index',
  572. 'title' => '查看',
  573. 'icon' => 'fa fa-circle-o',
  574. 'url' => '',
  575. 'condition' => '',
  576. 'remark' => '',
  577. 'ismenu' => 0,
  578. 'menutype' => 'addtabs',
  579. 'extend' => '',
  580. 'py' => 'zk',
  581. 'pinyin' => 'zhakan',
  582. 'weigh' => 0,
  583. ),
  584. 1 =>
  585. array (
  586. 'type' => 'file',
  587. 'name' => 'shopro/data/express/detail',
  588. 'title' => '详情',
  589. 'icon' => 'fa fa-circle-o',
  590. 'url' => '',
  591. 'condition' => '',
  592. 'remark' => '',
  593. 'ismenu' => 0,
  594. 'menutype' => 'addtabs',
  595. 'extend' => '',
  596. 'py' => 'xq',
  597. 'pinyin' => 'xiangqing',
  598. 'weigh' => 0,
  599. ),
  600. 2 =>
  601. array (
  602. 'type' => 'file',
  603. 'name' => 'shopro/data/express/add',
  604. 'title' => '添加',
  605. 'icon' => 'fa fa-circle-o',
  606. 'url' => '',
  607. 'condition' => '',
  608. 'remark' => '',
  609. 'ismenu' => 0,
  610. 'menutype' => 'addtabs',
  611. 'extend' => '',
  612. 'py' => 'tj',
  613. 'pinyin' => 'tianjia',
  614. 'weigh' => 0,
  615. ),
  616. 3 =>
  617. array (
  618. 'type' => 'file',
  619. 'name' => 'shopro/data/express/edit',
  620. 'title' => '编辑',
  621. 'icon' => 'fa fa-circle-o',
  622. 'url' => '',
  623. 'condition' => '',
  624. 'remark' => '',
  625. 'ismenu' => 0,
  626. 'menutype' => 'addtabs',
  627. 'extend' => '',
  628. 'py' => 'bj',
  629. 'pinyin' => 'bianji',
  630. 'weigh' => 0,
  631. ),
  632. 4 =>
  633. array (
  634. 'type' => 'file',
  635. 'name' => 'shopro/data/express/delete',
  636. 'title' => '删除',
  637. 'icon' => 'fa fa-circle-o',
  638. 'url' => '',
  639. 'condition' => '',
  640. 'remark' => '',
  641. 'ismenu' => 0,
  642. 'menutype' => 'addtabs',
  643. 'extend' => '',
  644. 'py' => 'sc',
  645. 'pinyin' => 'shanchu',
  646. 'weigh' => 0,
  647. ),
  648. ),
  649. ),
  650. ),
  651. ),
  652. 1 =>
  653. array (
  654. 'type' => 'file',
  655. 'name' => 'shopro/goods',
  656. 'title' => '商品管理',
  657. 'icon' => 'fa fa-archive',
  658. 'url' => '',
  659. 'condition' => '',
  660. 'remark' => '',
  661. 'ismenu' => 1,
  662. 'menutype' => 'addtabs',
  663. 'extend' => '',
  664. 'py' => 'spgl',
  665. 'pinyin' => 'shangpinguanli',
  666. 'weigh' => 130,
  667. 'sublist' =>
  668. array (
  669. 0 =>
  670. array (
  671. 'type' => 'file',
  672. 'name' => 'shopro/goods/goods',
  673. 'title' => '商品库',
  674. 'icon' => 'fa fa-shopping-bag',
  675. 'url' => '',
  676. 'condition' => '',
  677. 'remark' => '',
  678. 'ismenu' => 1,
  679. 'menutype' => 'addtabs',
  680. 'extend' => '',
  681. 'py' => 'spk',
  682. 'pinyin' => 'shangpinku',
  683. 'weigh' => 10,
  684. 'sublist' =>
  685. array (
  686. 0 =>
  687. array (
  688. 'type' => 'file',
  689. 'name' => 'shopro/goods/goods/index',
  690. 'title' => '查看',
  691. 'icon' => 'fa fa-circle-o',
  692. 'url' => '',
  693. 'condition' => '',
  694. 'remark' => '',
  695. 'ismenu' => 0,
  696. 'menutype' => 'addtabs',
  697. 'extend' => '',
  698. 'py' => 'zk',
  699. 'pinyin' => 'zhakan',
  700. 'weigh' => 0,
  701. ),
  702. 1 =>
  703. array (
  704. 'type' => 'file',
  705. 'name' => 'shopro/goods/goods/detail',
  706. 'title' => '详情',
  707. 'icon' => 'fa fa-circle-o',
  708. 'url' => '',
  709. 'condition' => '',
  710. 'remark' => '',
  711. 'ismenu' => 0,
  712. 'menutype' => 'addtabs',
  713. 'extend' => '',
  714. 'py' => 'xq',
  715. 'pinyin' => 'xiangqing',
  716. 'weigh' => 0,
  717. ),
  718. 2 =>
  719. array (
  720. 'type' => 'file',
  721. 'name' => 'shopro/goods/goods/add',
  722. 'title' => '添加',
  723. 'icon' => 'fa fa-circle-o',
  724. 'url' => '',
  725. 'condition' => '',
  726. 'remark' => '',
  727. 'ismenu' => 0,
  728. 'menutype' => 'addtabs',
  729. 'extend' => '',
  730. 'py' => 'tj',
  731. 'pinyin' => 'tianjia',
  732. 'weigh' => 0,
  733. ),
  734. 3 =>
  735. array (
  736. 'type' => 'file',
  737. 'name' => 'shopro/goods/goods/edit',
  738. 'title' => '编辑',
  739. 'icon' => 'fa fa-circle-o',
  740. 'url' => '',
  741. 'condition' => '',
  742. 'remark' => '',
  743. 'ismenu' => 0,
  744. 'menutype' => 'addtabs',
  745. 'extend' => '',
  746. 'py' => 'bj',
  747. 'pinyin' => 'bianji',
  748. 'weigh' => 0,
  749. ),
  750. 4 =>
  751. array (
  752. 'type' => 'file',
  753. 'name' => 'shopro/goods/goods/delete',
  754. 'title' => '删除',
  755. 'icon' => 'fa fa-circle-o',
  756. 'url' => '',
  757. 'condition' => '',
  758. 'remark' => '',
  759. 'ismenu' => 0,
  760. 'menutype' => 'addtabs',
  761. 'extend' => '',
  762. 'py' => 'sc',
  763. 'pinyin' => 'shanchu',
  764. 'weigh' => 0,
  765. ),
  766. 5 =>
  767. array (
  768. 'type' => 'file',
  769. 'name' => 'shopro/goods/goods/recyclebin',
  770. 'title' => '回收站',
  771. 'icon' => 'fa fa-circle-o',
  772. 'url' => '',
  773. 'condition' => '',
  774. 'remark' => '',
  775. 'ismenu' => 0,
  776. 'menutype' => 'addtabs',
  777. 'extend' => '',
  778. 'py' => 'hsz',
  779. 'pinyin' => 'huishouzhan',
  780. 'weigh' => 0,
  781. ),
  782. 6 =>
  783. array (
  784. 'type' => 'file',
  785. 'name' => 'shopro/goods/goods/restore',
  786. 'title' => '还原',
  787. 'icon' => 'fa fa-circle-o',
  788. 'url' => '',
  789. 'condition' => '',
  790. 'remark' => '',
  791. 'ismenu' => 0,
  792. 'menutype' => 'addtabs',
  793. 'extend' => '',
  794. 'py' => 'hy',
  795. 'pinyin' => 'huanyuan',
  796. 'weigh' => 0,
  797. ),
  798. 7 =>
  799. array (
  800. 'type' => 'file',
  801. 'name' => 'shopro/goods/goods/destroy',
  802. 'title' => '销毁',
  803. 'icon' => 'fa fa-circle-o',
  804. 'url' => '',
  805. 'condition' => '',
  806. 'remark' => '',
  807. 'ismenu' => 0,
  808. 'menutype' => 'addtabs',
  809. 'extend' => '',
  810. 'py' => 'xh',
  811. 'pinyin' => 'xiaohui',
  812. 'weigh' => 0,
  813. ),
  814. 8 =>
  815. array (
  816. 'type' => 'file',
  817. 'name' => 'shopro/goods/goods/addstock',
  818. 'title' => '补货',
  819. 'icon' => 'fa fa-circle-o',
  820. 'url' => '',
  821. 'condition' => '',
  822. 'remark' => '',
  823. 'ismenu' => 0,
  824. 'menutype' => 'addtabs',
  825. 'extend' => '',
  826. 'py' => 'bh',
  827. 'pinyin' => 'buhuo',
  828. 'weigh' => 0,
  829. ),
  830. ),
  831. ),
  832. 1 =>
  833. array (
  834. 'type' => 'file',
  835. 'name' => 'shopro/goods/service',
  836. 'title' => '服务保障',
  837. 'icon' => 'fa fa-tags',
  838. 'url' => '',
  839. 'condition' => '',
  840. 'remark' => '',
  841. 'ismenu' => 1,
  842. 'menutype' => 'addtabs',
  843. 'extend' => '',
  844. 'py' => 'fwbz',
  845. 'pinyin' => 'fuwubaozhang',
  846. 'weigh' => 7,
  847. 'sublist' =>
  848. array (
  849. 0 =>
  850. array (
  851. 'type' => 'file',
  852. 'name' => 'shopro/goods/service/index',
  853. 'title' => '查看',
  854. 'icon' => 'fa fa-circle-o',
  855. 'url' => '',
  856. 'condition' => '',
  857. 'remark' => '',
  858. 'ismenu' => 0,
  859. 'menutype' => 'addtabs',
  860. 'extend' => '',
  861. 'py' => 'zk',
  862. 'pinyin' => 'zhakan',
  863. 'weigh' => 0,
  864. ),
  865. 1 =>
  866. array (
  867. 'type' => 'file',
  868. 'name' => 'shopro/goods/service/detail',
  869. 'title' => '详情',
  870. 'icon' => 'fa fa-circle-o',
  871. 'url' => '',
  872. 'condition' => '',
  873. 'remark' => '',
  874. 'ismenu' => 0,
  875. 'menutype' => 'addtabs',
  876. 'extend' => '',
  877. 'py' => 'xq',
  878. 'pinyin' => 'xiangqing',
  879. 'weigh' => 0,
  880. ),
  881. 2 =>
  882. array (
  883. 'type' => 'file',
  884. 'name' => 'shopro/goods/service/add',
  885. 'title' => '添加',
  886. 'icon' => 'fa fa-circle-o',
  887. 'url' => '',
  888. 'condition' => '',
  889. 'remark' => '',
  890. 'ismenu' => 0,
  891. 'menutype' => 'addtabs',
  892. 'extend' => '',
  893. 'py' => 'tj',
  894. 'pinyin' => 'tianjia',
  895. 'weigh' => 0,
  896. ),
  897. 3 =>
  898. array (
  899. 'type' => 'file',
  900. 'name' => 'shopro/goods/service/edit',
  901. 'title' => '编辑',
  902. 'icon' => 'fa fa-circle-o',
  903. 'url' => '',
  904. 'condition' => '',
  905. 'remark' => '',
  906. 'ismenu' => 0,
  907. 'menutype' => 'addtabs',
  908. 'extend' => '',
  909. 'py' => 'bj',
  910. 'pinyin' => 'bianji',
  911. 'weigh' => 0,
  912. ),
  913. 4 =>
  914. array (
  915. 'type' => 'file',
  916. 'name' => 'shopro/goods/service/delete',
  917. 'title' => '删除',
  918. 'icon' => 'fa fa-circle-o',
  919. 'url' => '',
  920. 'condition' => '',
  921. 'remark' => '',
  922. 'ismenu' => 0,
  923. 'menutype' => 'addtabs',
  924. 'extend' => '',
  925. 'py' => 'sc',
  926. 'pinyin' => 'shanchu',
  927. 'weigh' => 0,
  928. ),
  929. ),
  930. ),
  931. 2 =>
  932. array (
  933. 'type' => 'file',
  934. 'name' => 'shopro/category',
  935. 'title' => '商品分类',
  936. 'icon' => 'fa fa-sitemap',
  937. 'url' => '',
  938. 'condition' => '',
  939. 'remark' => '',
  940. 'ismenu' => 1,
  941. 'menutype' => 'addtabs',
  942. 'extend' => '',
  943. 'py' => 'spfl',
  944. 'pinyin' => 'shangpinfenlei',
  945. 'weigh' => 9,
  946. 'sublist' =>
  947. array (
  948. 0 =>
  949. array (
  950. 'type' => 'file',
  951. 'name' => 'shopro/category/index',
  952. 'title' => '查看',
  953. 'icon' => 'fa fa-circle-o',
  954. 'url' => '',
  955. 'condition' => '',
  956. 'remark' => '',
  957. 'ismenu' => 0,
  958. 'menutype' => 'addtabs',
  959. 'extend' => '',
  960. 'py' => 'zk',
  961. 'pinyin' => 'zhakan',
  962. 'weigh' => 0,
  963. ),
  964. 1 =>
  965. array (
  966. 'type' => 'file',
  967. 'name' => 'shopro/category/detail',
  968. 'title' => '详情',
  969. 'icon' => 'fa fa-circle-o',
  970. 'url' => '',
  971. 'condition' => '',
  972. 'remark' => '',
  973. 'ismenu' => 0,
  974. 'menutype' => 'addtabs',
  975. 'extend' => '',
  976. 'py' => 'xq',
  977. 'pinyin' => 'xiangqing',
  978. 'weigh' => 0,
  979. ),
  980. 2 =>
  981. array (
  982. 'type' => 'file',
  983. 'name' => 'shopro/category/add',
  984. 'title' => '添加',
  985. 'icon' => 'fa fa-circle-o',
  986. 'url' => '',
  987. 'condition' => '',
  988. 'remark' => '',
  989. 'ismenu' => 0,
  990. 'menutype' => 'addtabs',
  991. 'extend' => '',
  992. 'py' => 'tj',
  993. 'pinyin' => 'tianjia',
  994. 'weigh' => 0,
  995. ),
  996. 3 =>
  997. array (
  998. 'type' => 'file',
  999. 'name' => 'shopro/category/edit',
  1000. 'title' => '编辑',
  1001. 'icon' => 'fa fa-circle-o',
  1002. 'url' => '',
  1003. 'condition' => '',
  1004. 'remark' => '',
  1005. 'ismenu' => 0,
  1006. 'menutype' => 'addtabs',
  1007. 'extend' => '',
  1008. 'py' => 'bj',
  1009. 'pinyin' => 'bianji',
  1010. 'weigh' => 0,
  1011. ),
  1012. 4 =>
  1013. array (
  1014. 'type' => 'file',
  1015. 'name' => 'shopro/category/delete',
  1016. 'title' => '删除',
  1017. 'icon' => 'fa fa-circle-o',
  1018. 'url' => '',
  1019. 'condition' => '',
  1020. 'remark' => '',
  1021. 'ismenu' => 0,
  1022. 'menutype' => 'addtabs',
  1023. 'extend' => '',
  1024. 'py' => 'sc',
  1025. 'pinyin' => 'shanchu',
  1026. 'weigh' => 0,
  1027. ),
  1028. ),
  1029. ),
  1030. 3 =>
  1031. array (
  1032. 'type' => 'file',
  1033. 'name' => 'shopro/goods/comment',
  1034. 'title' => '评价管理',
  1035. 'icon' => 'fa fa-pencil-square',
  1036. 'url' => '',
  1037. 'condition' => '',
  1038. 'remark' => '',
  1039. 'ismenu' => 1,
  1040. 'menutype' => 'addtabs',
  1041. 'extend' => '',
  1042. 'py' => 'pjgl',
  1043. 'pinyin' => 'pingjiaguanli',
  1044. 'weigh' => 8,
  1045. 'sublist' =>
  1046. array (
  1047. 0 =>
  1048. array (
  1049. 'type' => 'file',
  1050. 'name' => 'shopro/goods/comment/index',
  1051. 'title' => '查看',
  1052. 'icon' => 'fa fa-circle-o',
  1053. 'url' => '',
  1054. 'condition' => '',
  1055. 'remark' => '',
  1056. 'ismenu' => 0,
  1057. 'menutype' => 'addtabs',
  1058. 'extend' => '',
  1059. 'py' => 'zk',
  1060. 'pinyin' => 'zhakan',
  1061. 'weigh' => 0,
  1062. ),
  1063. 1 =>
  1064. array (
  1065. 'type' => 'file',
  1066. 'name' => 'shopro/goods/comment/detail',
  1067. 'title' => '详情',
  1068. 'icon' => 'fa fa-circle-o',
  1069. 'url' => '',
  1070. 'condition' => '',
  1071. 'remark' => '',
  1072. 'ismenu' => 0,
  1073. 'menutype' => 'addtabs',
  1074. 'extend' => '',
  1075. 'py' => 'xq',
  1076. 'pinyin' => 'xiangqing',
  1077. 'weigh' => 0,
  1078. ),
  1079. 2 =>
  1080. array (
  1081. 'type' => 'file',
  1082. 'name' => 'shopro/goods/comment/add',
  1083. 'title' => '添加',
  1084. 'icon' => 'fa fa-circle-o',
  1085. 'url' => '',
  1086. 'condition' => '',
  1087. 'remark' => '',
  1088. 'ismenu' => 0,
  1089. 'menutype' => 'addtabs',
  1090. 'extend' => '',
  1091. 'py' => 'tj',
  1092. 'pinyin' => 'tianjia',
  1093. 'weigh' => 0,
  1094. ),
  1095. 3 =>
  1096. array (
  1097. 'type' => 'file',
  1098. 'name' => 'shopro/goods/comment/edit',
  1099. 'title' => '编辑',
  1100. 'icon' => 'fa fa-circle-o',
  1101. 'url' => '',
  1102. 'condition' => '',
  1103. 'remark' => '',
  1104. 'ismenu' => 0,
  1105. 'menutype' => 'addtabs',
  1106. 'extend' => '',
  1107. 'py' => 'bj',
  1108. 'pinyin' => 'bianji',
  1109. 'weigh' => 0,
  1110. ),
  1111. 4 =>
  1112. array (
  1113. 'type' => 'file',
  1114. 'name' => 'shopro/goods/comment/delete',
  1115. 'title' => '删除',
  1116. 'icon' => 'fa fa-circle-o',
  1117. 'url' => '',
  1118. 'condition' => '',
  1119. 'remark' => '',
  1120. 'ismenu' => 0,
  1121. 'menutype' => 'addtabs',
  1122. 'extend' => '',
  1123. 'py' => 'sc',
  1124. 'pinyin' => 'shanchu',
  1125. 'weigh' => 0,
  1126. ),
  1127. 5 =>
  1128. array (
  1129. 'type' => 'file',
  1130. 'name' => 'shopro/goods/comment/recyclebin',
  1131. 'title' => '回收站',
  1132. 'icon' => 'fa fa-circle-o',
  1133. 'url' => '',
  1134. 'condition' => '',
  1135. 'remark' => '',
  1136. 'ismenu' => 0,
  1137. 'menutype' => 'addtabs',
  1138. 'extend' => '',
  1139. 'py' => 'hsz',
  1140. 'pinyin' => 'huishouzhan',
  1141. 'weigh' => 0,
  1142. ),
  1143. 6 =>
  1144. array (
  1145. 'type' => 'file',
  1146. 'name' => 'shopro/goods/comment/restore',
  1147. 'title' => '还原',
  1148. 'icon' => 'fa fa-circle-o',
  1149. 'url' => '',
  1150. 'condition' => '',
  1151. 'remark' => '',
  1152. 'ismenu' => 0,
  1153. 'menutype' => 'addtabs',
  1154. 'extend' => '',
  1155. 'py' => 'hy',
  1156. 'pinyin' => 'huanyuan',
  1157. 'weigh' => 0,
  1158. ),
  1159. 7 =>
  1160. array (
  1161. 'type' => 'file',
  1162. 'name' => 'shopro/goods/comment/destroy',
  1163. 'title' => '销毁',
  1164. 'icon' => 'fa fa-circle-o',
  1165. 'url' => '',
  1166. 'condition' => '',
  1167. 'remark' => '',
  1168. 'ismenu' => 0,
  1169. 'menutype' => 'addtabs',
  1170. 'extend' => '',
  1171. 'py' => 'xh',
  1172. 'pinyin' => 'xiaohui',
  1173. 'weigh' => 0,
  1174. ),
  1175. 8 =>
  1176. array (
  1177. 'type' => 'file',
  1178. 'name' => 'shopro/goods/comment/reply',
  1179. 'title' => '回复',
  1180. 'icon' => 'fa fa-circle-o',
  1181. 'url' => '',
  1182. 'condition' => '',
  1183. 'remark' => '',
  1184. 'ismenu' => 0,
  1185. 'menutype' => 'addtabs',
  1186. 'extend' => '',
  1187. 'py' => 'hf',
  1188. 'pinyin' => 'huifu',
  1189. 'weigh' => 0,
  1190. ),
  1191. ),
  1192. ),
  1193. 4 =>
  1194. array (
  1195. 'type' => 'file',
  1196. 'name' => 'shopro/goods/stock_warning',
  1197. 'title' => '库存预警',
  1198. 'icon' => 'fa fa-warning',
  1199. 'url' => '',
  1200. 'condition' => '',
  1201. 'remark' => '',
  1202. 'ismenu' => 1,
  1203. 'menutype' => 'addtabs',
  1204. 'extend' => '',
  1205. 'py' => 'kcyj',
  1206. 'pinyin' => 'kucunyujing',
  1207. 'weigh' => 6,
  1208. 'sublist' =>
  1209. array (
  1210. 0 =>
  1211. array (
  1212. 'type' => 'file',
  1213. 'name' => 'shopro/goods/stock_warning/index',
  1214. 'title' => '查看',
  1215. 'icon' => 'fa fa-circle-o',
  1216. 'url' => '',
  1217. 'condition' => '',
  1218. 'remark' => '',
  1219. 'ismenu' => 0,
  1220. 'menutype' => 'addtabs',
  1221. 'extend' => '',
  1222. 'py' => 'zk',
  1223. 'pinyin' => 'zhakan',
  1224. 'weigh' => 0,
  1225. ),
  1226. 1 =>
  1227. array (
  1228. 'type' => 'file',
  1229. 'name' => 'shopro/goods/stock_warning/recyclebin',
  1230. 'title' => '历史记录',
  1231. 'icon' => 'fa fa-circle-o',
  1232. 'url' => '',
  1233. 'condition' => '',
  1234. 'remark' => '',
  1235. 'ismenu' => 0,
  1236. 'menutype' => 'addtabs',
  1237. 'extend' => '',
  1238. 'py' => 'lsjl',
  1239. 'pinyin' => 'lishijilu',
  1240. 'weigh' => 0,
  1241. ),
  1242. 2 =>
  1243. array (
  1244. 'type' => 'file',
  1245. 'name' => 'shopro/goods/stock_warning/addstock',
  1246. 'title' => '补货',
  1247. 'icon' => 'fa fa-circle-o',
  1248. 'url' => '',
  1249. 'condition' => '',
  1250. 'remark' => '',
  1251. 'ismenu' => 0,
  1252. 'menutype' => 'addtabs',
  1253. 'extend' => '',
  1254. 'py' => 'bh',
  1255. 'pinyin' => 'buhuo',
  1256. 'weigh' => 0,
  1257. ),
  1258. ),
  1259. ),
  1260. 5 =>
  1261. array (
  1262. 'type' => 'file',
  1263. 'name' => 'shopro/goods/stock_log',
  1264. 'title' => '补货记录',
  1265. 'icon' => 'fa fa-sticky-note-o',
  1266. 'url' => '',
  1267. 'condition' => '',
  1268. 'remark' => '',
  1269. 'ismenu' => 1,
  1270. 'menutype' => 'addtabs',
  1271. 'extend' => '',
  1272. 'py' => 'bhjl',
  1273. 'pinyin' => 'buhuojilu',
  1274. 'weigh' => 5,
  1275. 'sublist' =>
  1276. array (
  1277. 0 =>
  1278. array (
  1279. 'type' => 'file',
  1280. 'name' => 'shopro/goods/stock_log/index',
  1281. 'title' => '查看',
  1282. 'icon' => 'fa fa-circle-o',
  1283. 'url' => '',
  1284. 'condition' => '',
  1285. 'remark' => '',
  1286. 'ismenu' => 0,
  1287. 'menutype' => 'addtabs',
  1288. 'extend' => '',
  1289. 'py' => 'zk',
  1290. 'pinyin' => 'zhakan',
  1291. 'weigh' => 0,
  1292. ),
  1293. ),
  1294. ),
  1295. ),
  1296. ),
  1297. 2 =>
  1298. array (
  1299. 'type' => 'file',
  1300. 'name' => 'shopro/activity/activity',
  1301. 'title' => '应用中心',
  1302. 'icon' => 'fa fa-star',
  1303. 'url' => '',
  1304. 'condition' => '',
  1305. 'remark' => '',
  1306. 'ismenu' => 1,
  1307. 'menutype' => 'addtabs',
  1308. 'extend' => '',
  1309. 'py' => 'yyzx',
  1310. 'pinyin' => 'yingyongzhongxin',
  1311. 'weigh' => 100,
  1312. 'sublist' =>
  1313. array (
  1314. 0 =>
  1315. array (
  1316. 'type' => 'file',
  1317. 'name' => 'shopro/activity/activity/index',
  1318. 'title' => '查看',
  1319. 'icon' => 'fa fa-circle-o',
  1320. 'url' => '',
  1321. 'condition' => '',
  1322. 'remark' => '',
  1323. 'ismenu' => 0,
  1324. 'menutype' => 'addtabs',
  1325. 'extend' => '',
  1326. 'py' => 'zk',
  1327. 'pinyin' => 'zhakan',
  1328. 'weigh' => 20,
  1329. ),
  1330. 1 =>
  1331. array (
  1332. 'type' => 'file',
  1333. 'name' => 'shopro/activity/activity/detail',
  1334. 'title' => '详情',
  1335. 'icon' => 'fa fa-circle-o',
  1336. 'url' => '',
  1337. 'condition' => '',
  1338. 'remark' => '',
  1339. 'ismenu' => 0,
  1340. 'menutype' => 'addtabs',
  1341. 'extend' => '',
  1342. 'py' => 'xq',
  1343. 'pinyin' => 'xiangqing',
  1344. 'weigh' => 19,
  1345. ),
  1346. 2 =>
  1347. array (
  1348. 'type' => 'file',
  1349. 'name' => 'shopro/activity/activity/add',
  1350. 'title' => '添加',
  1351. 'icon' => 'fa fa-circle-o',
  1352. 'url' => '',
  1353. 'condition' => '',
  1354. 'remark' => '',
  1355. 'ismenu' => 0,
  1356. 'menutype' => 'addtabs',
  1357. 'extend' => '',
  1358. 'py' => 'tj',
  1359. 'pinyin' => 'tianjia',
  1360. 'weigh' => 18,
  1361. ),
  1362. 3 =>
  1363. array (
  1364. 'type' => 'file',
  1365. 'name' => 'shopro/activity/activity/edit',
  1366. 'title' => '编辑',
  1367. 'icon' => 'fa fa-circle-o',
  1368. 'url' => '',
  1369. 'condition' => '',
  1370. 'remark' => '',
  1371. 'ismenu' => 0,
  1372. 'menutype' => 'addtabs',
  1373. 'extend' => '',
  1374. 'py' => 'bj',
  1375. 'pinyin' => 'bianji',
  1376. 'weigh' => 17,
  1377. ),
  1378. 4 =>
  1379. array (
  1380. 'type' => 'file',
  1381. 'name' => 'shopro/activity/activity/delete',
  1382. 'title' => '删除',
  1383. 'icon' => 'fa fa-circle-o',
  1384. 'url' => '',
  1385. 'condition' => '',
  1386. 'remark' => '',
  1387. 'ismenu' => 0,
  1388. 'menutype' => 'addtabs',
  1389. 'extend' => '',
  1390. 'py' => 'sc',
  1391. 'pinyin' => 'shanchu',
  1392. 'weigh' => 16,
  1393. ),
  1394. 5 =>
  1395. array (
  1396. 'type' => 'file',
  1397. 'name' => 'shopro/coupon',
  1398. 'title' => '优惠券',
  1399. 'icon' => 'fa fa-circle-o',
  1400. 'url' => '',
  1401. 'condition' => '',
  1402. 'remark' => '',
  1403. 'ismenu' => 0,
  1404. 'menutype' => 'addtabs',
  1405. 'extend' => '',
  1406. 'py' => 'yhq',
  1407. 'pinyin' => 'youhuiquan',
  1408. 'weigh' => 0,
  1409. 'sublist' =>
  1410. array (
  1411. 0 =>
  1412. array (
  1413. 'type' => 'file',
  1414. 'name' => 'shopro/coupon/index',
  1415. 'title' => '查看',
  1416. 'icon' => 'fa fa-circle-o',
  1417. 'url' => '',
  1418. 'condition' => '',
  1419. 'remark' => '',
  1420. 'ismenu' => 0,
  1421. 'menutype' => 'addtabs',
  1422. 'extend' => '',
  1423. 'py' => 'zk',
  1424. 'pinyin' => 'zhakan',
  1425. 'weigh' => 0,
  1426. ),
  1427. 1 =>
  1428. array (
  1429. 'type' => 'file',
  1430. 'name' => 'shopro/coupon/detail',
  1431. 'title' => '详情',
  1432. 'icon' => 'fa fa-circle-o',
  1433. 'url' => '',
  1434. 'condition' => '',
  1435. 'remark' => '',
  1436. 'ismenu' => 0,
  1437. 'menutype' => 'addtabs',
  1438. 'extend' => '',
  1439. 'py' => 'xq',
  1440. 'pinyin' => 'xiangqing',
  1441. 'weigh' => 0,
  1442. ),
  1443. 2 =>
  1444. array (
  1445. 'type' => 'file',
  1446. 'name' => 'shopro/coupon/add',
  1447. 'title' => '添加',
  1448. 'icon' => 'fa fa-circle-o',
  1449. 'url' => '',
  1450. 'condition' => '',
  1451. 'remark' => '',
  1452. 'ismenu' => 0,
  1453. 'menutype' => 'addtabs',
  1454. 'extend' => '',
  1455. 'py' => 'tj',
  1456. 'pinyin' => 'tianjia',
  1457. 'weigh' => 0,
  1458. ),
  1459. 3 =>
  1460. array (
  1461. 'type' => 'file',
  1462. 'name' => 'shopro/coupon/edit',
  1463. 'title' => '编辑',
  1464. 'icon' => 'fa fa-circle-o',
  1465. 'url' => '',
  1466. 'condition' => '',
  1467. 'remark' => '',
  1468. 'ismenu' => 0,
  1469. 'menutype' => 'addtabs',
  1470. 'extend' => '',
  1471. 'py' => 'bj',
  1472. 'pinyin' => 'bianji',
  1473. 'weigh' => 0,
  1474. ),
  1475. 4 =>
  1476. array (
  1477. 'type' => 'file',
  1478. 'name' => 'shopro/coupon/delete',
  1479. 'title' => '删除',
  1480. 'icon' => 'fa fa-circle-o',
  1481. 'url' => '',
  1482. 'condition' => '',
  1483. 'remark' => '',
  1484. 'ismenu' => 0,
  1485. 'menutype' => 'addtabs',
  1486. 'extend' => '',
  1487. 'py' => 'sc',
  1488. 'pinyin' => 'shanchu',
  1489. 'weigh' => 0,
  1490. ),
  1491. 5 =>
  1492. array (
  1493. 'type' => 'file',
  1494. 'name' => 'shopro/coupon/recyclebin',
  1495. 'title' => '回收站',
  1496. 'icon' => 'fa fa-circle-o',
  1497. 'url' => '',
  1498. 'condition' => '',
  1499. 'remark' => '',
  1500. 'ismenu' => 0,
  1501. 'menutype' => 'addtabs',
  1502. 'extend' => '',
  1503. 'py' => 'hsz',
  1504. 'pinyin' => 'huishouzhan',
  1505. 'weigh' => 0,
  1506. ),
  1507. 6 =>
  1508. array (
  1509. 'type' => 'file',
  1510. 'name' => 'shopro/coupon/restore',
  1511. 'title' => '还原',
  1512. 'icon' => 'fa fa-circle-o',
  1513. 'url' => '',
  1514. 'condition' => '',
  1515. 'remark' => '',
  1516. 'ismenu' => 0,
  1517. 'menutype' => 'addtabs',
  1518. 'extend' => '',
  1519. 'py' => 'hy',
  1520. 'pinyin' => 'huanyuan',
  1521. 'weigh' => 0,
  1522. ),
  1523. 7 =>
  1524. array (
  1525. 'type' => 'file',
  1526. 'name' => 'shopro/coupon/destroy',
  1527. 'title' => '销毁',
  1528. 'icon' => 'fa fa-circle-o',
  1529. 'url' => '',
  1530. 'condition' => '',
  1531. 'remark' => '',
  1532. 'ismenu' => 0,
  1533. 'menutype' => 'addtabs',
  1534. 'extend' => '',
  1535. 'py' => 'xh',
  1536. 'pinyin' => 'xiaohui',
  1537. 'weigh' => 0,
  1538. ),
  1539. 8 =>
  1540. array (
  1541. 'type' => 'file',
  1542. 'name' => 'shopro/user/coupon/index',
  1543. 'title' => '领取记录',
  1544. 'icon' => 'fa fa-circle-o',
  1545. 'url' => '',
  1546. 'condition' => '',
  1547. 'remark' => '',
  1548. 'ismenu' => 0,
  1549. 'menutype' => 'addtabs',
  1550. 'extend' => '',
  1551. 'py' => 'lqjl',
  1552. 'pinyin' => 'lingqujilu',
  1553. 'weigh' => 0,
  1554. ),
  1555. 9 =>
  1556. array (
  1557. 'type' => 'file',
  1558. 'name' => 'shopro/coupon/send',
  1559. 'title' => '手动发放',
  1560. 'icon' => 'fa fa-circle-o',
  1561. 'url' => '',
  1562. 'condition' => '',
  1563. 'remark' => '',
  1564. 'ismenu' => 0,
  1565. 'menutype' => 'addtabs',
  1566. 'extend' => '',
  1567. 'py' => 'sdff',
  1568. 'pinyin' => 'shoudongfafang',
  1569. 'weigh' => 0,
  1570. ),
  1571. ),
  1572. ),
  1573. 6 =>
  1574. array (
  1575. 'type' => 'file',
  1576. 'name' => 'shopro/app/score_shop',
  1577. 'title' => '积分商城',
  1578. 'icon' => 'fa fa-circle-o',
  1579. 'url' => '',
  1580. 'condition' => '',
  1581. 'remark' => '',
  1582. 'ismenu' => 0,
  1583. 'menutype' => 'addtabs',
  1584. 'extend' => '',
  1585. 'py' => 'jfsc',
  1586. 'pinyin' => 'jifenshangcheng',
  1587. 'weigh' => 0,
  1588. 'sublist' =>
  1589. array (
  1590. 0 =>
  1591. array (
  1592. 'type' => 'file',
  1593. 'name' => 'shopro/app/score_shop/index',
  1594. 'title' => '查看',
  1595. 'icon' => 'fa fa-circle-o',
  1596. 'url' => '',
  1597. 'condition' => '',
  1598. 'remark' => '',
  1599. 'ismenu' => 0,
  1600. 'menutype' => 'addtabs',
  1601. 'extend' => '',
  1602. 'py' => 'zk',
  1603. 'pinyin' => 'zhakan',
  1604. 'weigh' => 0,
  1605. ),
  1606. 1 =>
  1607. array (
  1608. 'type' => 'file',
  1609. 'name' => 'shopro/app/score_shop/add',
  1610. 'title' => '添加',
  1611. 'icon' => 'fa fa-circle-o',
  1612. 'url' => '',
  1613. 'condition' => '',
  1614. 'remark' => '',
  1615. 'ismenu' => 0,
  1616. 'menutype' => 'addtabs',
  1617. 'extend' => '',
  1618. 'py' => 'tj',
  1619. 'pinyin' => 'tianjia',
  1620. 'weigh' => 0,
  1621. ),
  1622. 2 =>
  1623. array (
  1624. 'type' => 'file',
  1625. 'name' => 'shopro/app/score_shop/edit',
  1626. 'title' => '编辑',
  1627. 'icon' => 'fa fa-circle-o',
  1628. 'url' => '',
  1629. 'condition' => '',
  1630. 'remark' => '',
  1631. 'ismenu' => 0,
  1632. 'menutype' => 'addtabs',
  1633. 'extend' => '',
  1634. 'py' => 'bj',
  1635. 'pinyin' => 'bianji',
  1636. 'weigh' => 0,
  1637. ),
  1638. 3 =>
  1639. array (
  1640. 'type' => 'file',
  1641. 'name' => 'shopro/app/score_shop/delete',
  1642. 'title' => '删除',
  1643. 'icon' => 'fa fa-circle-o',
  1644. 'url' => '',
  1645. 'condition' => '',
  1646. 'remark' => '',
  1647. 'ismenu' => 0,
  1648. 'menutype' => 'addtabs',
  1649. 'extend' => '',
  1650. 'py' => 'sc',
  1651. 'pinyin' => 'shanchu',
  1652. 'weigh' => 0,
  1653. ),
  1654. 4 =>
  1655. array (
  1656. 'type' => 'file',
  1657. 'name' => 'shopro/app/score_shop/recyclebin',
  1658. 'title' => '回收站',
  1659. 'icon' => 'fa fa-circle-o',
  1660. 'url' => '',
  1661. 'condition' => '',
  1662. 'remark' => '',
  1663. 'ismenu' => 0,
  1664. 'menutype' => 'addtabs',
  1665. 'extend' => '',
  1666. 'py' => 'hsz',
  1667. 'pinyin' => 'huishouzhan',
  1668. 'weigh' => 0,
  1669. ),
  1670. 5 =>
  1671. array (
  1672. 'type' => 'file',
  1673. 'name' => 'shopro/app/score_shop/restore',
  1674. 'title' => '还原',
  1675. 'icon' => 'fa fa-circle-o',
  1676. 'url' => '',
  1677. 'condition' => '',
  1678. 'remark' => '',
  1679. 'ismenu' => 0,
  1680. 'menutype' => 'addtabs',
  1681. 'extend' => '',
  1682. 'py' => 'hy',
  1683. 'pinyin' => 'huanyuan',
  1684. 'weigh' => 0,
  1685. ),
  1686. 6 =>
  1687. array (
  1688. 'type' => 'file',
  1689. 'name' => 'shopro/app/score_shop/destroy',
  1690. 'title' => '销毁',
  1691. 'icon' => 'fa fa-circle-o',
  1692. 'url' => '',
  1693. 'condition' => '',
  1694. 'remark' => '',
  1695. 'ismenu' => 0,
  1696. 'menutype' => 'addtabs',
  1697. 'extend' => '',
  1698. 'py' => 'xh',
  1699. 'pinyin' => 'xiaohui',
  1700. 'weigh' => 0,
  1701. ),
  1702. ),
  1703. ),
  1704. 7 =>
  1705. array (
  1706. 'type' => 'file',
  1707. 'name' => 'shopro/activity/activity/recyclebin',
  1708. 'title' => '回收站',
  1709. 'icon' => 'fa fa-circle-o',
  1710. 'url' => '',
  1711. 'condition' => '',
  1712. 'remark' => '',
  1713. 'ismenu' => 0,
  1714. 'menutype' => 'addtabs',
  1715. 'extend' => '',
  1716. 'py' => 'hsz',
  1717. 'pinyin' => 'huishouzhan',
  1718. 'weigh' => 15,
  1719. ),
  1720. 8 =>
  1721. array (
  1722. 'type' => 'file',
  1723. 'name' => 'shopro/activity/groupon',
  1724. 'title' => '团管理',
  1725. 'icon' => 'fa fa-circle-o',
  1726. 'url' => '',
  1727. 'condition' => '',
  1728. 'remark' => '',
  1729. 'ismenu' => 0,
  1730. 'menutype' => 'addtabs',
  1731. 'extend' => '',
  1732. 'py' => 'tgl',
  1733. 'pinyin' => 'tuanguanli',
  1734. 'weigh' => 0,
  1735. 'sublist' =>
  1736. array (
  1737. 0 =>
  1738. array (
  1739. 'type' => 'file',
  1740. 'name' => 'shopro/activity/groupon/index',
  1741. 'title' => '查看',
  1742. 'icon' => 'fa fa-circle-o',
  1743. 'url' => '',
  1744. 'condition' => '',
  1745. 'remark' => '',
  1746. 'ismenu' => 0,
  1747. 'menutype' => 'addtabs',
  1748. 'extend' => '',
  1749. 'py' => 'zk',
  1750. 'pinyin' => 'zhakan',
  1751. 'weigh' => 0,
  1752. ),
  1753. 1 =>
  1754. array (
  1755. 'type' => 'file',
  1756. 'name' => 'shopro/activity/groupon/detail',
  1757. 'title' => '详情',
  1758. 'icon' => 'fa fa-circle-o',
  1759. 'url' => '',
  1760. 'condition' => '',
  1761. 'remark' => '',
  1762. 'ismenu' => 0,
  1763. 'menutype' => 'addtabs',
  1764. 'extend' => '',
  1765. 'py' => 'xq',
  1766. 'pinyin' => 'xiangqing',
  1767. 'weigh' => 0,
  1768. ),
  1769. 2 =>
  1770. array (
  1771. 'type' => 'file',
  1772. 'name' => 'shopro/activity/groupon/adduser',
  1773. 'title' => '添加虚拟人',
  1774. 'icon' => 'fa fa-circle-o',
  1775. 'url' => '',
  1776. 'condition' => '',
  1777. 'remark' => '',
  1778. 'ismenu' => 0,
  1779. 'menutype' => 'addtabs',
  1780. 'extend' => '',
  1781. 'py' => 'tjxnr',
  1782. 'pinyin' => 'tianjiaxuniren',
  1783. 'weigh' => 0,
  1784. ),
  1785. 3 =>
  1786. array (
  1787. 'type' => 'file',
  1788. 'name' => 'shopro/activity/groupon/invalid',
  1789. 'title' => '解散团',
  1790. 'icon' => 'fa fa-circle-o',
  1791. 'url' => '',
  1792. 'condition' => '',
  1793. 'remark' => '',
  1794. 'ismenu' => 0,
  1795. 'menutype' => 'addtabs',
  1796. 'extend' => '',
  1797. 'py' => 'jst',
  1798. 'pinyin' => 'jiesantuan',
  1799. 'weigh' => 0,
  1800. ),
  1801. ),
  1802. ),
  1803. 9 =>
  1804. array (
  1805. 'type' => 'file',
  1806. 'name' => 'shopro/app/mplive/index/index',
  1807. 'title' => '小程序直播',
  1808. 'icon' => 'fa fa-circle-o',
  1809. 'url' => '',
  1810. 'condition' => '',
  1811. 'remark' => '',
  1812. 'ismenu' => 0,
  1813. 'menutype' => 'addtabs',
  1814. 'extend' => '',
  1815. 'py' => 'xcxzb',
  1816. 'pinyin' => 'xiaochengxuzhibo',
  1817. 'weigh' => 0,
  1818. 'sublist' =>
  1819. array (
  1820. 0 =>
  1821. array (
  1822. 'type' => 'file',
  1823. 'name' => 'shopro/app/mplive/room',
  1824. 'title' => '直播间管理',
  1825. 'icon' => 'fa fa-circle-o',
  1826. 'url' => '',
  1827. 'condition' => '',
  1828. 'remark' => '',
  1829. 'ismenu' => 0,
  1830. 'menutype' => 'addtabs',
  1831. 'extend' => '',
  1832. 'py' => 'zbjgl',
  1833. 'pinyin' => 'zhibojianguanli',
  1834. 'weigh' => 0,
  1835. 'sublist' =>
  1836. array (
  1837. 0 =>
  1838. array (
  1839. 'type' => 'file',
  1840. 'name' => 'shopro/app/mplive/room/index',
  1841. 'title' => '查看',
  1842. 'icon' => 'fa fa-circle-o',
  1843. 'url' => '',
  1844. 'condition' => '',
  1845. 'remark' => '',
  1846. 'ismenu' => 0,
  1847. 'menutype' => 'addtabs',
  1848. 'extend' => '',
  1849. 'py' => 'zk',
  1850. 'pinyin' => 'zhakan',
  1851. 'weigh' => 20,
  1852. ),
  1853. 1 =>
  1854. array (
  1855. 'type' => 'file',
  1856. 'name' => 'shopro/app/mplive/room/pushurl',
  1857. 'title' => '推流地址',
  1858. 'icon' => 'fa fa-circle-o',
  1859. 'url' => '',
  1860. 'condition' => '',
  1861. 'remark' => '',
  1862. 'ismenu' => 0,
  1863. 'menutype' => 'addtabs',
  1864. 'extend' => '',
  1865. 'py' => 'tldz',
  1866. 'pinyin' => 'tuiliudizhi',
  1867. 'weigh' => 0,
  1868. ),
  1869. 2 =>
  1870. array (
  1871. 'type' => 'file',
  1872. 'name' => 'shopro/app/mplive/room/add',
  1873. 'title' => '添加',
  1874. 'icon' => 'fa fa-circle-o',
  1875. 'url' => '',
  1876. 'condition' => '',
  1877. 'remark' => '',
  1878. 'ismenu' => 0,
  1879. 'menutype' => 'addtabs',
  1880. 'extend' => '',
  1881. 'py' => 'tj',
  1882. 'pinyin' => 'tianjia',
  1883. 'weigh' => 18,
  1884. ),
  1885. 3 =>
  1886. array (
  1887. 'type' => 'file',
  1888. 'name' => 'shopro/app/mplive/room/edit',
  1889. 'title' => '编辑',
  1890. 'icon' => 'fa fa-circle-o',
  1891. 'url' => '',
  1892. 'condition' => '',
  1893. 'remark' => '',
  1894. 'ismenu' => 0,
  1895. 'menutype' => 'addtabs',
  1896. 'extend' => '',
  1897. 'py' => 'bj',
  1898. 'pinyin' => 'bianji',
  1899. 'weigh' => 17,
  1900. ),
  1901. 4 =>
  1902. array (
  1903. 'type' => 'file',
  1904. 'name' => 'shopro/app/mplive/room/delete',
  1905. 'title' => '删除',
  1906. 'icon' => 'fa fa-circle-o',
  1907. 'url' => '',
  1908. 'condition' => '',
  1909. 'remark' => '',
  1910. 'ismenu' => 0,
  1911. 'menutype' => 'addtabs',
  1912. 'extend' => '',
  1913. 'py' => 'sc',
  1914. 'pinyin' => 'shanchu',
  1915. 'weigh' => 16,
  1916. ),
  1917. 5 =>
  1918. array (
  1919. 'type' => 'file',
  1920. 'name' => 'shopro/app/mplive/room/sync',
  1921. 'title' => '同步直播间',
  1922. 'icon' => 'fa fa-circle-o',
  1923. 'url' => '',
  1924. 'condition' => '',
  1925. 'remark' => '',
  1926. 'ismenu' => 0,
  1927. 'menutype' => 'addtabs',
  1928. 'extend' => '',
  1929. 'py' => 'tbzbj',
  1930. 'pinyin' => 'tongbuzhibojian',
  1931. 'weigh' => 0,
  1932. ),
  1933. 6 =>
  1934. array (
  1935. 'type' => 'file',
  1936. 'name' => 'shopro/app/mplive/room/playback',
  1937. 'title' => '回放',
  1938. 'icon' => 'fa fa-circle-o',
  1939. 'url' => '',
  1940. 'condition' => '',
  1941. 'remark' => '',
  1942. 'ismenu' => 0,
  1943. 'menutype' => 'addtabs',
  1944. 'extend' => '',
  1945. 'py' => 'hf',
  1946. 'pinyin' => 'huifang',
  1947. 'weigh' => 0,
  1948. ),
  1949. 7 =>
  1950. array (
  1951. 'type' => 'file',
  1952. 'name' => 'shopro/app/mplive/room/qrcode',
  1953. 'title' => '分享二维码',
  1954. 'icon' => 'fa fa-circle-o',
  1955. 'url' => '',
  1956. 'condition' => '',
  1957. 'remark' => '',
  1958. 'ismenu' => 0,
  1959. 'menutype' => 'addtabs',
  1960. 'extend' => '',
  1961. 'py' => 'fxewm',
  1962. 'pinyin' => 'fenxiangerweima',
  1963. 'weigh' => 0,
  1964. ),
  1965. 8 =>
  1966. array (
  1967. 'type' => 'file',
  1968. 'name' => 'shopro/app/mplive/room/detail',
  1969. 'title' => '详情',
  1970. 'icon' => 'fa fa-circle-o',
  1971. 'url' => '',
  1972. 'condition' => '',
  1973. 'remark' => '',
  1974. 'ismenu' => 0,
  1975. 'menutype' => 'addtabs',
  1976. 'extend' => '',
  1977. 'py' => 'xq',
  1978. 'pinyin' => 'xiangqing',
  1979. 'weigh' => 19,
  1980. ),
  1981. ),
  1982. ),
  1983. 1 =>
  1984. array (
  1985. 'type' => 'file',
  1986. 'name' => 'shopro/app/mplive/goods',
  1987. 'title' => '商品库管理',
  1988. 'icon' => 'fa fa-circle-o',
  1989. 'url' => '',
  1990. 'condition' => '',
  1991. 'remark' => '',
  1992. 'ismenu' => 0,
  1993. 'menutype' => 'addtabs',
  1994. 'extend' => '',
  1995. 'py' => 'spkgl',
  1996. 'pinyin' => 'shangpinkuguanli',
  1997. 'weigh' => 0,
  1998. 'sublist' =>
  1999. array (
  2000. 0 =>
  2001. array (
  2002. 'type' => 'file',
  2003. 'name' => 'shopro/app/mplive/goods/index',
  2004. 'title' => '查看',
  2005. 'icon' => 'fa fa-circle-o',
  2006. 'url' => '',
  2007. 'condition' => '',
  2008. 'remark' => '',
  2009. 'ismenu' => 0,
  2010. 'menutype' => 'addtabs',
  2011. 'extend' => '',
  2012. 'py' => 'zk',
  2013. 'pinyin' => 'zhakan',
  2014. 'weigh' => 0,
  2015. ),
  2016. 1 =>
  2017. array (
  2018. 'type' => 'file',
  2019. 'name' => 'shopro/app/mplive/goods/add',
  2020. 'title' => '添加',
  2021. 'icon' => 'fa fa-circle-o',
  2022. 'url' => '',
  2023. 'condition' => '',
  2024. 'remark' => '',
  2025. 'ismenu' => 0,
  2026. 'menutype' => 'addtabs',
  2027. 'extend' => '',
  2028. 'py' => 'tj',
  2029. 'pinyin' => 'tianjia',
  2030. 'weigh' => 0,
  2031. ),
  2032. 2 =>
  2033. array (
  2034. 'type' => 'file',
  2035. 'name' => 'shopro/app/mplive/goods/edit',
  2036. 'title' => '编辑',
  2037. 'icon' => 'fa fa-circle-o',
  2038. 'url' => '',
  2039. 'condition' => '',
  2040. 'remark' => '',
  2041. 'ismenu' => 0,
  2042. 'menutype' => 'addtabs',
  2043. 'extend' => '',
  2044. 'py' => 'bj',
  2045. 'pinyin' => 'bianji',
  2046. 'weigh' => 0,
  2047. ),
  2048. 3 =>
  2049. array (
  2050. 'type' => 'file',
  2051. 'name' => 'shopro/app/mplive/goods/delete',
  2052. 'title' => '删除',
  2053. 'icon' => 'fa fa-circle-o',
  2054. 'url' => '',
  2055. 'condition' => '',
  2056. 'remark' => '',
  2057. 'ismenu' => 0,
  2058. 'menutype' => 'addtabs',
  2059. 'extend' => '',
  2060. 'py' => 'sc',
  2061. 'pinyin' => 'shanchu',
  2062. 'weigh' => 0,
  2063. ),
  2064. 4 =>
  2065. array (
  2066. 'type' => 'file',
  2067. 'name' => 'shopro/app/mplive/goods/audit',
  2068. 'title' => '审核',
  2069. 'icon' => 'fa fa-circle-o',
  2070. 'url' => '',
  2071. 'condition' => '',
  2072. 'remark' => '',
  2073. 'ismenu' => 0,
  2074. 'menutype' => 'addtabs',
  2075. 'extend' => '',
  2076. 'py' => 'sh',
  2077. 'pinyin' => 'shenhe',
  2078. 'weigh' => 0,
  2079. ),
  2080. ),
  2081. ),
  2082. ),
  2083. ),
  2084. ),
  2085. ),
  2086. 3 =>
  2087. array (
  2088. 'type' => 'file',
  2089. 'name' => 'shopro/order',
  2090. 'title' => '订单中心',
  2091. 'icon' => 'fa fa-file',
  2092. 'url' => '',
  2093. 'condition' => '',
  2094. 'remark' => '',
  2095. 'ismenu' => 1,
  2096. 'menutype' => 'addtabs',
  2097. 'extend' => '',
  2098. 'py' => 'ddzx',
  2099. 'pinyin' => 'dingdanzhongxin',
  2100. 'weigh' => 120,
  2101. 'sublist' =>
  2102. array (
  2103. 0 =>
  2104. array (
  2105. 'type' => 'file',
  2106. 'name' => 'shopro/order/order',
  2107. 'title' => '订单管理',
  2108. 'icon' => 'fa fa-file-text',
  2109. 'url' => '',
  2110. 'condition' => '',
  2111. 'remark' => '',
  2112. 'ismenu' => 1,
  2113. 'menutype' => 'addtabs',
  2114. 'extend' => '',
  2115. 'py' => 'ddgl',
  2116. 'pinyin' => 'dingdanguanli',
  2117. 'weigh' => 10,
  2118. 'sublist' =>
  2119. array (
  2120. 0 =>
  2121. array (
  2122. 'type' => 'file',
  2123. 'name' => 'shopro/order/order/index',
  2124. 'title' => '查看',
  2125. 'icon' => 'fa fa-circle-o',
  2126. 'url' => '',
  2127. 'condition' => '',
  2128. 'remark' => '',
  2129. 'ismenu' => 0,
  2130. 'menutype' => 'addtabs',
  2131. 'extend' => '',
  2132. 'py' => 'zk',
  2133. 'pinyin' => 'zhakan',
  2134. 'weigh' => 0,
  2135. ),
  2136. 1 =>
  2137. array (
  2138. 'type' => 'file',
  2139. 'name' => 'shopro/order/order/detail',
  2140. 'title' => '详情',
  2141. 'icon' => 'fa fa-circle-o',
  2142. 'url' => '',
  2143. 'condition' => '',
  2144. 'remark' => '',
  2145. 'ismenu' => 0,
  2146. 'menutype' => 'addtabs',
  2147. 'extend' => '',
  2148. 'py' => 'xq',
  2149. 'pinyin' => 'xiangqing',
  2150. 'weigh' => 0,
  2151. ),
  2152. 2 =>
  2153. array (
  2154. 'type' => 'file',
  2155. 'name' => 'shopro/order/order/dispatch',
  2156. 'title' => '订单发货',
  2157. 'icon' => 'fa fa-circle-o',
  2158. 'url' => '',
  2159. 'condition' => '',
  2160. 'remark' => '',
  2161. 'ismenu' => 0,
  2162. 'menutype' => 'addtabs',
  2163. 'extend' => '',
  2164. 'py' => 'ddfh',
  2165. 'pinyin' => 'dingdanfahuo',
  2166. 'weigh' => 0,
  2167. ),
  2168. 3 =>
  2169. array (
  2170. 'type' => 'file',
  2171. 'name' => 'shopro/order/order/updateexpress',
  2172. 'title' => '物流订阅',
  2173. 'icon' => 'fa fa-circle-o',
  2174. 'url' => '',
  2175. 'condition' => '',
  2176. 'remark' => '',
  2177. 'ismenu' => 0,
  2178. 'menutype' => 'addtabs',
  2179. 'extend' => '',
  2180. 'py' => 'wldy',
  2181. 'pinyin' => 'wuliudingyue',
  2182. 'weigh' => 0,
  2183. ),
  2184. 4 =>
  2185. array (
  2186. 'type' => 'file',
  2187. 'name' => 'shopro/order/order/changefee',
  2188. 'title' => '订单改价',
  2189. 'icon' => 'fa fa-circle-o',
  2190. 'url' => '',
  2191. 'condition' => '',
  2192. 'remark' => '',
  2193. 'ismenu' => 0,
  2194. 'menutype' => 'addtabs',
  2195. 'extend' => '',
  2196. 'py' => 'ddgj',
  2197. 'pinyin' => 'dingdangaijia',
  2198. 'weigh' => 0,
  2199. ),
  2200. 5 =>
  2201. array (
  2202. 'type' => 'file',
  2203. 'name' => 'shopro/order/order/editconsignee',
  2204. 'title' => '编辑收货信息',
  2205. 'icon' => 'fa fa-circle-o',
  2206. 'url' => '',
  2207. 'condition' => '',
  2208. 'remark' => '',
  2209. 'ismenu' => 0,
  2210. 'menutype' => 'addtabs',
  2211. 'extend' => '',
  2212. 'py' => 'bjshxx',
  2213. 'pinyin' => 'bianjishouhuoxinxi',
  2214. 'weigh' => 0,
  2215. ),
  2216. 6 =>
  2217. array (
  2218. 'type' => 'file',
  2219. 'name' => 'shopro/order/order/editmemo',
  2220. 'title' => '编辑备注',
  2221. 'icon' => 'fa fa-circle-o',
  2222. 'url' => '',
  2223. 'condition' => '',
  2224. 'remark' => '',
  2225. 'ismenu' => 0,
  2226. 'menutype' => 'addtabs',
  2227. 'extend' => '',
  2228. 'py' => 'bjbz',
  2229. 'pinyin' => 'bianjibeizhu',
  2230. 'weigh' => 0,
  2231. ),
  2232. 7 =>
  2233. array (
  2234. 'type' => 'file',
  2235. 'name' => 'shopro/order/order/applyrefundrefuse',
  2236. 'title' => '拒绝全额退款',
  2237. 'icon' => 'fa fa-circle-o',
  2238. 'url' => '',
  2239. 'condition' => '',
  2240. 'remark' => '',
  2241. 'ismenu' => 0,
  2242. 'menutype' => 'addtabs',
  2243. 'extend' => '',
  2244. 'py' => 'jjqetk',
  2245. 'pinyin' => 'jujuequanetuikuan',
  2246. 'weigh' => 0,
  2247. ),
  2248. 8 =>
  2249. array (
  2250. 'type' => 'file',
  2251. 'name' => 'shopro/order/order/fullrefund',
  2252. 'title' => '订单全额退款',
  2253. 'icon' => 'fa fa-circle-o',
  2254. 'url' => '',
  2255. 'condition' => '',
  2256. 'remark' => '',
  2257. 'ismenu' => 0,
  2258. 'menutype' => 'addtabs',
  2259. 'extend' => '',
  2260. 'py' => 'ddqetk',
  2261. 'pinyin' => 'dingdanquanetuikuan',
  2262. 'weigh' => 0,
  2263. ),
  2264. 9 =>
  2265. array (
  2266. 'type' => 'file',
  2267. 'name' => 'shopro/order/order/refund',
  2268. 'title' => '订单商品退款',
  2269. 'icon' => 'fa fa-circle-o',
  2270. 'url' => '',
  2271. 'condition' => '',
  2272. 'remark' => '',
  2273. 'ismenu' => 0,
  2274. 'menutype' => 'addtabs',
  2275. 'extend' => '',
  2276. 'py' => 'ddsptk',
  2277. 'pinyin' => 'dingdanshangpintuikuan',
  2278. 'weigh' => 0,
  2279. ),
  2280. 10 =>
  2281. array (
  2282. 'type' => 'file',
  2283. 'name' => 'shopro/order/order/action',
  2284. 'title' => '日志',
  2285. 'icon' => 'fa fa-circle-o',
  2286. 'url' => '',
  2287. 'condition' => '',
  2288. 'remark' => '',
  2289. 'ismenu' => 0,
  2290. 'menutype' => 'addtabs',
  2291. 'extend' => '',
  2292. 'py' => 'rz',
  2293. 'pinyin' => 'rizhi',
  2294. 'weigh' => 0,
  2295. ),
  2296. 11 =>
  2297. array (
  2298. 'type' => 'file',
  2299. 'name' => 'shopro/order/order/export',
  2300. 'title' => '导出订单',
  2301. 'icon' => 'fa fa-circle-o',
  2302. 'url' => '',
  2303. 'condition' => '',
  2304. 'remark' => '',
  2305. 'ismenu' => 0,
  2306. 'menutype' => 'addtabs',
  2307. 'extend' => '',
  2308. 'py' => 'dcdd',
  2309. 'pinyin' => 'daochudingdan',
  2310. 'weigh' => 0,
  2311. ),
  2312. 12 =>
  2313. array (
  2314. 'type' => 'file',
  2315. 'name' => 'shopro/order/order/exportdelivery',
  2316. 'title' => '导出发货单',
  2317. 'icon' => 'fa fa-circle-o',
  2318. 'url' => '',
  2319. 'condition' => '',
  2320. 'remark' => '',
  2321. 'ismenu' => 0,
  2322. 'menutype' => 'addtabs',
  2323. 'extend' => '',
  2324. 'py' => 'dcfhd',
  2325. 'pinyin' => 'daochufahuodan',
  2326. 'weigh' => 0,
  2327. ),
  2328. 13 =>
  2329. array (
  2330. 'type' => 'file',
  2331. 'name' => 'shopro/order/order/batchdispatch',
  2332. 'title' => '批量发货',
  2333. 'icon' => 'fa fa-circle-o',
  2334. 'url' => '',
  2335. 'condition' => '',
  2336. 'remark' => '',
  2337. 'ismenu' => 0,
  2338. 'menutype' => 'addtabs',
  2339. 'extend' => '',
  2340. 'py' => 'plfh',
  2341. 'pinyin' => 'piliangfahuo',
  2342. 'weigh' => 0,
  2343. ),
  2344. 14 =>
  2345. array (
  2346. 'type' => 'file',
  2347. 'name' => 'shopro/order/order/offlinerefuse',
  2348. 'title' => '货到付款拒收',
  2349. 'icon' => 'fa fa-circle-o',
  2350. 'url' => '',
  2351. 'condition' => '',
  2352. 'remark' => '',
  2353. 'ismenu' => 0,
  2354. 'menutype' => 'addtabs',
  2355. 'extend' => '',
  2356. 'py' => 'hdfkjs',
  2357. 'pinyin' => 'huodaofukuanjushou',
  2358. 'weigh' => 0,
  2359. ),
  2360. 15 =>
  2361. array (
  2362. 'type' => 'file',
  2363. 'name' => 'shopro/order/order/offlineconfirm',
  2364. 'title' => '货到付款收货',
  2365. 'icon' => 'fa fa-circle-o',
  2366. 'url' => '',
  2367. 'condition' => '',
  2368. 'remark' => '',
  2369. 'ismenu' => 0,
  2370. 'menutype' => 'addtabs',
  2371. 'extend' => '',
  2372. 'py' => 'hdfksh',
  2373. 'pinyin' => 'huodaofukuanshouhuo',
  2374. 'weigh' => 0,
  2375. ),
  2376. 16 =>
  2377. array (
  2378. 'type' => 'file',
  2379. 'name' => 'shopro/order/order/customdispatch',
  2380. 'title' => '订单手动发货',
  2381. 'icon' => 'fa fa-circle-o',
  2382. 'url' => '',
  2383. 'condition' => '',
  2384. 'remark' => '',
  2385. 'ismenu' => 0,
  2386. 'menutype' => 'addtabs',
  2387. 'extend' => '',
  2388. 'py' => 'ddsdfh',
  2389. 'pinyin' => 'dingdanshoudongfahuo',
  2390. 'weigh' => 0,
  2391. ),
  2392. ),
  2393. ),
  2394. 1 =>
  2395. array (
  2396. 'type' => 'file',
  2397. 'name' => 'shopro/order/aftersale',
  2398. 'title' => '售后管理',
  2399. 'icon' => 'fa fa-handshake-o',
  2400. 'url' => '',
  2401. 'condition' => '',
  2402. 'remark' => '',
  2403. 'ismenu' => 1,
  2404. 'menutype' => 'addtabs',
  2405. 'extend' => '',
  2406. 'py' => 'shgl',
  2407. 'pinyin' => 'shouhouguanli',
  2408. 'weigh' => 8,
  2409. 'sublist' =>
  2410. array (
  2411. 0 =>
  2412. array (
  2413. 'type' => 'file',
  2414. 'name' => 'shopro/order/aftersale/index',
  2415. 'title' => '查看',
  2416. 'icon' => 'fa fa-circle-o',
  2417. 'url' => '',
  2418. 'condition' => '',
  2419. 'remark' => '',
  2420. 'ismenu' => 0,
  2421. 'menutype' => 'addtabs',
  2422. 'extend' => '',
  2423. 'py' => 'zk',
  2424. 'pinyin' => 'zhakan',
  2425. 'weigh' => 0,
  2426. ),
  2427. 1 =>
  2428. array (
  2429. 'type' => 'file',
  2430. 'name' => 'shopro/order/aftersale/detail',
  2431. 'title' => '详情',
  2432. 'icon' => 'fa fa-circle-o',
  2433. 'url' => '',
  2434. 'condition' => '',
  2435. 'remark' => '',
  2436. 'ismenu' => 0,
  2437. 'menutype' => 'addtabs',
  2438. 'extend' => '',
  2439. 'py' => 'xq',
  2440. 'pinyin' => 'xiangqing',
  2441. 'weigh' => 0,
  2442. ),
  2443. 2 =>
  2444. array (
  2445. 'type' => 'file',
  2446. 'name' => 'shopro/order/aftersale/completed',
  2447. 'title' => '售后完成',
  2448. 'icon' => 'fa fa-circle-o',
  2449. 'url' => '',
  2450. 'condition' => '',
  2451. 'remark' => '',
  2452. 'ismenu' => 0,
  2453. 'menutype' => 'addtabs',
  2454. 'extend' => '',
  2455. 'py' => 'shwc',
  2456. 'pinyin' => 'shouhouwancheng',
  2457. 'weigh' => 0,
  2458. ),
  2459. 3 =>
  2460. array (
  2461. 'type' => 'file',
  2462. 'name' => 'shopro/order/aftersale/refuse',
  2463. 'title' => '拒绝售后',
  2464. 'icon' => 'fa fa-circle-o',
  2465. 'url' => '',
  2466. 'condition' => '',
  2467. 'remark' => '',
  2468. 'ismenu' => 0,
  2469. 'menutype' => 'addtabs',
  2470. 'extend' => '',
  2471. 'py' => 'jjsh',
  2472. 'pinyin' => 'jujueshouhou',
  2473. 'weigh' => 0,
  2474. ),
  2475. 4 =>
  2476. array (
  2477. 'type' => 'file',
  2478. 'name' => 'shopro/order/aftersale/refund',
  2479. 'title' => '售后退款',
  2480. 'icon' => 'fa fa-circle-o',
  2481. 'url' => '',
  2482. 'condition' => '',
  2483. 'remark' => '',
  2484. 'ismenu' => 0,
  2485. 'menutype' => 'addtabs',
  2486. 'extend' => '',
  2487. 'py' => 'shtk',
  2488. 'pinyin' => 'shouhoutuikuan',
  2489. 'weigh' => 0,
  2490. ),
  2491. 5 =>
  2492. array (
  2493. 'type' => 'file',
  2494. 'name' => 'shopro/order/aftersale/addlog',
  2495. 'title' => '回复买家',
  2496. 'icon' => 'fa fa-circle-o',
  2497. 'url' => '',
  2498. 'condition' => '',
  2499. 'remark' => '',
  2500. 'ismenu' => 0,
  2501. 'menutype' => 'addtabs',
  2502. 'extend' => '',
  2503. 'py' => 'hfmj',
  2504. 'pinyin' => 'huifumaijia',
  2505. 'weigh' => 0,
  2506. ),
  2507. ),
  2508. ),
  2509. 2 =>
  2510. array (
  2511. 'type' => 'file',
  2512. 'name' => 'shopro/order/invoice',
  2513. 'title' => '订单发票',
  2514. 'icon' => 'fa fa-file-text-o',
  2515. 'url' => '',
  2516. 'condition' => '',
  2517. 'remark' => '',
  2518. 'ismenu' => 1,
  2519. 'menutype' => 'addtabs',
  2520. 'extend' => '',
  2521. 'py' => 'ddfp',
  2522. 'pinyin' => 'dingdanfapiao',
  2523. 'weigh' => 6,
  2524. 'sublist' =>
  2525. array (
  2526. 0 =>
  2527. array (
  2528. 'type' => 'file',
  2529. 'name' => 'shopro/order/invoice/index',
  2530. 'title' => '查看',
  2531. 'icon' => 'fa fa-circle-o',
  2532. 'url' => '',
  2533. 'condition' => '',
  2534. 'remark' => '',
  2535. 'ismenu' => 0,
  2536. 'menutype' => 'addtabs',
  2537. 'extend' => '',
  2538. 'py' => 'zk',
  2539. 'pinyin' => 'zhakan',
  2540. 'weigh' => 0,
  2541. ),
  2542. 1 =>
  2543. array (
  2544. 'type' => 'file',
  2545. 'name' => 'shopro/order/invoice/confirm',
  2546. 'title' => '开具发票',
  2547. 'icon' => 'fa fa-circle-o',
  2548. 'url' => '',
  2549. 'condition' => '',
  2550. 'remark' => '',
  2551. 'ismenu' => 0,
  2552. 'menutype' => 'addtabs',
  2553. 'extend' => '',
  2554. 'py' => 'kjfp',
  2555. 'pinyin' => 'kaijufapiao',
  2556. 'weigh' => 0,
  2557. ),
  2558. ),
  2559. ),
  2560. 3 =>
  2561. array (
  2562. 'type' => 'file',
  2563. 'name' => 'shopro/trade/order',
  2564. 'title' => '充值订单',
  2565. 'icon' => 'fa fa-paypal',
  2566. 'url' => '',
  2567. 'condition' => '',
  2568. 'remark' => '',
  2569. 'ismenu' => 1,
  2570. 'menutype' => 'addtabs',
  2571. 'extend' => '',
  2572. 'py' => 'czdd',
  2573. 'pinyin' => 'chongzhidingdan',
  2574. 'weigh' => 4,
  2575. 'sublist' =>
  2576. array (
  2577. 0 =>
  2578. array (
  2579. 'type' => 'file',
  2580. 'name' => 'shopro/trade/order/index',
  2581. 'title' => '查看',
  2582. 'icon' => 'fa fa-circle-o',
  2583. 'url' => '',
  2584. 'condition' => '',
  2585. 'remark' => '',
  2586. 'ismenu' => 0,
  2587. 'menutype' => 'addtabs',
  2588. 'extend' => '',
  2589. 'py' => 'zk',
  2590. 'pinyin' => 'zhakan',
  2591. 'weigh' => 0,
  2592. ),
  2593. 1 =>
  2594. array (
  2595. 'type' => 'file',
  2596. 'name' => 'shopro/trade/order/detail',
  2597. 'title' => '详情',
  2598. 'icon' => 'fa fa-circle-o',
  2599. 'url' => '',
  2600. 'condition' => '',
  2601. 'remark' => '',
  2602. 'ismenu' => 0,
  2603. 'menutype' => 'addtabs',
  2604. 'extend' => '',
  2605. 'py' => 'xq',
  2606. 'pinyin' => 'xiangqing',
  2607. 'weigh' => 0,
  2608. ),
  2609. 2 =>
  2610. array (
  2611. 'type' => 'file',
  2612. 'name' => 'shopro/trade/order/export',
  2613. 'title' => '导出订单',
  2614. 'icon' => 'fa fa-circle-o',
  2615. 'url' => '',
  2616. 'condition' => '',
  2617. 'remark' => '',
  2618. 'ismenu' => 0,
  2619. 'menutype' => 'addtabs',
  2620. 'extend' => '',
  2621. 'py' => 'dcdd',
  2622. 'pinyin' => 'daochudingdan',
  2623. 'weigh' => 0,
  2624. ),
  2625. ),
  2626. ),
  2627. ),
  2628. ),
  2629. 4 =>
  2630. array (
  2631. 'type' => 'file',
  2632. 'name' => 'shopro/config',
  2633. 'title' => '商城配置',
  2634. 'icon' => 'fa fa-cogs',
  2635. 'url' => '',
  2636. 'condition' => '',
  2637. 'remark' => '',
  2638. 'ismenu' => 1,
  2639. 'menutype' => 'addtabs',
  2640. 'extend' => '',
  2641. 'py' => 'scpz',
  2642. 'pinyin' => 'shangchengpeizhi',
  2643. 'weigh' => 40,
  2644. 'sublist' =>
  2645. array (
  2646. 0 =>
  2647. array (
  2648. 'type' => 'file',
  2649. 'name' => 'shopro/config/basic',
  2650. 'title' => '基本信息',
  2651. 'icon' => 'fa fa-circle-o',
  2652. 'url' => '',
  2653. 'condition' => '',
  2654. 'remark' => '',
  2655. 'ismenu' => 0,
  2656. 'menutype' => 'addtabs',
  2657. 'extend' => '',
  2658. 'py' => 'jbxx',
  2659. 'pinyin' => 'jibenxinxi',
  2660. 'weigh' => 0,
  2661. ),
  2662. 1 =>
  2663. array (
  2664. 'type' => 'file',
  2665. 'name' => 'shopro/config/user',
  2666. 'title' => '用户配置',
  2667. 'icon' => 'fa fa-circle-o',
  2668. 'url' => '',
  2669. 'condition' => '',
  2670. 'remark' => '',
  2671. 'ismenu' => 0,
  2672. 'menutype' => 'addtabs',
  2673. 'extend' => '',
  2674. 'py' => 'yhpz',
  2675. 'pinyin' => 'yonghupeizhi',
  2676. 'weigh' => 0,
  2677. ),
  2678. 2 =>
  2679. array (
  2680. 'type' => 'file',
  2681. 'name' => 'shopro/config/platform',
  2682. 'title' => '平台配置',
  2683. 'icon' => 'fa fa-circle-o',
  2684. 'url' => '',
  2685. 'condition' => '',
  2686. 'remark' => '',
  2687. 'ismenu' => 0,
  2688. 'menutype' => 'addtabs',
  2689. 'extend' => '',
  2690. 'py' => 'ptpz',
  2691. 'pinyin' => 'pingtaipeizhi',
  2692. 'weigh' => 0,
  2693. ),
  2694. 3 =>
  2695. array (
  2696. 'type' => 'file',
  2697. 'name' => 'shopro/config/order',
  2698. 'title' => '订单配置',
  2699. 'icon' => 'fa fa-circle-o',
  2700. 'url' => '',
  2701. 'condition' => '',
  2702. 'remark' => '',
  2703. 'ismenu' => 0,
  2704. 'menutype' => 'addtabs',
  2705. 'extend' => '',
  2706. 'py' => 'ddpz',
  2707. 'pinyin' => 'dingdanpeizhi',
  2708. 'weigh' => 0,
  2709. ),
  2710. 4 =>
  2711. array (
  2712. 'type' => 'file',
  2713. 'name' => 'shopro/config/dispatch',
  2714. 'title' => '物流配置',
  2715. 'icon' => 'fa fa-circle-o',
  2716. 'url' => '',
  2717. 'condition' => '',
  2718. 'remark' => '',
  2719. 'ismenu' => 0,
  2720. 'menutype' => 'addtabs',
  2721. 'extend' => '',
  2722. 'py' => 'wlpz',
  2723. 'pinyin' => 'wuliupeizhi',
  2724. 'weigh' => 0,
  2725. ),
  2726. 5 =>
  2727. array (
  2728. 'type' => 'file',
  2729. 'name' => 'shopro/config/rechargewithdraw',
  2730. 'title' => '充值提现',
  2731. 'icon' => 'fa fa-circle-o',
  2732. 'url' => '',
  2733. 'condition' => '',
  2734. 'remark' => '',
  2735. 'ismenu' => 0,
  2736. 'menutype' => 'addtabs',
  2737. 'extend' => '',
  2738. 'py' => 'cztx',
  2739. 'pinyin' => 'chongzhitixian',
  2740. 'weigh' => 0,
  2741. ),
  2742. 6 =>
  2743. array (
  2744. 'type' => 'file',
  2745. 'name' => 'shopro/config/commission',
  2746. 'title' => '分销配置',
  2747. 'icon' => 'fa fa-circle-o',
  2748. 'url' => '',
  2749. 'condition' => '',
  2750. 'remark' => '',
  2751. 'ismenu' => 0,
  2752. 'menutype' => 'addtabs',
  2753. 'extend' => '',
  2754. 'py' => 'fxpz',
  2755. 'pinyin' => 'fenxiaopeizhi',
  2756. 'weigh' => 0,
  2757. ),
  2758. 7 =>
  2759. array (
  2760. 'type' => 'file',
  2761. 'name' => 'shopro/config/redis',
  2762. 'title' => 'Redis 配置',
  2763. 'icon' => 'fa fa-circle-o',
  2764. 'url' => '',
  2765. 'condition' => '',
  2766. 'remark' => '',
  2767. 'ismenu' => 0,
  2768. 'menutype' => 'addtabs',
  2769. 'extend' => '',
  2770. 'py' => 'Rpz',
  2771. 'pinyin' => 'Redispeizhi',
  2772. 'weigh' => 0,
  2773. ),
  2774. 8 =>
  2775. array (
  2776. 'type' => 'file',
  2777. 'name' => 'shopro/pay_config',
  2778. 'title' => '支付配置',
  2779. 'icon' => 'fa fa-circle-o',
  2780. 'url' => '',
  2781. 'condition' => '',
  2782. 'remark' => '',
  2783. 'ismenu' => 0,
  2784. 'menutype' => 'addtabs',
  2785. 'extend' => '',
  2786. 'py' => 'zfpz',
  2787. 'pinyin' => 'zhifupeizhi',
  2788. 'weigh' => 0,
  2789. 'sublist' =>
  2790. array (
  2791. 0 =>
  2792. array (
  2793. 'type' => 'file',
  2794. 'name' => 'shopro/pay_config/index',
  2795. 'title' => '查看',
  2796. 'icon' => 'fa fa-circle-o',
  2797. 'url' => '',
  2798. 'condition' => '',
  2799. 'remark' => '',
  2800. 'ismenu' => 0,
  2801. 'menutype' => 'addtabs',
  2802. 'extend' => '',
  2803. 'py' => 'zk',
  2804. 'pinyin' => 'zhakan',
  2805. 'weigh' => 0,
  2806. ),
  2807. 1 =>
  2808. array (
  2809. 'type' => 'file',
  2810. 'name' => 'shopro/pay_config/detail',
  2811. 'title' => '详情',
  2812. 'icon' => 'fa fa-circle-o',
  2813. 'url' => '',
  2814. 'condition' => '',
  2815. 'remark' => '',
  2816. 'ismenu' => 0,
  2817. 'menutype' => 'addtabs',
  2818. 'extend' => '',
  2819. 'py' => 'xq',
  2820. 'pinyin' => 'xiangqing',
  2821. 'weigh' => 0,
  2822. ),
  2823. 2 =>
  2824. array (
  2825. 'type' => 'file',
  2826. 'name' => 'shopro/pay_config/add',
  2827. 'title' => '添加',
  2828. 'icon' => 'fa fa-circle-o',
  2829. 'url' => '',
  2830. 'condition' => '',
  2831. 'remark' => '',
  2832. 'ismenu' => 0,
  2833. 'menutype' => 'addtabs',
  2834. 'extend' => '',
  2835. 'py' => 'tj',
  2836. 'pinyin' => 'tianjia',
  2837. 'weigh' => 0,
  2838. ),
  2839. 3 =>
  2840. array (
  2841. 'type' => 'file',
  2842. 'name' => 'shopro/pay_config/edit',
  2843. 'title' => '编辑',
  2844. 'icon' => 'fa fa-circle-o',
  2845. 'url' => '',
  2846. 'condition' => '',
  2847. 'remark' => '',
  2848. 'ismenu' => 0,
  2849. 'menutype' => 'addtabs',
  2850. 'extend' => '',
  2851. 'py' => 'bj',
  2852. 'pinyin' => 'bianji',
  2853. 'weigh' => 0,
  2854. ),
  2855. 4 =>
  2856. array (
  2857. 'type' => 'file',
  2858. 'name' => 'shopro/pay_config/delete',
  2859. 'title' => '删除',
  2860. 'icon' => 'fa fa-circle-o',
  2861. 'url' => '',
  2862. 'condition' => '',
  2863. 'remark' => '',
  2864. 'ismenu' => 0,
  2865. 'menutype' => 'addtabs',
  2866. 'extend' => '',
  2867. 'py' => 'sc',
  2868. 'pinyin' => 'shanchu',
  2869. 'weigh' => 0,
  2870. ),
  2871. 5 =>
  2872. array (
  2873. 'type' => 'file',
  2874. 'name' => 'shopro/pay_config/recyclebin',
  2875. 'title' => '回收站',
  2876. 'icon' => 'fa fa-circle-o',
  2877. 'url' => '',
  2878. 'condition' => '',
  2879. 'remark' => '',
  2880. 'ismenu' => 0,
  2881. 'menutype' => 'addtabs',
  2882. 'extend' => '',
  2883. 'py' => 'hsz',
  2884. 'pinyin' => 'huishouzhan',
  2885. 'weigh' => 0,
  2886. ),
  2887. 6 =>
  2888. array (
  2889. 'type' => 'file',
  2890. 'name' => 'shopro/pay_config/restore',
  2891. 'title' => '还原',
  2892. 'icon' => 'fa fa-circle-o',
  2893. 'url' => '',
  2894. 'condition' => '',
  2895. 'remark' => '',
  2896. 'ismenu' => 0,
  2897. 'menutype' => 'addtabs',
  2898. 'extend' => '',
  2899. 'py' => 'hy',
  2900. 'pinyin' => 'huanyuan',
  2901. 'weigh' => 0,
  2902. ),
  2903. 7 =>
  2904. array (
  2905. 'type' => 'file',
  2906. 'name' => 'shopro/pay_config/destroy',
  2907. 'title' => '销毁',
  2908. 'icon' => 'fa fa-circle-o',
  2909. 'url' => '',
  2910. 'condition' => '',
  2911. 'remark' => '',
  2912. 'ismenu' => 0,
  2913. 'menutype' => 'addtabs',
  2914. 'extend' => '',
  2915. 'py' => 'xh',
  2916. 'pinyin' => 'xiaohui',
  2917. 'weigh' => 0,
  2918. ),
  2919. ),
  2920. ),
  2921. 9 =>
  2922. array (
  2923. 'type' => 'file',
  2924. 'name' => 'shopro/config/chat',
  2925. 'title' => '客服配置',
  2926. 'icon' => 'fa fa-circle-o',
  2927. 'url' => '',
  2928. 'condition' => '',
  2929. 'remark' => '',
  2930. 'ismenu' => 0,
  2931. 'menutype' => 'addtabs',
  2932. 'extend' => '',
  2933. 'py' => 'kfpz',
  2934. 'pinyin' => 'kefupeizhi',
  2935. 'weigh' => 0,
  2936. ),
  2937. 10 =>
  2938. array (
  2939. 'type' => 'file',
  2940. 'name' => 'shopro/config/goods',
  2941. 'title' => '商品配置',
  2942. 'icon' => 'fa fa-circle-o',
  2943. 'url' => '',
  2944. 'condition' => '',
  2945. 'remark' => '',
  2946. 'ismenu' => 0,
  2947. 'menutype' => 'addtabs',
  2948. 'extend' => '',
  2949. 'py' => 'sppz',
  2950. 'pinyin' => 'shangpinpeizhi',
  2951. 'weigh' => 0,
  2952. ),
  2953. ),
  2954. ),
  2955. 5 =>
  2956. array (
  2957. 'type' => 'file',
  2958. 'name' => 'shopro/withdraw',
  2959. 'title' => '提现管理',
  2960. 'icon' => 'fa fa-jpy',
  2961. 'url' => '',
  2962. 'condition' => '',
  2963. 'remark' => '',
  2964. 'ismenu' => 1,
  2965. 'menutype' => 'addtabs',
  2966. 'extend' => '',
  2967. 'py' => 'txgl',
  2968. 'pinyin' => 'tixianguanli',
  2969. 'weigh' => 80,
  2970. 'sublist' =>
  2971. array (
  2972. 0 =>
  2973. array (
  2974. 'type' => 'file',
  2975. 'name' => 'shopro/withdraw/index',
  2976. 'title' => '查看',
  2977. 'icon' => 'fa fa-circle-o',
  2978. 'url' => '',
  2979. 'condition' => '',
  2980. 'remark' => '',
  2981. 'ismenu' => 0,
  2982. 'menutype' => 'addtabs',
  2983. 'extend' => '',
  2984. 'py' => 'zk',
  2985. 'pinyin' => 'zhakan',
  2986. 'weigh' => 0,
  2987. ),
  2988. 1 =>
  2989. array (
  2990. 'type' => 'file',
  2991. 'name' => 'shopro/withdraw/log',
  2992. 'title' => '提现日志',
  2993. 'icon' => 'fa fa-circle-o',
  2994. 'url' => '',
  2995. 'condition' => '',
  2996. 'remark' => '',
  2997. 'ismenu' => 0,
  2998. 'menutype' => 'addtabs',
  2999. 'extend' => '',
  3000. 'py' => 'txrz',
  3001. 'pinyin' => 'tixianrizhi',
  3002. 'weigh' => 0,
  3003. ),
  3004. 2 =>
  3005. array (
  3006. 'type' => 'file',
  3007. 'name' => 'shopro/withdraw/handle',
  3008. 'title' => '提现处理',
  3009. 'icon' => 'fa fa-circle-o',
  3010. 'url' => '',
  3011. 'condition' => '',
  3012. 'remark' => '',
  3013. 'ismenu' => 0,
  3014. 'menutype' => 'addtabs',
  3015. 'extend' => '',
  3016. 'py' => 'txcl',
  3017. 'pinyin' => 'tixianchuli',
  3018. 'weigh' => 0,
  3019. ),
  3020. ),
  3021. ),
  3022. 6 =>
  3023. array (
  3024. 'type' => 'file',
  3025. 'name' => 'shopro/commission',
  3026. 'title' => '分销中心',
  3027. 'icon' => 'fa fa-users',
  3028. 'url' => '',
  3029. 'condition' => '',
  3030. 'remark' => '',
  3031. 'ismenu' => 1,
  3032. 'menutype' => 'addtabs',
  3033. 'extend' => '',
  3034. 'py' => 'fxzx',
  3035. 'pinyin' => 'fenxiaozhongxin',
  3036. 'weigh' => 90,
  3037. 'sublist' =>
  3038. array (
  3039. 0 =>
  3040. array (
  3041. 'type' => 'file',
  3042. 'name' => 'shopro/commission/agent',
  3043. 'title' => '分销商',
  3044. 'icon' => 'fa fa-user',
  3045. 'url' => '',
  3046. 'condition' => '',
  3047. 'remark' => '',
  3048. 'ismenu' => 1,
  3049. 'menutype' => 'addtabs',
  3050. 'extend' => '',
  3051. 'py' => 'fxs',
  3052. 'pinyin' => 'fenxiaoshang',
  3053. 'weigh' => 10,
  3054. 'sublist' =>
  3055. array (
  3056. 0 =>
  3057. array (
  3058. 'type' => 'file',
  3059. 'name' => 'shopro/commission/agent/index',
  3060. 'title' => '查看',
  3061. 'icon' => 'fa fa-circle-o',
  3062. 'url' => '',
  3063. 'condition' => '',
  3064. 'remark' => '',
  3065. 'ismenu' => 0,
  3066. 'menutype' => 'addtabs',
  3067. 'extend' => '',
  3068. 'py' => 'zk',
  3069. 'pinyin' => 'zhakan',
  3070. 'weigh' => 0,
  3071. ),
  3072. 1 =>
  3073. array (
  3074. 'type' => 'file',
  3075. 'name' => 'shopro/commission/agent/detail',
  3076. 'title' => '详情',
  3077. 'icon' => 'fa fa-circle-o',
  3078. 'url' => '',
  3079. 'condition' => '',
  3080. 'remark' => '',
  3081. 'ismenu' => 0,
  3082. 'menutype' => 'addtabs',
  3083. 'extend' => '',
  3084. 'py' => 'xq',
  3085. 'pinyin' => 'xiangqing',
  3086. 'weigh' => 0,
  3087. ),
  3088. 2 =>
  3089. array (
  3090. 'type' => 'file',
  3091. 'name' => 'shopro/commission/agent/edit',
  3092. 'title' => '编辑',
  3093. 'icon' => 'fa fa-circle-o',
  3094. 'url' => '',
  3095. 'condition' => '',
  3096. 'remark' => '',
  3097. 'ismenu' => 0,
  3098. 'menutype' => 'addtabs',
  3099. 'extend' => '',
  3100. 'py' => 'bj',
  3101. 'pinyin' => 'bianji',
  3102. 'weigh' => 0,
  3103. ),
  3104. 3 =>
  3105. array (
  3106. 'type' => 'file',
  3107. 'name' => 'shopro/commission/agent/changeparentuser',
  3108. 'title' => '更换上级分销商',
  3109. 'icon' => 'fa fa-circle-o',
  3110. 'url' => '',
  3111. 'condition' => '',
  3112. 'remark' => '',
  3113. 'ismenu' => 0,
  3114. 'menutype' => 'addtabs',
  3115. 'extend' => '',
  3116. 'py' => 'ghsjfxs',
  3117. 'pinyin' => 'genghuanshangjifenxiaoshang',
  3118. 'weigh' => 0,
  3119. ),
  3120. 4 =>
  3121. array (
  3122. 'type' => 'file',
  3123. 'name' => 'shopro/commission/agent/team',
  3124. 'title' => '查看团队',
  3125. 'icon' => 'fa fa-circle-o',
  3126. 'url' => '',
  3127. 'condition' => '',
  3128. 'remark' => '',
  3129. 'ismenu' => 0,
  3130. 'menutype' => 'addtabs',
  3131. 'extend' => '',
  3132. 'py' => 'zktd',
  3133. 'pinyin' => 'zhakantuandui',
  3134. 'weigh' => 0,
  3135. ),
  3136. ),
  3137. ),
  3138. 1 =>
  3139. array (
  3140. 'type' => 'file',
  3141. 'name' => 'shopro/commission/level',
  3142. 'title' => '分销商等级',
  3143. 'icon' => 'fa fa-list-ol',
  3144. 'url' => '',
  3145. 'condition' => '',
  3146. 'remark' => '',
  3147. 'ismenu' => 1,
  3148. 'menutype' => 'addtabs',
  3149. 'extend' => '',
  3150. 'py' => 'fxsdj',
  3151. 'pinyin' => 'fenxiaoshangdengji',
  3152. 'weigh' => 9,
  3153. 'sublist' =>
  3154. array (
  3155. 0 =>
  3156. array (
  3157. 'type' => 'file',
  3158. 'name' => 'shopro/commission/level/index',
  3159. 'title' => '查看',
  3160. 'icon' => 'fa fa-circle-o',
  3161. 'url' => '',
  3162. 'condition' => '',
  3163. 'remark' => '',
  3164. 'ismenu' => 0,
  3165. 'menutype' => 'addtabs',
  3166. 'extend' => '',
  3167. 'py' => 'zk',
  3168. 'pinyin' => 'zhakan',
  3169. 'weigh' => 0,
  3170. ),
  3171. 1 =>
  3172. array (
  3173. 'type' => 'file',
  3174. 'name' => 'shopro/commission/level/detail',
  3175. 'title' => '详情',
  3176. 'icon' => 'fa fa-circle-o',
  3177. 'url' => '',
  3178. 'condition' => '',
  3179. 'remark' => '',
  3180. 'ismenu' => 0,
  3181. 'menutype' => 'addtabs',
  3182. 'extend' => '',
  3183. 'py' => 'xq',
  3184. 'pinyin' => 'xiangqing',
  3185. 'weigh' => 0,
  3186. ),
  3187. 2 =>
  3188. array (
  3189. 'type' => 'file',
  3190. 'name' => 'shopro/commission/level/add',
  3191. 'title' => '添加',
  3192. 'icon' => 'fa fa-circle-o',
  3193. 'url' => '',
  3194. 'condition' => '',
  3195. 'remark' => '',
  3196. 'ismenu' => 0,
  3197. 'menutype' => 'addtabs',
  3198. 'extend' => '',
  3199. 'py' => 'tj',
  3200. 'pinyin' => 'tianjia',
  3201. 'weigh' => 0,
  3202. ),
  3203. 3 =>
  3204. array (
  3205. 'type' => 'file',
  3206. 'name' => 'shopro/commission/level/edit',
  3207. 'title' => '编辑',
  3208. 'icon' => 'fa fa-circle-o',
  3209. 'url' => '',
  3210. 'condition' => '',
  3211. 'remark' => '',
  3212. 'ismenu' => 0,
  3213. 'menutype' => 'addtabs',
  3214. 'extend' => '',
  3215. 'py' => 'bj',
  3216. 'pinyin' => 'bianji',
  3217. 'weigh' => 0,
  3218. ),
  3219. 4 =>
  3220. array (
  3221. 'type' => 'file',
  3222. 'name' => 'shopro/commission/level/delete',
  3223. 'title' => '删除',
  3224. 'icon' => 'fa fa-circle-o',
  3225. 'url' => '',
  3226. 'condition' => '',
  3227. 'remark' => '',
  3228. 'ismenu' => 0,
  3229. 'menutype' => 'addtabs',
  3230. 'extend' => '',
  3231. 'py' => 'sc',
  3232. 'pinyin' => 'shanchu',
  3233. 'weigh' => 0,
  3234. ),
  3235. ),
  3236. ),
  3237. 2 =>
  3238. array (
  3239. 'type' => 'file',
  3240. 'name' => 'shopro/commission/order',
  3241. 'title' => '分销订单',
  3242. 'icon' => 'fa fa-file-text',
  3243. 'url' => '',
  3244. 'condition' => '',
  3245. 'remark' => '',
  3246. 'ismenu' => 1,
  3247. 'menutype' => 'addtabs',
  3248. 'extend' => '',
  3249. 'py' => 'fxdd',
  3250. 'pinyin' => 'fenxiaodingdan',
  3251. 'weigh' => 7,
  3252. 'sublist' =>
  3253. array (
  3254. 0 =>
  3255. array (
  3256. 'type' => 'file',
  3257. 'name' => 'shopro/commission/order/index',
  3258. 'title' => '查看',
  3259. 'icon' => 'fa fa-circle-o',
  3260. 'url' => '',
  3261. 'condition' => '',
  3262. 'remark' => '',
  3263. 'ismenu' => 0,
  3264. 'menutype' => 'addtabs',
  3265. 'extend' => '',
  3266. 'py' => 'zk',
  3267. 'pinyin' => 'zhakan',
  3268. 'weigh' => 0,
  3269. ),
  3270. 1 =>
  3271. array (
  3272. 'type' => 'file',
  3273. 'name' => 'shopro/commission/order/edit',
  3274. 'title' => '修改佣金',
  3275. 'icon' => 'fa fa-circle-o',
  3276. 'url' => '',
  3277. 'condition' => '',
  3278. 'remark' => '',
  3279. 'ismenu' => 0,
  3280. 'menutype' => 'addtabs',
  3281. 'extend' => '',
  3282. 'py' => 'xgyj',
  3283. 'pinyin' => 'xiugaiyongjin',
  3284. 'weigh' => 0,
  3285. ),
  3286. 2 =>
  3287. array (
  3288. 'type' => 'file',
  3289. 'name' => 'shopro/commission/order/confirm',
  3290. 'title' => '手动结算',
  3291. 'icon' => 'fa fa-circle-o',
  3292. 'url' => '',
  3293. 'condition' => '',
  3294. 'remark' => '',
  3295. 'ismenu' => 0,
  3296. 'menutype' => 'addtabs',
  3297. 'extend' => '',
  3298. 'py' => 'sdjs',
  3299. 'pinyin' => 'shoudongjiesuan',
  3300. 'weigh' => 0,
  3301. ),
  3302. 3 =>
  3303. array (
  3304. 'type' => 'file',
  3305. 'name' => 'shopro/commission/order/cancel',
  3306. 'title' => '取消结算',
  3307. 'icon' => 'fa fa-circle-o',
  3308. 'url' => '',
  3309. 'condition' => '',
  3310. 'remark' => '',
  3311. 'ismenu' => 0,
  3312. 'menutype' => 'addtabs',
  3313. 'extend' => '',
  3314. 'py' => 'qxjs',
  3315. 'pinyin' => 'quxiaojiesuan',
  3316. 'weigh' => 0,
  3317. ),
  3318. 4 =>
  3319. array (
  3320. 'type' => 'file',
  3321. 'name' => 'shopro/commission/order/back',
  3322. 'title' => '退回结算',
  3323. 'icon' => 'fa fa-circle-o',
  3324. 'url' => '',
  3325. 'condition' => '',
  3326. 'remark' => '',
  3327. 'ismenu' => 0,
  3328. 'menutype' => 'addtabs',
  3329. 'extend' => '',
  3330. 'py' => 'thjs',
  3331. 'pinyin' => 'tuihuijiesuan',
  3332. 'weigh' => 0,
  3333. ),
  3334. 5 =>
  3335. array (
  3336. 'type' => 'file',
  3337. 'name' => 'shopro/commission/order/export',
  3338. 'title' => '订单导出',
  3339. 'icon' => 'fa fa-circle-o',
  3340. 'url' => '',
  3341. 'condition' => '',
  3342. 'remark' => '',
  3343. 'ismenu' => 0,
  3344. 'menutype' => 'addtabs',
  3345. 'extend' => '',
  3346. 'py' => 'dddc',
  3347. 'pinyin' => 'dingdandaochu',
  3348. 'weigh' => 0,
  3349. ),
  3350. ),
  3351. ),
  3352. 3 =>
  3353. array (
  3354. 'type' => 'file',
  3355. 'name' => 'shopro/commission/log',
  3356. 'title' => '分销动态',
  3357. 'icon' => 'fa fa-address-card',
  3358. 'url' => '',
  3359. 'condition' => '',
  3360. 'remark' => '',
  3361. 'ismenu' => 1,
  3362. 'menutype' => 'addtabs',
  3363. 'extend' => '',
  3364. 'py' => 'fxdt',
  3365. 'pinyin' => 'fenxiaodongtai',
  3366. 'weigh' => 6,
  3367. 'sublist' =>
  3368. array (
  3369. 0 =>
  3370. array (
  3371. 'type' => 'file',
  3372. 'name' => 'shopro/commission/log/index',
  3373. 'title' => '查看',
  3374. 'icon' => 'fa fa-circle-o',
  3375. 'url' => '',
  3376. 'condition' => '',
  3377. 'remark' => '',
  3378. 'ismenu' => 0,
  3379. 'menutype' => 'addtabs',
  3380. 'extend' => '',
  3381. 'py' => 'zk',
  3382. 'pinyin' => 'zhakan',
  3383. 'weigh' => 0,
  3384. ),
  3385. ),
  3386. ),
  3387. 4 =>
  3388. array (
  3389. 'type' => 'file',
  3390. 'name' => 'shopro/commission/reward',
  3391. 'title' => '佣金明细',
  3392. 'icon' => 'fa fa-usd',
  3393. 'url' => '',
  3394. 'condition' => '',
  3395. 'remark' => '',
  3396. 'ismenu' => 1,
  3397. 'menutype' => 'addtabs',
  3398. 'extend' => '',
  3399. 'py' => 'yjmx',
  3400. 'pinyin' => 'yongjinmingxi',
  3401. 'weigh' => 5,
  3402. 'sublist' =>
  3403. array (
  3404. 0 =>
  3405. array (
  3406. 'type' => 'file',
  3407. 'name' => 'shopro/commission/reward/index',
  3408. 'title' => '查看',
  3409. 'icon' => 'fa fa-circle-o',
  3410. 'url' => '',
  3411. 'condition' => '',
  3412. 'remark' => '',
  3413. 'ismenu' => 0,
  3414. 'menutype' => 'addtabs',
  3415. 'extend' => '',
  3416. 'py' => 'zk',
  3417. 'pinyin' => 'zhakan',
  3418. 'weigh' => 0,
  3419. ),
  3420. 1 =>
  3421. array (
  3422. 'type' => 'file',
  3423. 'name' => 'shopro/commission/reward/export',
  3424. 'title' => '导出',
  3425. 'icon' => 'fa fa-circle-o',
  3426. 'url' => '',
  3427. 'condition' => '',
  3428. 'remark' => '',
  3429. 'ismenu' => 0,
  3430. 'menutype' => 'addtabs',
  3431. 'extend' => '',
  3432. 'py' => 'dc',
  3433. 'pinyin' => 'daochu',
  3434. 'weigh' => 0,
  3435. ),
  3436. ),
  3437. ),
  3438. 5 =>
  3439. array (
  3440. 'type' => 'file',
  3441. 'name' => 'shopro/commission/goods',
  3442. 'title' => '分销商品',
  3443. 'icon' => 'fa fa-briefcase',
  3444. 'url' => '',
  3445. 'condition' => '',
  3446. 'remark' => '',
  3447. 'ismenu' => 1,
  3448. 'menutype' => 'addtabs',
  3449. 'extend' => '',
  3450. 'py' => 'fxsp',
  3451. 'pinyin' => 'fenxiaoshangpin',
  3452. 'weigh' => 8,
  3453. 'sublist' =>
  3454. array (
  3455. 0 =>
  3456. array (
  3457. 'type' => 'file',
  3458. 'name' => 'shopro/commission/goods/index',
  3459. 'title' => '查看',
  3460. 'icon' => 'fa fa-circle-o',
  3461. 'url' => '',
  3462. 'condition' => '',
  3463. 'remark' => '',
  3464. 'ismenu' => 0,
  3465. 'menutype' => 'addtabs',
  3466. 'extend' => '',
  3467. 'py' => 'zk',
  3468. 'pinyin' => 'zhakan',
  3469. 'weigh' => 0,
  3470. ),
  3471. 1 =>
  3472. array (
  3473. 'type' => 'file',
  3474. 'name' => 'shopro/commission/goods/detail',
  3475. 'title' => '详情',
  3476. 'icon' => 'fa fa-circle-o',
  3477. 'url' => '',
  3478. 'condition' => '',
  3479. 'remark' => '',
  3480. 'ismenu' => 0,
  3481. 'menutype' => 'addtabs',
  3482. 'extend' => '',
  3483. 'py' => 'xq',
  3484. 'pinyin' => 'xiangqing',
  3485. 'weigh' => 0,
  3486. ),
  3487. 2 =>
  3488. array (
  3489. 'type' => 'file',
  3490. 'name' => 'shopro/commission/goods/edit',
  3491. 'title' => '设置佣金',
  3492. 'icon' => 'fa fa-circle-o',
  3493. 'url' => '',
  3494. 'condition' => '',
  3495. 'remark' => '',
  3496. 'ismenu' => 0,
  3497. 'menutype' => 'addtabs',
  3498. 'extend' => '',
  3499. 'py' => 'szyj',
  3500. 'pinyin' => 'shezhiyongjin',
  3501. 'weigh' => 0,
  3502. ),
  3503. ),
  3504. ),
  3505. ),
  3506. ),
  3507. 7 =>
  3508. array (
  3509. 'type' => 'file',
  3510. 'name' => 'shopro/feedback',
  3511. 'title' => '意见反馈',
  3512. 'icon' => 'fa fa-question-circle-o',
  3513. 'url' => '',
  3514. 'condition' => '',
  3515. 'remark' => '',
  3516. 'ismenu' => 1,
  3517. 'menutype' => 'addtabs',
  3518. 'extend' => '',
  3519. 'py' => 'yjfk',
  3520. 'pinyin' => 'yijianfankui',
  3521. 'weigh' => 10,
  3522. 'sublist' =>
  3523. array (
  3524. 0 =>
  3525. array (
  3526. 'type' => 'file',
  3527. 'name' => 'shopro/feedback/index',
  3528. 'title' => '查看',
  3529. 'icon' => 'fa fa-circle-o',
  3530. 'url' => '',
  3531. 'condition' => '',
  3532. 'remark' => '',
  3533. 'ismenu' => 0,
  3534. 'menutype' => 'addtabs',
  3535. 'extend' => '',
  3536. 'py' => 'zk',
  3537. 'pinyin' => 'zhakan',
  3538. 'weigh' => 0,
  3539. ),
  3540. 1 =>
  3541. array (
  3542. 'type' => 'file',
  3543. 'name' => 'shopro/feedback/detail',
  3544. 'title' => '详情',
  3545. 'icon' => 'fa fa-circle-o',
  3546. 'url' => '',
  3547. 'condition' => '',
  3548. 'remark' => '',
  3549. 'ismenu' => 0,
  3550. 'menutype' => 'addtabs',
  3551. 'extend' => '',
  3552. 'py' => 'xq',
  3553. 'pinyin' => 'xiangqing',
  3554. 'weigh' => 0,
  3555. ),
  3556. 2 =>
  3557. array (
  3558. 'type' => 'file',
  3559. 'name' => 'shopro/feedback/edit',
  3560. 'title' => '编辑',
  3561. 'icon' => 'fa fa-circle-o',
  3562. 'url' => '',
  3563. 'condition' => '',
  3564. 'remark' => '',
  3565. 'ismenu' => 0,
  3566. 'menutype' => 'addtabs',
  3567. 'extend' => '',
  3568. 'py' => 'bj',
  3569. 'pinyin' => 'bianji',
  3570. 'weigh' => 0,
  3571. ),
  3572. 3 =>
  3573. array (
  3574. 'type' => 'file',
  3575. 'name' => 'shopro/feedback/delete',
  3576. 'title' => '删除',
  3577. 'icon' => 'fa fa-circle-o',
  3578. 'url' => '',
  3579. 'condition' => '',
  3580. 'remark' => '',
  3581. 'ismenu' => 0,
  3582. 'menutype' => 'addtabs',
  3583. 'extend' => '',
  3584. 'py' => 'sc',
  3585. 'pinyin' => 'shanchu',
  3586. 'weigh' => 0,
  3587. ),
  3588. ),
  3589. ),
  3590. 8 =>
  3591. array (
  3592. 'type' => 'file',
  3593. 'name' => 'shopro/dispatch/dispatch',
  3594. 'title' => '配送设置',
  3595. 'icon' => 'fa fa-automobile',
  3596. 'url' => '',
  3597. 'condition' => '',
  3598. 'remark' => '',
  3599. 'ismenu' => 1,
  3600. 'menutype' => 'addtabs',
  3601. 'extend' => '',
  3602. 'py' => 'pssz',
  3603. 'pinyin' => 'peisongshezhi',
  3604. 'weigh' => 30,
  3605. 'sublist' =>
  3606. array (
  3607. 0 =>
  3608. array (
  3609. 'type' => 'file',
  3610. 'name' => 'shopro/dispatch/dispatch/index',
  3611. 'title' => '查看',
  3612. 'icon' => 'fa fa-circle-o',
  3613. 'url' => '',
  3614. 'condition' => '',
  3615. 'remark' => '',
  3616. 'ismenu' => 0,
  3617. 'menutype' => 'addtabs',
  3618. 'extend' => '',
  3619. 'py' => 'zk',
  3620. 'pinyin' => 'zhakan',
  3621. 'weigh' => 0,
  3622. ),
  3623. 1 =>
  3624. array (
  3625. 'type' => 'file',
  3626. 'name' => 'shopro/dispatch/dispatch/detail',
  3627. 'title' => '详情',
  3628. 'icon' => 'fa fa-circle-o',
  3629. 'url' => '',
  3630. 'condition' => '',
  3631. 'remark' => '',
  3632. 'ismenu' => 0,
  3633. 'menutype' => 'addtabs',
  3634. 'extend' => '',
  3635. 'py' => 'xq',
  3636. 'pinyin' => 'xiangqing',
  3637. 'weigh' => 0,
  3638. ),
  3639. 2 =>
  3640. array (
  3641. 'type' => 'file',
  3642. 'name' => 'shopro/dispatch/dispatch/add',
  3643. 'title' => '添加',
  3644. 'icon' => 'fa fa-circle-o',
  3645. 'url' => '',
  3646. 'condition' => '',
  3647. 'remark' => '',
  3648. 'ismenu' => 0,
  3649. 'menutype' => 'addtabs',
  3650. 'extend' => '',
  3651. 'py' => 'tj',
  3652. 'pinyin' => 'tianjia',
  3653. 'weigh' => 0,
  3654. ),
  3655. 3 =>
  3656. array (
  3657. 'type' => 'file',
  3658. 'name' => 'shopro/dispatch/dispatch/edit',
  3659. 'title' => '编辑',
  3660. 'icon' => 'fa fa-circle-o',
  3661. 'url' => '',
  3662. 'condition' => '',
  3663. 'remark' => '',
  3664. 'ismenu' => 0,
  3665. 'menutype' => 'addtabs',
  3666. 'extend' => '',
  3667. 'py' => 'bj',
  3668. 'pinyin' => 'bianji',
  3669. 'weigh' => 0,
  3670. ),
  3671. 4 =>
  3672. array (
  3673. 'type' => 'file',
  3674. 'name' => 'shopro/dispatch/dispatch/delete',
  3675. 'title' => '删除',
  3676. 'icon' => 'fa fa-circle-o',
  3677. 'url' => '',
  3678. 'condition' => '',
  3679. 'remark' => '',
  3680. 'ismenu' => 0,
  3681. 'menutype' => 'addtabs',
  3682. 'extend' => '',
  3683. 'py' => 'sc',
  3684. 'pinyin' => 'shanchu',
  3685. 'weigh' => 0,
  3686. ),
  3687. ),
  3688. ),
  3689. 9 =>
  3690. array (
  3691. 'type' => 'file',
  3692. 'name' => 'shopro/decorate',
  3693. 'title' => '店铺装修',
  3694. 'icon' => 'fa fa-paint-brush',
  3695. 'url' => '',
  3696. 'condition' => '',
  3697. 'remark' => '',
  3698. 'ismenu' => 1,
  3699. 'menutype' => 'addtabs',
  3700. 'extend' => '',
  3701. 'py' => 'dpzx',
  3702. 'pinyin' => 'dianpuzhuangxiu',
  3703. 'weigh' => 140,
  3704. 'sublist' =>
  3705. array (
  3706. 0 =>
  3707. array (
  3708. 'type' => 'file',
  3709. 'name' => 'shopro/decorate/template',
  3710. 'title' => '模板管理',
  3711. 'icon' => 'fa fa-cubes',
  3712. 'url' => '',
  3713. 'condition' => '',
  3714. 'remark' => '',
  3715. 'ismenu' => 1,
  3716. 'menutype' => 'addtabs',
  3717. 'extend' => '',
  3718. 'py' => 'mbgl',
  3719. 'pinyin' => 'mubanguanli',
  3720. 'weigh' => 0,
  3721. 'sublist' =>
  3722. array (
  3723. 0 =>
  3724. array (
  3725. 'type' => 'file',
  3726. 'name' => 'shopro/decorate/template/index',
  3727. 'title' => '查看',
  3728. 'icon' => 'fa fa-circle-o',
  3729. 'url' => '',
  3730. 'condition' => '',
  3731. 'remark' => '',
  3732. 'ismenu' => 0,
  3733. 'menutype' => 'addtabs',
  3734. 'extend' => '',
  3735. 'py' => 'zk',
  3736. 'pinyin' => 'zhakan',
  3737. 'weigh' => 0,
  3738. ),
  3739. 1 =>
  3740. array (
  3741. 'type' => 'file',
  3742. 'name' => 'shopro/decorate/template/detail',
  3743. 'title' => '详情',
  3744. 'icon' => 'fa fa-circle-o',
  3745. 'url' => '',
  3746. 'condition' => '',
  3747. 'remark' => '',
  3748. 'ismenu' => 0,
  3749. 'menutype' => 'addtabs',
  3750. 'extend' => '',
  3751. 'py' => 'xq',
  3752. 'pinyin' => 'xiangqing',
  3753. 'weigh' => 0,
  3754. ),
  3755. 2 =>
  3756. array (
  3757. 'type' => 'file',
  3758. 'name' => 'shopro/decorate/template/add',
  3759. 'title' => '添加',
  3760. 'icon' => 'fa fa-circle-o',
  3761. 'url' => '',
  3762. 'condition' => '',
  3763. 'remark' => '',
  3764. 'ismenu' => 0,
  3765. 'menutype' => 'addtabs',
  3766. 'extend' => '',
  3767. 'py' => 'tj',
  3768. 'pinyin' => 'tianjia',
  3769. 'weigh' => 0,
  3770. ),
  3771. 3 =>
  3772. array (
  3773. 'type' => 'file',
  3774. 'name' => 'shopro/decorate/template/edit',
  3775. 'title' => '编辑',
  3776. 'icon' => 'fa fa-circle-o',
  3777. 'url' => '',
  3778. 'condition' => '',
  3779. 'remark' => '',
  3780. 'ismenu' => 0,
  3781. 'menutype' => 'addtabs',
  3782. 'extend' => '',
  3783. 'py' => 'bj',
  3784. 'pinyin' => 'bianji',
  3785. 'weigh' => 0,
  3786. ),
  3787. 4 =>
  3788. array (
  3789. 'type' => 'file',
  3790. 'name' => 'shopro/decorate/template/delete',
  3791. 'title' => '删除',
  3792. 'icon' => 'fa fa-circle-o',
  3793. 'url' => '',
  3794. 'condition' => '',
  3795. 'remark' => '',
  3796. 'ismenu' => 0,
  3797. 'menutype' => 'addtabs',
  3798. 'extend' => '',
  3799. 'py' => 'sc',
  3800. 'pinyin' => 'shanchu',
  3801. 'weigh' => 0,
  3802. ),
  3803. 5 =>
  3804. array (
  3805. 'type' => 'file',
  3806. 'name' => 'shopro/decorate/template/status',
  3807. 'title' => '上-下架',
  3808. 'icon' => 'fa fa-circle-o',
  3809. 'url' => '',
  3810. 'condition' => '',
  3811. 'remark' => '',
  3812. 'ismenu' => 0,
  3813. 'menutype' => 'addtabs',
  3814. 'extend' => '',
  3815. 'py' => 'sxj',
  3816. 'pinyin' => 'shangxiajia',
  3817. 'weigh' => 0,
  3818. ),
  3819. 6 =>
  3820. array (
  3821. 'type' => 'file',
  3822. 'name' => 'shopro/decorate/template/copy',
  3823. 'title' => '复制',
  3824. 'icon' => 'fa fa-circle-o',
  3825. 'url' => '',
  3826. 'condition' => '',
  3827. 'remark' => '',
  3828. 'ismenu' => 0,
  3829. 'menutype' => 'addtabs',
  3830. 'extend' => '',
  3831. 'py' => 'fz',
  3832. 'pinyin' => 'fuzhi',
  3833. 'weigh' => 0,
  3834. ),
  3835. 7 =>
  3836. array (
  3837. 'type' => 'file',
  3838. 'name' => 'shopro/decorate/template/recyclebin',
  3839. 'title' => '回收站',
  3840. 'icon' => 'fa fa-circle-o',
  3841. 'url' => '',
  3842. 'condition' => '',
  3843. 'remark' => '',
  3844. 'ismenu' => 0,
  3845. 'menutype' => 'addtabs',
  3846. 'extend' => '',
  3847. 'py' => 'hsz',
  3848. 'pinyin' => 'huishouzhan',
  3849. 'weigh' => 0,
  3850. ),
  3851. 8 =>
  3852. array (
  3853. 'type' => 'file',
  3854. 'name' => 'shopro/decorate/template/restore',
  3855. 'title' => '还原',
  3856. 'icon' => 'fa fa-circle-o',
  3857. 'url' => '',
  3858. 'condition' => '',
  3859. 'remark' => '',
  3860. 'ismenu' => 0,
  3861. 'menutype' => 'addtabs',
  3862. 'extend' => '',
  3863. 'py' => 'hy',
  3864. 'pinyin' => 'huanyuan',
  3865. 'weigh' => 0,
  3866. ),
  3867. 9 =>
  3868. array (
  3869. 'type' => 'file',
  3870. 'name' => 'shopro/decorate/template/destroy',
  3871. 'title' => '销毁',
  3872. 'icon' => 'fa fa-circle-o',
  3873. 'url' => '',
  3874. 'condition' => '',
  3875. 'remark' => '',
  3876. 'ismenu' => 0,
  3877. 'menutype' => 'addtabs',
  3878. 'extend' => '',
  3879. 'py' => 'xh',
  3880. 'pinyin' => 'xiaohui',
  3881. 'weigh' => 0,
  3882. ),
  3883. ),
  3884. ),
  3885. 1 =>
  3886. array (
  3887. 'type' => 'file',
  3888. 'name' => 'shopro/decorate/page',
  3889. 'title' => '装修模板',
  3890. 'icon' => 'fa fa-circle-o',
  3891. 'url' => '',
  3892. 'condition' => '',
  3893. 'remark' => '',
  3894. 'ismenu' => 0,
  3895. 'menutype' => 'addtabs',
  3896. 'extend' => '',
  3897. 'py' => 'zxmb',
  3898. 'pinyin' => 'zhuangxiumuban',
  3899. 'weigh' => 0,
  3900. 'sublist' =>
  3901. array (
  3902. 0 =>
  3903. array (
  3904. 'type' => 'file',
  3905. 'name' => 'shopro/decorate/page/index',
  3906. 'title' => '查看',
  3907. 'icon' => 'fa fa-circle-o',
  3908. 'url' => '',
  3909. 'condition' => '',
  3910. 'remark' => '',
  3911. 'ismenu' => 0,
  3912. 'menutype' => 'addtabs',
  3913. 'extend' => '',
  3914. 'py' => 'zk',
  3915. 'pinyin' => 'zhakan',
  3916. 'weigh' => 0,
  3917. ),
  3918. 1 =>
  3919. array (
  3920. 'type' => 'file',
  3921. 'name' => 'shopro/decorate/page/detail',
  3922. 'title' => '详情',
  3923. 'icon' => 'fa fa-circle-o',
  3924. 'url' => '',
  3925. 'condition' => '',
  3926. 'remark' => '',
  3927. 'ismenu' => 0,
  3928. 'menutype' => 'addtabs',
  3929. 'extend' => '',
  3930. 'py' => 'xq',
  3931. 'pinyin' => 'xiangqing',
  3932. 'weigh' => 0,
  3933. ),
  3934. 2 =>
  3935. array (
  3936. 'type' => 'file',
  3937. 'name' => 'shopro/decorate/page/edit',
  3938. 'title' => '编辑',
  3939. 'icon' => 'fa fa-circle-o',
  3940. 'url' => '',
  3941. 'condition' => '',
  3942. 'remark' => '',
  3943. 'ismenu' => 0,
  3944. 'menutype' => 'addtabs',
  3945. 'extend' => '',
  3946. 'py' => 'bj',
  3947. 'pinyin' => 'bianji',
  3948. 'weigh' => 0,
  3949. ),
  3950. 3 =>
  3951. array (
  3952. 'type' => 'file',
  3953. 'name' => 'shopro/decorate/page/preview',
  3954. 'title' => '预览',
  3955. 'icon' => 'fa fa-circle-o',
  3956. 'url' => '',
  3957. 'condition' => '',
  3958. 'remark' => '',
  3959. 'ismenu' => 0,
  3960. 'menutype' => 'addtabs',
  3961. 'extend' => '',
  3962. 'py' => 'yl',
  3963. 'pinyin' => 'yulan',
  3964. 'weigh' => 0,
  3965. ),
  3966. ),
  3967. ),
  3968. 2 =>
  3969. array (
  3970. 'type' => 'file',
  3971. 'name' => 'shopro/decorate/designer',
  3972. 'title' => '设计师模板',
  3973. 'icon' => 'fa fa-cube',
  3974. 'url' => '',
  3975. 'condition' => '',
  3976. 'remark' => '',
  3977. 'ismenu' => 1,
  3978. 'menutype' => 'addtabs',
  3979. 'extend' => '',
  3980. 'py' => 'sjsmb',
  3981. 'pinyin' => 'shejishimuban',
  3982. 'weigh' => 0,
  3983. 'sublist' =>
  3984. array (
  3985. 0 =>
  3986. array (
  3987. 'type' => 'file',
  3988. 'name' => 'shopro/decorate/designer/index',
  3989. 'title' => '查看',
  3990. 'icon' => 'fa fa-circle-o',
  3991. 'url' => '',
  3992. 'condition' => '',
  3993. 'remark' => '',
  3994. 'ismenu' => 0,
  3995. 'menutype' => 'addtabs',
  3996. 'extend' => '',
  3997. 'py' => 'zk',
  3998. 'pinyin' => 'zhakan',
  3999. 'weigh' => 0,
  4000. ),
  4001. 1 =>
  4002. array (
  4003. 'type' => 'file',
  4004. 'name' => 'shopro/decorate/designer/use',
  4005. 'title' => '使用',
  4006. 'icon' => 'fa fa-circle-o',
  4007. 'url' => '',
  4008. 'condition' => '',
  4009. 'remark' => '',
  4010. 'ismenu' => 0,
  4011. 'menutype' => 'addtabs',
  4012. 'extend' => '',
  4013. 'py' => 'sy',
  4014. 'pinyin' => 'shiyong',
  4015. 'weigh' => 0,
  4016. ),
  4017. ),
  4018. ),
  4019. ),
  4020. ),
  4021. 10 =>
  4022. array (
  4023. 'type' => 'file',
  4024. 'name' => 'shopro/chat',
  4025. 'title' => '客服管理',
  4026. 'icon' => 'fa fa-list',
  4027. 'url' => '',
  4028. 'condition' => '',
  4029. 'remark' => '',
  4030. 'ismenu' => 1,
  4031. 'menutype' => 'addtabs',
  4032. 'extend' => '',
  4033. 'py' => 'kfgl',
  4034. 'pinyin' => 'kefuguanli',
  4035. 'weigh' => 70,
  4036. 'sublist' =>
  4037. array (
  4038. 0 =>
  4039. array (
  4040. 'type' => 'file',
  4041. 'name' => 'shopro/chat/question',
  4042. 'title' => '常见问题',
  4043. 'icon' => 'fa fa-envelope-open',
  4044. 'url' => '',
  4045. 'condition' => '',
  4046. 'remark' => '',
  4047. 'ismenu' => 1,
  4048. 'menutype' => 'addtabs',
  4049. 'extend' => '',
  4050. 'py' => 'cjwt',
  4051. 'pinyin' => 'changjianwenti',
  4052. 'weigh' => 4,
  4053. 'sublist' =>
  4054. array (
  4055. 0 =>
  4056. array (
  4057. 'type' => 'file',
  4058. 'name' => 'shopro/chat/question/index',
  4059. 'title' => '查看',
  4060. 'icon' => 'fa fa-circle-o',
  4061. 'url' => '',
  4062. 'condition' => '',
  4063. 'remark' => '',
  4064. 'ismenu' => 0,
  4065. 'menutype' => 'addtabs',
  4066. 'extend' => '',
  4067. 'py' => 'zk',
  4068. 'pinyin' => 'zhakan',
  4069. 'weigh' => 0,
  4070. ),
  4071. 1 =>
  4072. array (
  4073. 'type' => 'file',
  4074. 'name' => 'shopro/chat/question/detail',
  4075. 'title' => '详情',
  4076. 'icon' => 'fa fa-circle-o',
  4077. 'url' => '',
  4078. 'condition' => '',
  4079. 'remark' => '',
  4080. 'ismenu' => 0,
  4081. 'menutype' => 'addtabs',
  4082. 'extend' => '',
  4083. 'py' => 'xq',
  4084. 'pinyin' => 'xiangqing',
  4085. 'weigh' => 0,
  4086. ),
  4087. 2 =>
  4088. array (
  4089. 'type' => 'file',
  4090. 'name' => 'shopro/chat/question/add',
  4091. 'title' => '添加',
  4092. 'icon' => 'fa fa-circle-o',
  4093. 'url' => '',
  4094. 'condition' => '',
  4095. 'remark' => '',
  4096. 'ismenu' => 0,
  4097. 'menutype' => 'addtabs',
  4098. 'extend' => '',
  4099. 'py' => 'tj',
  4100. 'pinyin' => 'tianjia',
  4101. 'weigh' => 0,
  4102. ),
  4103. 3 =>
  4104. array (
  4105. 'type' => 'file',
  4106. 'name' => 'shopro/chat/question/edit',
  4107. 'title' => '编辑',
  4108. 'icon' => 'fa fa-circle-o',
  4109. 'url' => '',
  4110. 'condition' => '',
  4111. 'remark' => '',
  4112. 'ismenu' => 0,
  4113. 'menutype' => 'addtabs',
  4114. 'extend' => '',
  4115. 'py' => 'bj',
  4116. 'pinyin' => 'bianji',
  4117. 'weigh' => 0,
  4118. ),
  4119. 4 =>
  4120. array (
  4121. 'type' => 'file',
  4122. 'name' => 'shopro/chat/question/delete',
  4123. 'title' => '删除',
  4124. 'icon' => 'fa fa-circle-o',
  4125. 'url' => '',
  4126. 'condition' => '',
  4127. 'remark' => '',
  4128. 'ismenu' => 0,
  4129. 'menutype' => 'addtabs',
  4130. 'extend' => '',
  4131. 'py' => 'sc',
  4132. 'pinyin' => 'shanchu',
  4133. 'weigh' => 0,
  4134. ),
  4135. ),
  4136. ),
  4137. 1 =>
  4138. array (
  4139. 'type' => 'file',
  4140. 'name' => 'shopro/chat/common_word',
  4141. 'title' => '常用语',
  4142. 'icon' => 'fa fa-commenting',
  4143. 'url' => '',
  4144. 'condition' => '',
  4145. 'remark' => '',
  4146. 'ismenu' => 1,
  4147. 'menutype' => 'addtabs',
  4148. 'extend' => '',
  4149. 'py' => 'cyy',
  4150. 'pinyin' => 'changyongyu',
  4151. 'weigh' => 6,
  4152. 'sublist' =>
  4153. array (
  4154. 0 =>
  4155. array (
  4156. 'type' => 'file',
  4157. 'name' => 'shopro/chat/common_word/index',
  4158. 'title' => '查看',
  4159. 'icon' => 'fa fa-circle-o',
  4160. 'url' => '',
  4161. 'condition' => '',
  4162. 'remark' => '',
  4163. 'ismenu' => 0,
  4164. 'menutype' => 'addtabs',
  4165. 'extend' => '',
  4166. 'py' => 'zk',
  4167. 'pinyin' => 'zhakan',
  4168. 'weigh' => 0,
  4169. ),
  4170. 1 =>
  4171. array (
  4172. 'type' => 'file',
  4173. 'name' => 'shopro/chat/common_word/detail',
  4174. 'title' => '详情',
  4175. 'icon' => 'fa fa-circle-o',
  4176. 'url' => '',
  4177. 'condition' => '',
  4178. 'remark' => '',
  4179. 'ismenu' => 0,
  4180. 'menutype' => 'addtabs',
  4181. 'extend' => '',
  4182. 'py' => 'xq',
  4183. 'pinyin' => 'xiangqing',
  4184. 'weigh' => 0,
  4185. ),
  4186. 2 =>
  4187. array (
  4188. 'type' => 'file',
  4189. 'name' => 'shopro/chat/common_word/add',
  4190. 'title' => '添加',
  4191. 'icon' => 'fa fa-circle-o',
  4192. 'url' => '',
  4193. 'condition' => '',
  4194. 'remark' => '',
  4195. 'ismenu' => 0,
  4196. 'menutype' => 'addtabs',
  4197. 'extend' => '',
  4198. 'py' => 'tj',
  4199. 'pinyin' => 'tianjia',
  4200. 'weigh' => 0,
  4201. ),
  4202. 3 =>
  4203. array (
  4204. 'type' => 'file',
  4205. 'name' => 'shopro/chat/common_word/edit',
  4206. 'title' => '编辑',
  4207. 'icon' => 'fa fa-circle-o',
  4208. 'url' => '',
  4209. 'condition' => '',
  4210. 'remark' => '',
  4211. 'ismenu' => 0,
  4212. 'menutype' => 'addtabs',
  4213. 'extend' => '',
  4214. 'py' => 'bj',
  4215. 'pinyin' => 'bianji',
  4216. 'weigh' => 0,
  4217. ),
  4218. 4 =>
  4219. array (
  4220. 'type' => 'file',
  4221. 'name' => 'shopro/chat/common_word/delete',
  4222. 'title' => '删除',
  4223. 'icon' => 'fa fa-circle-o',
  4224. 'url' => '',
  4225. 'condition' => '',
  4226. 'remark' => '',
  4227. 'ismenu' => 0,
  4228. 'menutype' => 'addtabs',
  4229. 'extend' => '',
  4230. 'py' => 'sc',
  4231. 'pinyin' => 'shanchu',
  4232. 'weigh' => 0,
  4233. ),
  4234. ),
  4235. ),
  4236. 2 =>
  4237. array (
  4238. 'type' => 'file',
  4239. 'name' => 'shopro/chat/customer_service',
  4240. 'title' => '客服管理',
  4241. 'icon' => 'fa fa-user-circle',
  4242. 'url' => '',
  4243. 'condition' => '',
  4244. 'remark' => '',
  4245. 'ismenu' => 1,
  4246. 'menutype' => 'addtabs',
  4247. 'extend' => '',
  4248. 'py' => 'kfgl',
  4249. 'pinyin' => 'kefuguanli',
  4250. 'weigh' => 10,
  4251. 'sublist' =>
  4252. array (
  4253. 0 =>
  4254. array (
  4255. 'type' => 'file',
  4256. 'name' => 'shopro/chat/customer_service/index',
  4257. 'title' => '查看',
  4258. 'icon' => 'fa fa-circle-o',
  4259. 'url' => '',
  4260. 'condition' => '',
  4261. 'remark' => '',
  4262. 'ismenu' => 0,
  4263. 'menutype' => 'addtabs',
  4264. 'extend' => '',
  4265. 'py' => 'zk',
  4266. 'pinyin' => 'zhakan',
  4267. 'weigh' => 0,
  4268. ),
  4269. 1 =>
  4270. array (
  4271. 'type' => 'file',
  4272. 'name' => 'shopro/chat/customer_service/detail',
  4273. 'title' => '详情',
  4274. 'icon' => 'fa fa-circle-o',
  4275. 'url' => '',
  4276. 'condition' => '',
  4277. 'remark' => '',
  4278. 'ismenu' => 0,
  4279. 'menutype' => 'addtabs',
  4280. 'extend' => '',
  4281. 'py' => 'xq',
  4282. 'pinyin' => 'xiangqing',
  4283. 'weigh' => 0,
  4284. ),
  4285. 2 =>
  4286. array (
  4287. 'type' => 'file',
  4288. 'name' => 'shopro/chat/customer_service/add',
  4289. 'title' => '添加',
  4290. 'icon' => 'fa fa-circle-o',
  4291. 'url' => '',
  4292. 'condition' => '',
  4293. 'remark' => '',
  4294. 'ismenu' => 0,
  4295. 'menutype' => 'addtabs',
  4296. 'extend' => '',
  4297. 'py' => 'tj',
  4298. 'pinyin' => 'tianjia',
  4299. 'weigh' => 0,
  4300. ),
  4301. 3 =>
  4302. array (
  4303. 'type' => 'file',
  4304. 'name' => 'shopro/chat/customer_service/edit',
  4305. 'title' => '编辑',
  4306. 'icon' => 'fa fa-circle-o',
  4307. 'url' => '',
  4308. 'condition' => '',
  4309. 'remark' => '',
  4310. 'ismenu' => 0,
  4311. 'menutype' => 'addtabs',
  4312. 'extend' => '',
  4313. 'py' => 'bj',
  4314. 'pinyin' => 'bianji',
  4315. 'weigh' => 0,
  4316. ),
  4317. 4 =>
  4318. array (
  4319. 'type' => 'file',
  4320. 'name' => 'shopro/chat/customer_service/delete',
  4321. 'title' => '删除',
  4322. 'icon' => 'fa fa-circle-o',
  4323. 'url' => '',
  4324. 'condition' => '',
  4325. 'remark' => '',
  4326. 'ismenu' => 0,
  4327. 'menutype' => 'addtabs',
  4328. 'extend' => '',
  4329. 'py' => 'sc',
  4330. 'pinyin' => 'shanchu',
  4331. 'weigh' => 0,
  4332. ),
  4333. ),
  4334. ),
  4335. 3 =>
  4336. array (
  4337. 'type' => 'file',
  4338. 'name' => 'shopro/chat/user',
  4339. 'title' => '会话管理',
  4340. 'icon' => 'fa fa-comment-o',
  4341. 'url' => '',
  4342. 'condition' => '',
  4343. 'remark' => '',
  4344. 'ismenu' => 1,
  4345. 'menutype' => 'addtabs',
  4346. 'extend' => '',
  4347. 'py' => 'hhgl',
  4348. 'pinyin' => 'huihuaguanli',
  4349. 'weigh' => 8,
  4350. 'sublist' =>
  4351. array (
  4352. 0 =>
  4353. array (
  4354. 'type' => 'file',
  4355. 'name' => 'shopro/chat/user/index',
  4356. 'title' => '查看',
  4357. 'icon' => 'fa fa-circle-o',
  4358. 'url' => '',
  4359. 'condition' => '',
  4360. 'remark' => '',
  4361. 'ismenu' => 0,
  4362. 'menutype' => 'addtabs',
  4363. 'extend' => '',
  4364. 'py' => 'zk',
  4365. 'pinyin' => 'zhakan',
  4366. 'weigh' => 0,
  4367. ),
  4368. 1 =>
  4369. array (
  4370. 'type' => 'file',
  4371. 'name' => 'shopro/chat/user/delete',
  4372. 'title' => '删除',
  4373. 'icon' => 'fa fa-circle-o',
  4374. 'url' => '',
  4375. 'condition' => '',
  4376. 'remark' => '',
  4377. 'ismenu' => 0,
  4378. 'menutype' => 'addtabs',
  4379. 'extend' => '',
  4380. 'py' => 'sc',
  4381. 'pinyin' => 'shanchu',
  4382. 'weigh' => 0,
  4383. ),
  4384. 2 =>
  4385. array (
  4386. 'type' => 'file',
  4387. 'name' => 'shopro/chat/record/index',
  4388. 'title' => '聊天记录',
  4389. 'icon' => 'fa fa-circle-o',
  4390. 'url' => '',
  4391. 'condition' => '',
  4392. 'remark' => '',
  4393. 'ismenu' => 0,
  4394. 'menutype' => 'addtabs',
  4395. 'extend' => '',
  4396. 'py' => 'ltjl',
  4397. 'pinyin' => 'liaotianjilu',
  4398. 'weigh' => 0,
  4399. ),
  4400. ),
  4401. ),
  4402. ),
  4403. ),
  4404. 11 =>
  4405. array (
  4406. 'type' => 'file',
  4407. 'name' => 'shopro/user/user',
  4408. 'title' => '用户管理',
  4409. 'icon' => 'fa fa-user',
  4410. 'url' => '',
  4411. 'condition' => '',
  4412. 'remark' => '',
  4413. 'ismenu' => 1,
  4414. 'menutype' => 'addtabs',
  4415. 'extend' => '',
  4416. 'py' => 'yhgl',
  4417. 'pinyin' => 'yonghuguanli',
  4418. 'weigh' => 110,
  4419. 'sublist' =>
  4420. array (
  4421. 0 =>
  4422. array (
  4423. 'type' => 'file',
  4424. 'name' => 'shopro/user/user/index',
  4425. 'title' => '查看',
  4426. 'icon' => 'fa fa-circle-o',
  4427. 'url' => '',
  4428. 'condition' => '',
  4429. 'remark' => '',
  4430. 'ismenu' => 0,
  4431. 'menutype' => 'addtabs',
  4432. 'extend' => '',
  4433. 'py' => 'zk',
  4434. 'pinyin' => 'zhakan',
  4435. 'weigh' => 0,
  4436. ),
  4437. 1 =>
  4438. array (
  4439. 'type' => 'file',
  4440. 'name' => 'shopro/user/user/detail',
  4441. 'title' => '详情',
  4442. 'icon' => 'fa fa-circle-o',
  4443. 'url' => '',
  4444. 'condition' => '',
  4445. 'remark' => '',
  4446. 'ismenu' => 0,
  4447. 'menutype' => 'addtabs',
  4448. 'extend' => '',
  4449. 'py' => 'xq',
  4450. 'pinyin' => 'xiangqing',
  4451. 'weigh' => 0,
  4452. ),
  4453. 2 =>
  4454. array (
  4455. 'type' => 'file',
  4456. 'name' => 'shopro/user/user/edit',
  4457. 'title' => '编辑',
  4458. 'icon' => 'fa fa-circle-o',
  4459. 'url' => '',
  4460. 'condition' => '',
  4461. 'remark' => '',
  4462. 'ismenu' => 0,
  4463. 'menutype' => 'addtabs',
  4464. 'extend' => '',
  4465. 'py' => 'bj',
  4466. 'pinyin' => 'bianji',
  4467. 'weigh' => 0,
  4468. ),
  4469. 3 =>
  4470. array (
  4471. 'type' => 'file',
  4472. 'name' => 'shopro/user/user/delete',
  4473. 'title' => '删除',
  4474. 'icon' => 'fa fa-circle-o',
  4475. 'url' => '',
  4476. 'condition' => '',
  4477. 'remark' => '',
  4478. 'ismenu' => 0,
  4479. 'menutype' => 'addtabs',
  4480. 'extend' => '',
  4481. 'py' => 'sc',
  4482. 'pinyin' => 'shanchu',
  4483. 'weigh' => 0,
  4484. ),
  4485. 4 =>
  4486. array (
  4487. 'type' => 'file',
  4488. 'name' => 'shopro/user/user/recharge',
  4489. 'title' => '充值',
  4490. 'icon' => 'fa fa-circle-o',
  4491. 'url' => '',
  4492. 'condition' => '',
  4493. 'remark' => '',
  4494. 'ismenu' => 0,
  4495. 'menutype' => 'addtabs',
  4496. 'extend' => '',
  4497. 'py' => 'cz',
  4498. 'pinyin' => 'chongzhi',
  4499. 'weigh' => 0,
  4500. ),
  4501. 5 =>
  4502. array (
  4503. 'type' => 'file',
  4504. 'name' => 'shopro/user/user/coupon',
  4505. 'title' => '优惠券记录',
  4506. 'icon' => 'fa fa-circle-o',
  4507. 'url' => '',
  4508. 'condition' => '',
  4509. 'remark' => '',
  4510. 'ismenu' => 0,
  4511. 'menutype' => 'addtabs',
  4512. 'extend' => '',
  4513. 'py' => 'yhqjl',
  4514. 'pinyin' => 'youhuiquanjilu',
  4515. 'weigh' => 0,
  4516. ),
  4517. 6 =>
  4518. array (
  4519. 'type' => 'file',
  4520. 'name' => 'shopro/user/wallet_log/money',
  4521. 'title' => '余额记录',
  4522. 'icon' => 'fa fa-circle-o',
  4523. 'url' => '',
  4524. 'condition' => '',
  4525. 'remark' => '',
  4526. 'ismenu' => 0,
  4527. 'menutype' => 'addtabs',
  4528. 'extend' => '',
  4529. 'py' => 'yejl',
  4530. 'pinyin' => 'yuejilu',
  4531. 'weigh' => 0,
  4532. ),
  4533. 7 =>
  4534. array (
  4535. 'type' => 'file',
  4536. 'name' => 'shopro/user/wallet_log/score',
  4537. 'title' => '积分记录',
  4538. 'icon' => 'fa fa-circle-o',
  4539. 'url' => '',
  4540. 'condition' => '',
  4541. 'remark' => '',
  4542. 'ismenu' => 0,
  4543. 'menutype' => 'addtabs',
  4544. 'extend' => '',
  4545. 'py' => 'jfjl',
  4546. 'pinyin' => 'jifenjilu',
  4547. 'weigh' => 0,
  4548. ),
  4549. 8 =>
  4550. array (
  4551. 'type' => 'file',
  4552. 'name' => 'shopro/user/wallet_log/commission',
  4553. 'title' => '佣金记录',
  4554. 'icon' => 'fa fa-circle-o',
  4555. 'url' => '',
  4556. 'condition' => '',
  4557. 'remark' => '',
  4558. 'ismenu' => 0,
  4559. 'menutype' => 'addtabs',
  4560. 'extend' => '',
  4561. 'py' => 'yjjl',
  4562. 'pinyin' => 'yongjinjilu',
  4563. 'weigh' => 0,
  4564. ),
  4565. 9 =>
  4566. array (
  4567. 'type' => 'file',
  4568. 'name' => 'shopro/share/index',
  4569. 'title' => '分享记录',
  4570. 'icon' => 'fa fa-circle-o',
  4571. 'url' => '',
  4572. 'condition' => '',
  4573. 'remark' => '',
  4574. 'ismenu' => 0,
  4575. 'menutype' => 'addtabs',
  4576. 'extend' => '',
  4577. 'py' => 'fxjl',
  4578. 'pinyin' => 'fenxiangjilu',
  4579. 'weigh' => 0,
  4580. ),
  4581. ),
  4582. ),
  4583. 12 =>
  4584. array (
  4585. 'type' => 'file',
  4586. 'name' => 'shopro/dashboard',
  4587. 'title' => '总览',
  4588. 'icon' => 'fa fa-pie-chart',
  4589. 'url' => '',
  4590. 'condition' => '',
  4591. 'remark' => '',
  4592. 'ismenu' => 1,
  4593. 'menutype' => 'addtabs',
  4594. 'extend' => '',
  4595. 'py' => 'zl',
  4596. 'pinyin' => 'zonglan',
  4597. 'weigh' => 150,
  4598. 'sublist' =>
  4599. array (
  4600. 0 =>
  4601. array (
  4602. 'type' => 'file',
  4603. 'name' => 'shopro/dashboard/index',
  4604. 'title' => '查看',
  4605. 'icon' => 'fa fa-circle-o',
  4606. 'url' => '',
  4607. 'condition' => '',
  4608. 'remark' => '',
  4609. 'ismenu' => 0,
  4610. 'menutype' => 'addtabs',
  4611. 'extend' => '',
  4612. 'py' => 'zk',
  4613. 'pinyin' => 'zhakan',
  4614. 'weigh' => 0,
  4615. ),
  4616. 1 =>
  4617. array (
  4618. 'type' => 'file',
  4619. 'name' => 'shopro/dashboard/total',
  4620. 'title' => '每日统计',
  4621. 'icon' => 'fa fa-circle-o',
  4622. 'url' => '',
  4623. 'condition' => '',
  4624. 'remark' => '',
  4625. 'ismenu' => 0,
  4626. 'menutype' => 'addtabs',
  4627. 'extend' => '',
  4628. 'py' => 'mrtj',
  4629. 'pinyin' => 'meiritongji',
  4630. 'weigh' => 0,
  4631. ),
  4632. 2 =>
  4633. array (
  4634. 'type' => 'file',
  4635. 'name' => 'shopro/dashboard/chart',
  4636. 'title' => '订单统计',
  4637. 'icon' => 'fa fa-circle-o',
  4638. 'url' => '',
  4639. 'condition' => '',
  4640. 'remark' => '',
  4641. 'ismenu' => 0,
  4642. 'menutype' => 'addtabs',
  4643. 'extend' => '',
  4644. 'py' => 'ddtj',
  4645. 'pinyin' => 'dingdantongji',
  4646. 'weigh' => 0,
  4647. ),
  4648. 3 =>
  4649. array (
  4650. 'type' => 'file',
  4651. 'name' => 'shopro/dashboard/ranking',
  4652. 'title' => '排行',
  4653. 'icon' => 'fa fa-circle-o',
  4654. 'url' => '',
  4655. 'condition' => '',
  4656. 'remark' => '',
  4657. 'ismenu' => 0,
  4658. 'menutype' => 'addtabs',
  4659. 'extend' => '',
  4660. 'py' => 'ph',
  4661. 'pinyin' => 'paihang',
  4662. 'weigh' => 0,
  4663. ),
  4664. ),
  4665. ),
  4666. 13 =>
  4667. array (
  4668. 'type' => 'file',
  4669. 'name' => 'shopro/notification/config',
  4670. 'title' => '消息配置',
  4671. 'icon' => 'fa fa-bullhorn',
  4672. 'url' => '',
  4673. 'condition' => '',
  4674. 'remark' => '',
  4675. 'ismenu' => 1,
  4676. 'menutype' => 'addtabs',
  4677. 'extend' => '',
  4678. 'py' => 'xxpz',
  4679. 'pinyin' => 'xiaoxipeizhi',
  4680. 'weigh' => 20,
  4681. 'sublist' =>
  4682. array (
  4683. 0 =>
  4684. array (
  4685. 'type' => 'file',
  4686. 'name' => 'shopro/notification/config/index',
  4687. 'title' => '查看',
  4688. 'icon' => 'fa fa-circle-o',
  4689. 'url' => '',
  4690. 'condition' => '',
  4691. 'remark' => '',
  4692. 'ismenu' => 0,
  4693. 'menutype' => 'addtabs',
  4694. 'extend' => '',
  4695. 'py' => 'zk',
  4696. 'pinyin' => 'zhakan',
  4697. 'weigh' => 0,
  4698. ),
  4699. 1 =>
  4700. array (
  4701. 'type' => 'file',
  4702. 'name' => 'shopro/notification/config/detail',
  4703. 'title' => '详情',
  4704. 'icon' => 'fa fa-circle-o',
  4705. 'url' => '',
  4706. 'condition' => '',
  4707. 'remark' => '',
  4708. 'ismenu' => 0,
  4709. 'menutype' => 'addtabs',
  4710. 'extend' => '',
  4711. 'py' => 'xq',
  4712. 'pinyin' => 'xiangqing',
  4713. 'weigh' => 0,
  4714. ),
  4715. 2 =>
  4716. array (
  4717. 'type' => 'file',
  4718. 'name' => 'shopro/notification/config/edit',
  4719. 'title' => '编辑',
  4720. 'icon' => 'fa fa-circle-o',
  4721. 'url' => '',
  4722. 'condition' => '',
  4723. 'remark' => '',
  4724. 'ismenu' => 0,
  4725. 'menutype' => 'addtabs',
  4726. 'extend' => '',
  4727. 'py' => 'bj',
  4728. 'pinyin' => 'bianji',
  4729. 'weigh' => 0,
  4730. ),
  4731. 3 =>
  4732. array (
  4733. 'type' => 'file',
  4734. 'name' => 'shopro/notification/config/setstatus',
  4735. 'title' => '设置状态',
  4736. 'icon' => 'fa fa-circle-o',
  4737. 'url' => '',
  4738. 'condition' => '',
  4739. 'remark' => '',
  4740. 'ismenu' => 0,
  4741. 'menutype' => 'addtabs',
  4742. 'extend' => '',
  4743. 'py' => 'szzt',
  4744. 'pinyin' => 'shezhizhuangtai',
  4745. 'weigh' => 0,
  4746. ),
  4747. 4 =>
  4748. array (
  4749. 'type' => 'file',
  4750. 'name' => 'shopro/notification/config/gettemplateid',
  4751. 'title' => '获取模板',
  4752. 'icon' => 'fa fa-circle-o',
  4753. 'url' => '',
  4754. 'condition' => '',
  4755. 'remark' => '',
  4756. 'ismenu' => 0,
  4757. 'menutype' => 'addtabs',
  4758. 'extend' => '',
  4759. 'py' => 'hqmb',
  4760. 'pinyin' => 'huoqumoban',
  4761. 'weigh' => 0,
  4762. ),
  4763. ),
  4764. ),
  4765. 14 =>
  4766. array (
  4767. 'type' => 'file',
  4768. 'name' => 'shopro/wechat',
  4769. 'title' => '微信管理',
  4770. 'icon' => 'fa fa-wechat',
  4771. 'url' => '',
  4772. 'condition' => '',
  4773. 'remark' => '',
  4774. 'ismenu' => 1,
  4775. 'menutype' => 'addtabs',
  4776. 'extend' => '',
  4777. 'py' => 'wxgl',
  4778. 'pinyin' => 'weixinguanli',
  4779. 'weigh' => 60,
  4780. 'sublist' =>
  4781. array (
  4782. 0 =>
  4783. array (
  4784. 'type' => 'file',
  4785. 'name' => 'shopro/wechat/config',
  4786. 'title' => '微信配置',
  4787. 'icon' => 'fa fa-comments',
  4788. 'url' => '',
  4789. 'condition' => '',
  4790. 'remark' => '',
  4791. 'ismenu' => 1,
  4792. 'menutype' => 'addtabs',
  4793. 'extend' => '',
  4794. 'py' => 'wxpz',
  4795. 'pinyin' => 'weixinpeizhi',
  4796. 'weigh' => 10,
  4797. 'sublist' =>
  4798. array (
  4799. 0 =>
  4800. array (
  4801. 'type' => 'file',
  4802. 'name' => 'shopro/wechat/config/index',
  4803. 'title' => '配置',
  4804. 'icon' => 'fa fa-circle-o',
  4805. 'url' => '',
  4806. 'condition' => '',
  4807. 'remark' => '',
  4808. 'ismenu' => 0,
  4809. 'menutype' => 'addtabs',
  4810. 'extend' => '',
  4811. 'py' => 'pz',
  4812. 'pinyin' => 'peizhi',
  4813. 'weigh' => 0,
  4814. ),
  4815. ),
  4816. ),
  4817. 1 =>
  4818. array (
  4819. 'type' => 'file',
  4820. 'name' => 'shopro/wechat/reply',
  4821. 'title' => '自动回复',
  4822. 'icon' => 'fa fa-send',
  4823. 'url' => '',
  4824. 'condition' => '',
  4825. 'remark' => '',
  4826. 'ismenu' => 1,
  4827. 'menutype' => 'addtabs',
  4828. 'extend' => '',
  4829. 'py' => 'zdhf',
  4830. 'pinyin' => 'zidonghuifu',
  4831. 'weigh' => 8,
  4832. 'sublist' =>
  4833. array (
  4834. 0 =>
  4835. array (
  4836. 'type' => 'file',
  4837. 'name' => 'shopro/wechat/reply/index',
  4838. 'title' => '查看',
  4839. 'icon' => 'fa fa-circle-o',
  4840. 'url' => '',
  4841. 'condition' => '',
  4842. 'remark' => '',
  4843. 'ismenu' => 0,
  4844. 'menutype' => 'addtabs',
  4845. 'extend' => '',
  4846. 'py' => 'zk',
  4847. 'pinyin' => 'zhakan',
  4848. 'weigh' => 0,
  4849. ),
  4850. 1 =>
  4851. array (
  4852. 'type' => 'file',
  4853. 'name' => 'shopro/wechat/reply/detail',
  4854. 'title' => '详情',
  4855. 'icon' => 'fa fa-circle-o',
  4856. 'url' => '',
  4857. 'condition' => '',
  4858. 'remark' => '',
  4859. 'ismenu' => 0,
  4860. 'menutype' => 'addtabs',
  4861. 'extend' => '',
  4862. 'py' => 'xq',
  4863. 'pinyin' => 'xiangqing',
  4864. 'weigh' => 0,
  4865. ),
  4866. 2 =>
  4867. array (
  4868. 'type' => 'file',
  4869. 'name' => 'shopro/wechat/reply/add',
  4870. 'title' => '添加',
  4871. 'icon' => 'fa fa-circle-o',
  4872. 'url' => '',
  4873. 'condition' => '',
  4874. 'remark' => '',
  4875. 'ismenu' => 0,
  4876. 'menutype' => 'addtabs',
  4877. 'extend' => '',
  4878. 'py' => 'tj',
  4879. 'pinyin' => 'tianjia',
  4880. 'weigh' => 0,
  4881. ),
  4882. 3 =>
  4883. array (
  4884. 'type' => 'file',
  4885. 'name' => 'shopro/wechat/reply/edit',
  4886. 'title' => '编辑',
  4887. 'icon' => 'fa fa-circle-o',
  4888. 'url' => '',
  4889. 'condition' => '',
  4890. 'remark' => '',
  4891. 'ismenu' => 0,
  4892. 'menutype' => 'addtabs',
  4893. 'extend' => '',
  4894. 'py' => 'bj',
  4895. 'pinyin' => 'bianji',
  4896. 'weigh' => 0,
  4897. ),
  4898. 4 =>
  4899. array (
  4900. 'type' => 'file',
  4901. 'name' => 'shopro/wechat/reply/delete',
  4902. 'title' => '删除',
  4903. 'icon' => 'fa fa-circle-o',
  4904. 'url' => '',
  4905. 'condition' => '',
  4906. 'remark' => '',
  4907. 'ismenu' => 0,
  4908. 'menutype' => 'addtabs',
  4909. 'extend' => '',
  4910. 'py' => 'sc',
  4911. 'pinyin' => 'shanchu',
  4912. 'weigh' => 0,
  4913. ),
  4914. ),
  4915. ),
  4916. 2 =>
  4917. array (
  4918. 'type' => 'file',
  4919. 'name' => 'shopro/wechat/menu',
  4920. 'title' => '自定义菜单',
  4921. 'icon' => 'fa fa-server',
  4922. 'url' => '',
  4923. 'condition' => '',
  4924. 'remark' => '',
  4925. 'ismenu' => 1,
  4926. 'menutype' => 'addtabs',
  4927. 'extend' => '',
  4928. 'py' => 'zdycd',
  4929. 'pinyin' => 'zidingyicaidan',
  4930. 'weigh' => 6,
  4931. 'sublist' =>
  4932. array (
  4933. 0 =>
  4934. array (
  4935. 'type' => 'file',
  4936. 'name' => 'shopro/wechat/menu/index',
  4937. 'title' => '查看',
  4938. 'icon' => 'fa fa-circle-o',
  4939. 'url' => '',
  4940. 'condition' => '',
  4941. 'remark' => '',
  4942. 'ismenu' => 0,
  4943. 'menutype' => 'addtabs',
  4944. 'extend' => '',
  4945. 'py' => 'zk',
  4946. 'pinyin' => 'zhakan',
  4947. 'weigh' => 0,
  4948. ),
  4949. 1 =>
  4950. array (
  4951. 'type' => 'file',
  4952. 'name' => 'shopro/wechat/menu/detail',
  4953. 'title' => '详情',
  4954. 'icon' => 'fa fa-circle-o',
  4955. 'url' => '',
  4956. 'condition' => '',
  4957. 'remark' => '',
  4958. 'ismenu' => 0,
  4959. 'menutype' => 'addtabs',
  4960. 'extend' => '',
  4961. 'py' => 'xq',
  4962. 'pinyin' => 'xiangqing',
  4963. 'weigh' => 0,
  4964. ),
  4965. 2 =>
  4966. array (
  4967. 'type' => 'file',
  4968. 'name' => 'shopro/wechat/menu/add',
  4969. 'title' => '添加',
  4970. 'icon' => 'fa fa-circle-o',
  4971. 'url' => '',
  4972. 'condition' => '',
  4973. 'remark' => '',
  4974. 'ismenu' => 0,
  4975. 'menutype' => 'addtabs',
  4976. 'extend' => '',
  4977. 'py' => 'tj',
  4978. 'pinyin' => 'tianjia',
  4979. 'weigh' => 0,
  4980. ),
  4981. 3 =>
  4982. array (
  4983. 'type' => 'file',
  4984. 'name' => 'shopro/wechat/menu/edit',
  4985. 'title' => '编辑',
  4986. 'icon' => 'fa fa-circle-o',
  4987. 'url' => '',
  4988. 'condition' => '',
  4989. 'remark' => '',
  4990. 'ismenu' => 0,
  4991. 'menutype' => 'addtabs',
  4992. 'extend' => '',
  4993. 'py' => 'bj',
  4994. 'pinyin' => 'bianji',
  4995. 'weigh' => 0,
  4996. ),
  4997. 4 =>
  4998. array (
  4999. 'type' => 'file',
  5000. 'name' => 'shopro/wechat/menu/delete',
  5001. 'title' => '删除',
  5002. 'icon' => 'fa fa-circle-o',
  5003. 'url' => '',
  5004. 'condition' => '',
  5005. 'remark' => '',
  5006. 'ismenu' => 0,
  5007. 'menutype' => 'addtabs',
  5008. 'extend' => '',
  5009. 'py' => 'sc',
  5010. 'pinyin' => 'shanchu',
  5011. 'weigh' => 0,
  5012. ),
  5013. 5 =>
  5014. array (
  5015. 'type' => 'file',
  5016. 'name' => 'shopro/wechat/menu/publish',
  5017. 'title' => '发布',
  5018. 'icon' => 'fa fa-circle-o',
  5019. 'url' => '',
  5020. 'condition' => '',
  5021. 'remark' => '',
  5022. 'ismenu' => 0,
  5023. 'menutype' => 'addtabs',
  5024. 'extend' => '',
  5025. 'py' => 'fb',
  5026. 'pinyin' => 'fabu',
  5027. 'weigh' => 0,
  5028. ),
  5029. 6 =>
  5030. array (
  5031. 'type' => 'file',
  5032. 'name' => 'shopro/wechat/menu/copy',
  5033. 'title' => '复制',
  5034. 'icon' => 'fa fa-circle-o',
  5035. 'url' => '',
  5036. 'condition' => '',
  5037. 'remark' => '',
  5038. 'ismenu' => 0,
  5039. 'menutype' => 'addtabs',
  5040. 'extend' => '',
  5041. 'py' => 'fz',
  5042. 'pinyin' => 'fuzhi',
  5043. 'weigh' => 0,
  5044. ),
  5045. ),
  5046. ),
  5047. 3 =>
  5048. array (
  5049. 'type' => 'file',
  5050. 'name' => 'shopro/wechat/material',
  5051. 'title' => '素材管理',
  5052. 'icon' => 'fa fa-folder-open',
  5053. 'url' => '',
  5054. 'condition' => '',
  5055. 'remark' => '',
  5056. 'ismenu' => 1,
  5057. 'menutype' => 'addtabs',
  5058. 'extend' => '',
  5059. 'py' => 'scgl',
  5060. 'pinyin' => 'sucaiguanli',
  5061. 'weigh' => 4,
  5062. 'sublist' =>
  5063. array (
  5064. 0 =>
  5065. array (
  5066. 'type' => 'file',
  5067. 'name' => 'shopro/wechat/material/index',
  5068. 'title' => '查看',
  5069. 'icon' => 'fa fa-circle-o',
  5070. 'url' => '',
  5071. 'condition' => '',
  5072. 'remark' => '',
  5073. 'ismenu' => 0,
  5074. 'menutype' => 'addtabs',
  5075. 'extend' => '',
  5076. 'py' => 'zk',
  5077. 'pinyin' => 'zhakan',
  5078. 'weigh' => 0,
  5079. ),
  5080. 1 =>
  5081. array (
  5082. 'type' => 'file',
  5083. 'name' => 'shopro/wechat/material/detail',
  5084. 'title' => '详情',
  5085. 'icon' => 'fa fa-circle-o',
  5086. 'url' => '',
  5087. 'condition' => '',
  5088. 'remark' => '',
  5089. 'ismenu' => 0,
  5090. 'menutype' => 'addtabs',
  5091. 'extend' => '',
  5092. 'py' => 'xq',
  5093. 'pinyin' => 'xiangqing',
  5094. 'weigh' => 0,
  5095. ),
  5096. 2 =>
  5097. array (
  5098. 'type' => 'file',
  5099. 'name' => 'shopro/wechat/material/add',
  5100. 'title' => '添加',
  5101. 'icon' => 'fa fa-circle-o',
  5102. 'url' => '',
  5103. 'condition' => '',
  5104. 'remark' => '',
  5105. 'ismenu' => 0,
  5106. 'menutype' => 'addtabs',
  5107. 'extend' => '',
  5108. 'py' => 'tj',
  5109. 'pinyin' => 'tianjia',
  5110. 'weigh' => 0,
  5111. ),
  5112. 3 =>
  5113. array (
  5114. 'type' => 'file',
  5115. 'name' => 'shopro/wechat/material/edit',
  5116. 'title' => '编辑',
  5117. 'icon' => 'fa fa-circle-o',
  5118. 'url' => '',
  5119. 'condition' => '',
  5120. 'remark' => '',
  5121. 'ismenu' => 0,
  5122. 'menutype' => 'addtabs',
  5123. 'extend' => '',
  5124. 'py' => 'bj',
  5125. 'pinyin' => 'bianji',
  5126. 'weigh' => 0,
  5127. ),
  5128. 4 =>
  5129. array (
  5130. 'type' => 'file',
  5131. 'name' => 'shopro/wechat/material/delete',
  5132. 'title' => '删除',
  5133. 'icon' => 'fa fa-circle-o',
  5134. 'url' => '',
  5135. 'condition' => '',
  5136. 'remark' => '',
  5137. 'ismenu' => 0,
  5138. 'menutype' => 'addtabs',
  5139. 'extend' => '',
  5140. 'py' => 'sc',
  5141. 'pinyin' => 'shanchu',
  5142. 'weigh' => 0,
  5143. ),
  5144. ),
  5145. ),
  5146. ),
  5147. ),
  5148. ),
  5149. ),
  5150. );