| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- // saas版商城菜单权限
- return [
- [
- 'key' => 'goods',
- 'title' => '商品',
- 'children' => [
- [
- 'key' => 'goodsList',
- 'title' => '商品列表',
- 'children' => [
- [
- 'key' => 'goodsAdd',
- 'title' => '添加',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsDelete',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsBatchEdit',
- 'title' => '批量设置',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsCsvUpload',
- 'title' => 'CSV上传',
- 'type' => 'action'
- ],
- ]
- ],
- [
- 'key' => 'typesHotelGoods',
- 'title' => '酒店商品',
- 'children' => [
- [
- 'key' => 'goodsAdd',
- 'title' => '添加',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsDelete',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsBatchEdit',
- 'title' => '批量设置',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsCsvUpload',
- 'title' => 'CSV上传',
- 'type' => 'action'
- ],
- ]
- ],
- // [
- // 'key' => 'typesServiceGoods',
- // 'title' => '服务预约商品列表',
- // 'children' => [
- // [
- // 'key' => 'goodsAdd',
- // 'title' => '添加',
- // 'type' => 'action'
- // ],
- // [
- // 'key' => 'goodsEdit',
- // 'title' => '编辑',
- // 'type' => 'action'
- // ],
- // [
- // 'key' => 'goodsDelete',
- // 'title' => '删除',
- // 'type' => 'action'
- // ],
- // [
- // 'key' => 'goodsBatchEdit',
- // 'title' => '批量设置',
- // 'type' => 'action'
- // ],
- // [
- // 'key' => 'goodsCsvUpload',
- // 'title' => 'CSV上传',
- // 'type' => 'action'
- // ],
- // ]
- // ],
- [
- 'key' => 'typesVirtualGoods',
- 'title' => '虚拟商品',
- 'children' => [
- [
- 'key' => 'goodsAdd',
- 'title' => '添加',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsDelete',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsBatchEdit',
- 'title' => '批量设置',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsCsvUpload',
- 'title' => 'CSV上传',
- 'type' => 'action'
- ],
- ]
- ],
- [
- 'key' => 'catList',
- 'title' => '分类列表',
- 'children' => [
- [
- 'key' => 'catEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'catAdd',
- 'title' => '新增',
- 'type' => 'action'
- ],
- [
- 'key' => 'catBatchEdit',
- 'title' => '批量操作',
- 'type' => 'action'
- ],
- ]
- ],
- [
- 'key' => 'attrList',
- 'title' => '规格库',
- 'children' => [
- [
- 'key' => 'attrEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'attrDelete',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'attrAdd',
- 'title' => '添加',
- 'type' => 'action'
- ],
- [
- 'key' => 'attrBatchDelete',
- 'title' => '批量删除',
- 'type' => 'action'
- ],
- ]
- ],
- [
- 'key' => 'goodsBrand',
- 'title' => '品牌列表'
- ],
- [
- 'key' => 'goodsRecommendKeyword',
- 'title' => '推荐发现关键词',
- 'children' => [
- [
- 'key' => 'recommendKeywordAdd',
- 'title' => '添加',
- 'type' => 'action'
- ],
- [
- 'key' => 'recommendKeywordEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'recommendKeywordDel',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'recommendKeywordBatchDel',
- 'title' => '批量设置',
- 'type' => 'action'
- ],
- ]
- ],
- ]
- ],
- [
- 'key' => 'userManage',
- 'title' => '用户',
- 'children' => [
- [
- 'key' => 'userManagement',
- 'title' => '用户管理',
- 'children' => [
- [
- 'key' => 'userManagementView',
- 'title' => '查看',
- 'type' => 'action',
- ],
- [
- 'key' => 'userManagementDetails',
- 'title' => '用户详情',
- 'children' => [
- [
- 'key' => 'userManagementDetailsEditUser',
- 'title' => '编辑用户',
- 'type' => 'action',
- ],
- [
- 'key' => 'userManagementDetailsSetProperty',
- 'title' => '设置积分/余额',
- 'type' => 'action',
- ],
- ],
- ]
- ],
- ],
- [
- 'key' => 'memberManage',
- 'title' => '会员等级',
- 'children' => [
- [
- 'key' => 'memberLevel',
- 'title' => '会员等级',
- 'children' => [
- [
- 'key' => 'memberLevelAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'memberLevelEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'memberLevelDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'levelOrderList',
- 'title' => '购买记录'
- ],
- [
- 'key' => 'growthValueSetting',
- 'title' => '成长值设置'
- ],
- ],
- ],
- [
- 'key' => 'userAdmin',
- 'title' => '手机端管理员',
- 'children' => [
- [
- 'key' => 'userAdminAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'userAdminDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'userShareLevel',
- 'title' => '分销商会员等级',
- 'children' => [],
- ],
- [
- 'key' => 'userLabel',
- 'title' => '用户标签',
- 'children' => [],
- ]
- ]
- ],
- [
- 'key' => 'orderManage',
- 'title' => '订单',
- 'children' => [
- [
- 'key' => 'orderList',
- 'title' => '订单列表',
- 'children' => [
- [
- 'key' => 'orderListSend',
- 'title' => '发货',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderListCancel',
- 'title' => '取消',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderListDetails',
- 'title' => '详情',
- ],
- [
- 'key' => 'orderListPrint',
- 'title' => '打印',
- ],
- [
- 'key' => 'orderListReceiptPrint',
- 'title' => '小票打印',
- ],
- [
- 'key' => 'orderListAddRemark',
- 'title' => '添加备注',
- ],
- [
- 'key' => 'orderListMoveRecycle',
- 'title' => '移入回收站',
- ],
- [
- 'key' => 'orderListExpressInfo',
- 'title' => '物流信息',
- ],
- [
- 'key' => 'orderListTransferOrder',
- 'title' => '转单',
- ],
- [
- 'key' => 'orderListAgree',
- 'title' => '同意',
- ],
- ],
- ],
- [
- 'key' => 'cashierOrderList',
- 'title' => '收银台列表',
- 'children' => [
- [
- 'key' => 'orderListSend',
- 'title' => '发货',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderListCancel',
- 'title' => '取消',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderListDetails',
- 'title' => '详情',
- ],
- [
- 'key' => 'orderListPrint',
- 'title' => '打印',
- ],
- [
- 'key' => 'orderListReceiptPrint',
- 'title' => '小票打印',
- ],
- [
- 'key' => 'orderListAddRemark',
- 'title' => '添加备注',
- ],
- [
- 'key' => 'orderListMoveRecycle',
- 'title' => '移入回收站',
- ],
- [
- 'key' => 'orderListExpressInfo',
- 'title' => '物流信息',
- ],
- [
- 'key' => 'orderListTransferOrder',
- 'title' => '转单',
- ],
- [
- 'key' => 'orderListAgree',
- 'title' => '同意',
- ],
- ],
- ],
- [
- 'key' => 'orderOfflineList',
- 'title' => '自提订单',
- 'children' => [
- [
- 'key' => 'orderOfflineListVerify',
- 'title' => '核销',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderOfflineListCancel',
- 'title' => '取消',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderOfflineListDetails',
- 'title' => '详情',
- ],
- [
- 'key' => 'orderOfflineListPrint',
- 'title' => '打印',
- ],
- [
- 'key' => 'orderOfflineListReceiptPrint',
- 'title' => '小票打印',
- ],
- [
- 'key' => 'orderOfflineListAddRemark',
- 'title' => '添加备注',
- ],
- [
- 'key' => 'orderOfflineListMoveRecycle',
- 'title' => '移入回收站',
- ],
- ],
- ],
- [
- 'key' => 'orderRefundList',
- 'title' => '售后订单',
- 'children' => [
- [
- 'key' => 'orderRefundListConfirmReceive',
- 'title' => '确认收货',
- ],
- [
- 'key' => 'orderRefundListRefuseExchange',
- 'title' => '拒绝换货',
- ],
- [
- 'key' => 'orderRefundListAgreeRefund',
- 'title' => '同意退货',
- ],
- [
- 'key' => 'orderRefundListRefuseRefund',
- 'title' => '拒绝退货',
- ],
- [
- 'key' => 'orderRefundListAgreeExchange',
- 'title' => '同意换货',
- ],
- ],
- ],
- [
- 'key' => 'orderSameCityList',
- 'title' => '同城订单',
- 'children' => [
- [
- 'key' => 'orderSameCityListCancel',
- 'title' => '取消',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderSameCityListDetails',
- 'title' => '详情',
- ],
- [
- 'key' => 'orderSameCityListPrint',
- 'title' => '打印',
- ],
- [
- 'key' => 'orderSameCityListReceiptPrint',
- 'title' => '小票打印',
- ],
- [
- 'key' => 'orderSameCityListAddRemark',
- 'title' => '添加备注',
- ],
- [
- 'key' => 'orderSameCityListMoveRecycle',
- 'title' => '移入回收站',
- ],
- [
- 'key' => 'orderSameCityListAgree',
- 'title' => '同意',
- ],
- ],
- ],
- [
- 'key' => 'orderScanList',
- 'title' => '当面付订单',
- ],
- [
- 'key' => 'orderComment',
- 'title' => '评价管理',
- 'children' => [
- [
- 'key' => 'orderCommentRely',
- 'title' => '回复',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderCommentHide',
- 'title' => '隐藏',
- 'type' => 'action',
- ],
- [
- 'key' => 'orderCommentDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- ]
- ],
- [
- 'key' => 'storeProfit',
- 'title' => '财务',
- 'children' => [
- [
- 'key' => 'financialList',
- 'title' => '财务列表'
- ],
- [
- 'key' => 'orderCostProfit',
- 'title' => '订单列表'
- ],
- [
- 'key' => 'mdPrice',
- 'title' => '门店佣金'
- ],
- [
- 'key' => 'userPrice',
- 'title' => '会员佣金'
- ],
- [
- 'key' => 'userMoney',
- 'title' => '用户余额'
- ],
- [
- 'key' => 'offlineTransferLog',
- 'title' => '线下转账'
- ],
- [
- 'key' => 'invoiceManage',
- 'title' => '发票管理'
- ],
- [
- 'key' => 'userPriceTotal',
- 'title' => '用户佣金明细'
- ],
- ],
- ],
- [
- 'key' => 'statistic',
- 'title' => '统计',
- 'children' => [
- [
- 'key' => 'dataStatistic',
- 'title' => '数据统计',
- 'children' => [
- ],
- ],
- [
- 'key' => 'goodsStatistic',
- 'title' => '商品销售统计',
- 'children' => [
- ],
- ],
- [
- 'key' => 'orderSaleGoodsStatistic',
- 'title' => '订单商品统计',
- ],
- [
- 'key' => 'dashboardRecharge',
- 'title' => '会员储值',
- ],
- [
- 'key' => 'dashboardUser',
- 'title' => '会员分析',
- ],
- [
- 'key' => 'dashboardGoodsNum',
- 'title' => '库存分析',
- ],
- [
- 'key' => 'dashboardGoodsSale',
- 'title' => '热销商品',
- ],
- [
- 'key' => 'dashboardSales',
- 'title' => '销量分析',
- ],
- [
- 'key' => 'dashboardSalesAnalysis',
- 'title' => '销售分析',
- ],
- [
- 'key' => 'dashboardActiveUser',
- 'title' => '活跃用户',
- ],
- [
- 'key' => 'expiredsProducts',
- 'title' => '临期产品',
- ],
- ]
- ],
- [
- 'key' => 'setting',
- 'title' => '系统',
- 'children' => [
- [
- 'key' => 'settingEdit',
- 'title' => '功能设置',
- 'children' => [
- [
- 'key' => 'store',
- 'title' => '基础设置',
- 'type' => 'action',
- 'children' => [
- [
- 'key' => 'basicEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- ]
- ],
- [
- 'key' => 'wechat',
- 'title' => '微信设置',
- 'type' => 'action',
- 'children' => [
- [
- 'key' => 'weixinEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- ]
- ],
- [
- 'key' => 'display',
- 'title' => '显示设置',
- 'type' => 'action',
- 'children' => [
- [
- 'key' => 'displayEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- ]
- ],
- [
- 'key' => 'kuaidi100',
- 'title' => '地址识别',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'rulesSetting',
- 'title' => '规则设置',
- 'children' => [
- [
- 'key' => 'postageList',
- 'title' => '运费规则',
- 'children' => [
- [
- 'key' => 'postageAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'postageEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'postageDelele',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'freeDelivery',
- 'title' => '包邮规则',
- 'children' => [
- [
- 'key' => 'freeDeliveryAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'freeDeliveryEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'freeDeliveryDelele',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'territorial',
- 'title' => '区域限购',
- 'children' => [
- [
- 'key' => 'areaEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'areaAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'areaDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'offerPrice',
- 'title' => '起送规则',
- 'children' => [
- [
- 'key' => 'offerPriceAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'offerPriceEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'offerPriceDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'refundAddress',
- 'title' => '退货地址设置',
- 'children' => [
- [
- 'key' => 'refundAddressAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'refundAddressEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'refundAddressDelele',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'distributionRules',
- 'title' => '配送规则',
- 'children' => [
- [
- 'key' => 'distributionRulesAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'distributionRulesEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'distributionRulesDelele',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- ],
- ],
- [
- 'key' => 'printSetting',
- 'title' => '打印设置',
- 'children' => [
- [
- 'key' => 'express',
- 'title' => '电子面单',
- 'children' => [
- [
- 'key' => 'expressAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'expressEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'expressDelele',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'cloud',
- 'title' => '云打印设置',
- 'children' => [
- [
- 'key' => 'cloudAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'cloudEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'cloudDelele',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'printer',
- 'title' => '小票打印',
- 'children' => [
- [
- 'key' => 'printerAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'printerEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'printerDelele',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'printOrderSetting',
- 'title' => '订单打印设置',
- 'children' => [
- [
- 'key' => 'printOrderSettingEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- ],
- ],
- ]
- ],
- [
- 'key' => 'noticeConfig',
- 'title' => '消息通知',
- ],
- [
- 'key' => 'GoodsReviewed',
- 'title' => '小程序提审商品',
- ],
- [
- 'key' => 'authManage',
- 'title' => '员工权限',
- 'children' => [
- [
- 'key' => 'accountManage',
- 'title' => '账号管理',
- 'children' => [
- [
- 'key' => 'accountManageAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'accountManageEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'accountManageDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'roleManage',
- 'title' => '角色管理',
- 'children' => [
- [
- 'key' => 'roleManageEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'roleManageAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'roleManageDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- ]
- ],
- [
- 'key' => 'payConfigOther',
- 'title' => '支付配置',
- ],
- [
- 'key' => 'payConfig',
- 'title' => '支付配置',
- 'children' => [
- [
- 'key' => 'wechatConfig',
- 'title' => '微信配置',
- ],
- [
- 'key' => 'alipayConfig',
- 'title' => '支付宝配置',
- ],
- ],
- ],
- [
- 'key' => 'CashStroeConf',
- 'title' => '提现设置',
- 'children' => [
- [
- 'key' => 'wechatCashConfig',
- 'title' => '微信提现配置'
- ],
- [
- 'key' => 'platformWechatCashConfig',
- 'title' => '平台微信提现配置'
- ],
- [
- 'key' => 'alipayCertConfig',
- 'title' => '支付宝配置'
- ],
- ]
- ],
- [
- 'key' => 'baseConfig',
- 'title' => '基础设置',
- 'children' => [
- [
- 'key' => 'douyinConfig',
- 'title' => '抖音配置',
- ],
- [
- 'key' => 'uploadConfig',
- 'title' => '上传配置',
- ],
- [
- 'key' => 'runOverConfig',
- 'title' => '越限配置',
- ],
- [
- 'key' => 'SettingCopyright',
- 'title' => '版权设置',
- ],
- ],
- ],
- // [
- // 'key' => 'appSetting',
- // 'title' => 'APP设置',
- // ],
- [
- 'key' => 'SettingVoiceBroadcast',
- 'title' => '收款播报设置',
- ],
- [
- 'key' => 'ocrSetting',
- 'title' => 'OCR配置',
- ],
- [
- 'key' => 'saasLgSetting',
- 'title' => '灵工配置',
- ],
- [
- 'key' => 'uploadWechat',
- 'title' => '小程序发布',
- ],
- [
- 'key' => 'storeUpgrade',
- 'title' => '系统升级',
- ],
- [
- 'key' => 'timerTaskCopy',
- 'title' => '定时任务',
- ],
- // [
- // 'key' => 'cityDelivery',
- // 'title' => '同城配送',
- // 'children' => [
- // [
- // 'key' => 'delivery',
- // 'title' => '配送设置',
- // ],
- // ]
- // ],
- [
- 'key' => 'mapSetting',
- 'title' => '地图设置',
- ],
- [
- 'key' => 'migration',
- 'title' => '店铺迁移',
- ],
- ]
- ],
- [
- 'key' => 'newDiy',
- 'title' => '装修',
- ],
- [
- 'key' => 'channel',
- 'title' => '渠道',
- 'children' => [
- [
- 'key' => 'appletManagementWechat',
- 'title' => '微信小程序',
- 'children' => [
- [
- 'key' => 'wechatConfig',
- 'title' => '参数配置'
- ],
- [
- 'key' => 'uploadWechat',
- 'title' => '小程序发布',
- ],
- ]
- ],
- [
- 'key' => 'h5Management',
- 'title' => '手机H5',
- 'children' => [
- [
- 'key' => 'h5Management',
- 'title' => '入口地址'
- ]
- ]
- ],
- [
- 'key' => 'wechatAccountManagement',
- 'title' => '微信公众号',
- 'children' => [
- [
- 'key' => 'wechatAccountConfig',
- 'title' => '参数设置'
- ],
- [
- 'key' => 'wechatAccountMenuConfig',
- 'title' => '菜单设置'
- ]
- ]
- ],
- [
- 'key' => 'appletManagementAlipay',
- 'title' => '支付宝小程序',
- 'children' => [
- [
- 'key' => 'alipayConfig',
- 'title' => '基础配置'
- ],
- [
- 'key' => 'uploadAlipay',
- 'title' => '小程序发布',
- ],
- ]
- ],
- [
- 'key' => 'appManagement',
- 'title' => 'App端',
- 'children' => [
- [
- 'key' => 'appConfig',
- 'title' => 'APP基础设置'
- ],
- [
- 'key' => 'appPayConfig',
- 'title' => '支付设置'
- ]
- ]
- ],
- ]
- ],
- [
- 'key' => 'marketingManage',
- 'title' => '应用',
- 'children' => [
- [
- 'key' => 'marketingCategory',
- 'title' => '营销类',
- 'children' => [
- [
- 'key' => 'material',
- 'title' => '一键发圈',
- 'children' => [
- [
- 'key' => 'materialList',
- 'title' => '素材管理',
- 'children' => [],
- ],
- [
- 'key' => 'materialCategory',
- 'title' => '素材分类',
- 'children' => [],
- ],
- [
- 'key' => 'materialQrcode',
- 'title' => '素材海报',
- 'children' => [],
- ],
- ],
- ],
- [
- 'key' => 'ponpManage',
- 'title' => '大转盘抽奖',
- 'children' => [
- [
- 'key' => 'ponpIndex',
- 'title' => '大转盘配置',
- 'children' => [],
- ],
- [
- 'key' => 'ponpLogList',
- 'title' => '抽奖记录',
- 'children' => [],
- ],
- ],
- ],
- [
- 'key' => 'couponManage',
- 'title' => '优惠券',
- 'children' => [
- [
- 'key' => 'couponList',
- 'title' => '优惠券列表',
- 'children' => [
- [
- 'key' => 'couponListEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponListAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponListBatchDelete',
- 'title' => '批量删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponListDetails',
- 'title' => '详情',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponListQrcode',
- 'title' => '小程序二维码',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponListSend',
- 'title' => '发放',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'couponAutoSendManage',
- 'title' => '发放规则',
- 'children' => [
- [
- 'key' => 'couponAutoSendManageEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponAutoSendManageAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponAutoSendManageDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'couponAutoSendManageBatchDelete',
- 'title' => '批量删除',
- 'type' => 'action',
- ],
- ],
- ],
- ],
- ],
- [
- 'key' => 'cardCouponManage',
- 'title' => '卡券管理',
- 'children' => [
- [
- 'key' => 'cardCouponView',
- 'title' => '查看',
- 'type' => 'action',
- ],
- [
- 'key' => 'cardCouponEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'cardCouponAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'cardCouponDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'cardCouponBatchDelete',
- 'title' => '批量删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'verifyCard1',
- 'title' => '核销卡',
- 'children' => [],
- ],
- [
- 'key' => 'verifyCard2',
- 'title' => '礼品卡',
- 'children' => [],
- ],
- [
- 'key' => 'verifyCard3',
- 'title' => '储值卡',
- 'children' => [],
- ],
- [
- 'key' => 'verifyCard4',
- 'title' => '虚拟卡',
- 'children' => [],
- ],
- [
- 'key' => 'verifyCard5',
- 'title' => '视频卡',
- 'children' => [
- [
- 'key' => 'videoManage',
- 'title' => '视频',
- 'children' => [
- [
- 'key' => 'videoEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'videoAdd',
- 'title' => '新增',
- 'type' => 'action'
- ],
- [
- 'key' => 'videoDelete',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'videoBatchDelete',
- 'title' => '批量删除',
- 'type' => 'action'
- ]
- ]
- ],
- ],
- ],
- [
- 'key' => 'ActivityRebateOrderN',
- 'title' => '推N返1',
- ],
- [
- 'key' => 'pintuan',
- 'title' => '拼团',
- ],
- [
- 'key' => 'ActivityCutPrice',
- 'title' => '砍价',
- ],
- [
- 'key' => 'seckill',
- 'title' => '限时秒杀',
- ],
- [
- 'key' => 'integralStore',
- 'title' => '积分商城',
- 'children' => [
- [
- 'key' => 'integralStoreGoods',
- 'title' => '积分商品',
- ],
- [
- 'key' => 'integralStoreCat',
- 'title' => '商品分类',
- ],
- [
- 'key' => 'integralStoreSetting',
- 'title' => '积分设置',
- ],
- [
- 'key' => 'integralStoreSignIn',
- 'title' => '签到设置',
- ],
- ],
- ],
- [
- 'key' => 'ActivityNewUser',
- 'title' => '新人专享',
- ],
- [
- 'key' => 'randDiscount',
- 'title' => '随机立减',
- ],
- [
- 'key' => 'givingGifts',
- 'title' => '送礼物',
- ],
- [
- 'key' => 'ActivityWechatRoom',
- 'title' => '群优惠',
- ],
- ]
- ],
- [
- 'key' => 'resourceCategory',
- 'title' => '资源类',
- 'children' => [
- [
- 'key' => 'Quanzi',
- 'title' => 'DeepSeek圈子种草',
- ],
- [
- 'key' => 'aboutArticleManage',
- 'title' => '文章',
- 'children' => [
- [
- 'key' => 'articleAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'articleEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'articleDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'topicManage',
- 'title' => '专题',
- 'children' => [
- [
- 'key' => 'topicList',
- 'title' => '专题列表',
- 'children' => [
- [
- 'key' => 'topicAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'topicEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'topicDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'topicBatchDelete',
- 'title' => '批量删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'topicCat',
- 'title' => '专题分类',
- 'children' => [
- [
- 'key' => 'topicCatEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'topicCatAdd',
- 'title' => '新增',
- 'type' => 'action'
- ],
- [
- 'key' => 'topicCatDelete',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'topicCatBatchDelete',
- 'title' => '批量删除',
- 'type' => 'action'
- ]
- ]
- ]
- ]
- ],
- [
- 'key' => 'rechargePreceptManage',
- 'title' => '充值方案',
- 'children' => [
- [
- 'key' => 'rechargeSetting',
- 'title' => '设置',
- 'type' => 'action',
- ],
- [
- 'key' => 'rechargeEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'rechargeAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'rechargeDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'assetsTransfer',
- 'title' => '资产转增',
- 'children' => [],
- ],
- [
- 'key' => 'monthlyPaymentNext',
- 'title' => '每月月付',
- 'children' => [],
- ],
- [
- 'key' => 'videoGoods',
- 'title' => '短视频',
- 'children' => [
- [
- 'key' => 'videoGoodsWorkList',
- 'title' => '作品列表',
- 'children' => [
- [
- 'key' => 'videoGoodsWorkListView',
- 'title' => '查看',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsWorkListAgree',
- 'title' => '同意',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsWorkListRefuse',
- 'title' => '拒绝',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsWorkListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsWorkListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'videoGoodsAuthorList',
- 'title' => '作者列表',
- 'children' => [
- [
- 'key' => 'videoGoodsAuthorListAgree',
- 'title' => '同意',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsAuthorListRefuse',
- 'title' => '拒绝',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsAuthorListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsAuthorListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'videoGoodsShareList',
- 'title' => '佣金发放列表',
- 'children' => [
- [
- 'key' => 'videoGoodsShareListAgree',
- 'title' => '同意',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsShareListRefuse',
- 'title' => '拒绝',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsShareListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsShareListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'videoGoodsFeedbackList',
- 'title' => '举报列表',
- 'children' => [
- [
- 'key' => 'videoGoodsFeedbackListView',
- 'title' => '查看',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsFeedbackListDown',
- 'title' => '下架',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsFeedbackListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsFeedbackListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'videoGoodsBringGoodsList',
- 'title' => '带货商品',
- 'children' => [
- [
- 'key' => 'videoGoodsBringGoodsListAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsBringGoodsListEdit',
- 'title' => '上下架',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsBringGoodsListQrcode',
- 'title' => '小程序二维码',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsBringGoodsListCopyPath',
- 'title' => '复制小程序链接',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsBringGoodsListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsFeedbackListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'videoGoodsCatList',
- 'title' => '抖品分类',
- 'children' => [
- [
- 'key' => 'videoGoodsCatListEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsCatListAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsCatListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'videoGoodsCatListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'videoGoodsSetting',
- 'title' => '设置',
- ],
- ],
- ],
- ]
- ],
- [
- 'key' => 'toolCategory',
- 'title' => '工具类',
- 'children' => [
- [
- 'key' => 'shareManage',
- 'title' => '分销管理',
- 'children' => [
- [
- 'key' => 'shareUserCheck',
- 'title' => '分销商审核',
- 'children' => [
- [
- 'key' => 'shareUserCheckPass',
- 'title' => '通过',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserCheckRefuse',
- 'title' => '拒绝',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserCheckBatchPass',
- 'title' => '批量通过',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserCheckBatchRefuse',
- 'title' => '批量拒绝',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'NewQueue',
- 'title' => '排队免单',
- ],
- [
- 'key' => 'shareUserList',
- 'title' => '分销商列表',
- 'children' => [
- [
- 'key' => 'shareUserListView',
- 'title' => '查看',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserListWithdrawLog',
- 'title' => '提现明细',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserListShareOrder',
- 'title' => '分销订单',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserListQrcode',
- 'title' => '分销二维码',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareUserListRemark',
- 'title' => '备注',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'shareOrder',
- 'title' => '分销订单',
- ],
- [
- 'key' => 'TopUpOrder',
- 'title' => '充值分销订单',
- ],
- [
- 'key' => 'shareCash',
- 'title' => '分销提现',
- 'children' => [
- [
- 'key' => 'shareCashReject',
- 'title' => '驳回',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareCashConfirmPayment',
- 'title' => '确认打款',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareCashManualPayment',
- 'title' => '手动打款',
- 'type' => 'action',
- ]
- ],
- ],
- [
- 'key' => 'shareBasicSetting',
- 'title' => '基础设置',
- ],
- [
- 'key' => 'shareMoneySetting',
- 'title' => '佣金设置',
- ],
- [
- 'key' => 'sharePoster',
- 'title' => '推广海报',
- ],
- ]
- ],
- [
- 'key' => 'wxLive',
- 'title' => '小程序直播',
- 'children' => [
- [
- 'key' => 'wxLiveRoomList',
- 'title' => '直播间列表',
- 'children' => [
- [
- 'key' => 'wxLiveRoomListReplay',
- 'title' => '回放',
- 'type' => 'action'
- ],
- [
- 'key' => 'wxLiveRoomListViewGoods',
- 'title' => '查看商品',
- 'type' => 'action'
- ],
- [
- 'key' => 'wxLiveRoomListImportGoods',
- 'title' => '导入商品',
- 'type' => 'action'
- ],
- [
- 'key' => 'wxLiveRoomListAddRoom',
- 'title' => '添加直播间',
- 'type' => 'action'
- ],
- [
- 'key' => 'wxLiveRoomListDeleteRoom',
- 'title' => '删除直播间',
- 'type' => 'action'
- ],
- ]
- ],
- [
- 'key' => 'wxLiveGoodsList',
- 'title' => '商品列表',
- 'children' => [
- [
- 'key' => 'wxLiveGoodsListDelGoods',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'wxLiveGoodsListAddGoods',
- 'title' => '添加',
- 'type' => 'action'
- ],
- ]
- ],
- ]
- ],
- [
- 'key' => 'scanCodePay',
- 'title' => '收款码',
- 'children' => [
- [
- 'key' => 'scanCodePayProfit',
- 'title' => '收款码佣金比例',
- ]
- ],
- ],
- [
- 'key' => 'shareholderManage',
- 'title' => '股东分红',
- 'children' => [
- [
- 'key' => 'shareholderAudit',
- 'title' => '股东审核',
- 'children' => [
- [
- 'key' => 'shareholderAuditPass',
- 'title' => '通过',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareholderAuditRefuse',
- 'title' => '拒绝',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'shareholderList',
- 'title' => '股东列表',
- 'children' => [
- [
- 'key' => 'shareholderListAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareholderListEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareholderListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'shareholderLevel',
- 'title' => '等级',
- 'children' => [
- [
- 'key' => 'shareholderLevelAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareholderLevelEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareholderLevelDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'shareholderShareOrder',
- 'title' => '分润订单'
- ],
- [
- 'key' => 'shareholderCommissionList',
- 'title' => '佣金列表'
- ],
- [
- 'key' => 'shareholderWithdrawalAudit',
- 'title' => '提现审核',
- 'children' => [
- [
- 'key' => 'shareholderWithdrawalAuditPass',
- 'title' => '通过',
- 'type' => 'action',
- ],
- [
- 'key' => 'shareholderWithdrawalAuditRefuse',
- 'title' => '拒绝',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'shareholderPrizePool',
- 'title' => '分红奖金池',
- 'children' => [
- [
- 'key' => 'shareholderPrizePoolSend',
- 'title' => '发放',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'shareholderSetting',
- 'title' => '设置页面',
- ],
- [
- 'key' => 'shareholderApplySetting',
- 'title' => '申请设置',
- ],
- ],
- ],
- [
- 'key' => 'shareholderChain',
- 'title' => '链动2+1',
- ],
- [
- 'key' => 'areaDividend',
- 'title' => '区域分红',
- ],
- [
- 'key' => 'imageSearchGoods',
- 'title' => '以图搜图',
- ],
- [
- 'key' => 'cashier',
- 'title' => '收银台',
- ],
- [
- 'key' => 'goodsFormList',
- 'title' => '商品表单',
- 'children' => [
- [
- 'key' => 'goodsFormList',
- 'title' => '商品表单列表',
- ],
- [
- 'key' => 'typesViewGoods',
- 'title' => '展示类商品',
- 'children' => [
- [
- 'key' => 'goodsAdd',
- 'title' => '添加',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsEdit',
- 'title' => '编辑',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsDelete',
- 'title' => '删除',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsBatchEdit',
- 'title' => '批量设置',
- 'type' => 'action'
- ],
- [
- 'key' => 'goodsCsvUpload',
- 'title' => 'CSV上传',
- 'type' => 'action'
- ],
- ]
- ],
- ],
- ],
- [
- 'key' => 'ERP',
- 'title' => '本地商品进销存',
- 'children' => [
- [
- 'key' => 'purchasein',
- 'title' => '入库',
- 'type' => 'action',
- ],
- [
- 'key' => 'purchaseout',
- 'title' => '出库',
- 'type' => 'action',
- ],
- [
- 'key' => 'purchasedel',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ]
- ],
- [
- 'key' => 'TeamBonus',
- 'title' => '团队级差分红',
- ],
- [
- 'key' => 'Live',
- 'title' => '自建直播',
- ],
- [
- 'key' => 'PublicRanking',
- 'title' => '视频号爆单',
- ],
- [
- 'key' => 'localPublicRanking',
- 'title' => '公排计划',
- ],
- [
- 'key' => 'ActivityOrderRebateSelf',
- 'title' => '消费全返',
- ],
- [
- 'key' => 'PaymentStatement',
- 'title' => '付款对账单',
- ],
- [
- 'key' => 'TeamGrades',
- 'title' => '团队业绩分红',
- 'children' => [
- [
- 'key' => 'TeamGradesApply',
- 'title' => '审核列表',
- ],
- [
- 'key' => 'TeamGradesLevel',
- 'title' => '团队等级',
- ],
- [
- 'key' => 'TeamGradesRewardLog',
- 'title' => '分红记录',
- ],
- [
- 'key' => 'TeamRewardSetting',
- 'title' => '分红设置',
- ],
- [
- 'key' => 'TeamGradesList',
- 'title' => '分红团队',
- ],
- [
- 'key' => 'TeamRewardPayouts',
- 'title' => '提现列表',
- ],
- [
- 'key' => 'TeamGradesGoods',
- 'title' => '团队业绩商品',
- ]
- ]
- ],
- [
- 'key' => 'cashierMobile',
- 'title' => '手机收银台',
- 'children' => [
- [
- 'key' => 'cashierMobile',
- 'title' => '收银台用户',
- ],
- [
- 'key' => 'cashierMobile',
- 'title' => '操作日志',
- ],
- [
- 'key' => 'cashierMobile',
- 'title' => '门店充值权限',
- ]
- ]
- ],
- [
- 'key' => 'shareGroupPurchase',
- 'title' => '37拼购'
- ],
- [
- 'key' => 'superSellingGoods',
- 'title' => '超级卖货'
- ],
- [
- 'key' => 'IntegralAppreciation',
- 'title' => '增值积分'
- ],
- ]
- ],
- [
- 'key' => 'industryCategory',
- 'title' => '行业类',
- 'children' => [
- [
- 'key' => 'activityBooking',
- 'title' => '预约',
- ],
- [
- 'key' => 'food',
- 'title' => '点餐管理',
- 'children' => [
- [
- 'key' => 'foodGoods',
- 'title' => '商品管理',
- 'children' => [
- [
- 'key' => 'foodGoodsAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodGoodsEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodGoodsSetting',
- 'title' => '设置',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodGoodsDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodGoodsBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ]
- ],
- ],
- [
- 'key' => 'foodCat',
- 'title' => '分类',
- 'children' => [
- [
- 'key' => 'foodCatAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodEditEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodCatDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'foodTable',
- 'title' => '餐桌管理',
- 'children' => [
- [
- 'key' => 'foodTableAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodTableEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodTableDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodTableQrcode',
- 'title' => '二维码',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'foodSetting',
- 'title' => '设置',
- ],
- [
- 'key' => 'foodQrcode',
- 'title' => '店铺点餐二维码',
- ],
- [
- 'key' => 'foodSlide',
- 'title' => '轮播图',
- 'children' => [
- [
- 'key' => 'foodSlideAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodSlideEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'foodSlideDelete',
- 'title' => '删除',
- 'type' => 'action',
- ]
- ],
- ]
- ],
- ],
- [
- 'key' => 'serviceHome',
- 'title' => '上门服务',
- ],
- [
- 'key' => 'adopt',
- 'title' => '认养',
- 'children' => [
- [
- 'key' => 'adoptList',
- 'title' => '认养列表',
- 'children' => [
- [
- 'key' => 'adoptListAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'adoptListEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'adoptListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ]
- ],
- ],
- [
- 'key' => 'adoptCat',
- 'title' => '认养分类',
- 'children' => [
- [
- 'key' => 'adoptCatAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'adoptCatEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'adoptCatDelete',
- 'title' => '删除',
- 'type' => 'action',
- ]
- ],
- ],
- [
- 'key' => 'adoptOrder',
- 'title' => '认养订单',
- ],
- [
- 'key' => 'adoptSetting',
- 'title' => '认养设置',
- ],
- [
- 'key' => 'adoptDeviceManagement',
- 'title' => '设备管理',
- ],
- [
- 'key' => 'adoptDeliveryOrder',
- 'title' => '配送订单',
- ],
- ],
- ],
- [
- 'key' => 'global',
- 'title' => '全域分佣',
- 'children' => [
- [
- 'key' => 'globalList',
- 'title' => '报单列表',
- 'children' => [
- [
- 'key' => 'globalAdd',
- 'title' => '添加',
- 'type' => 'action',
- ],
- [
- 'key' => 'globalEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'globalBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ]
- ],
- ],
- [
- 'key' => 'globalAdd',
- 'title' => '添加报单',
- ],
- [
- 'key' => 'globalIntegralLog',
- 'title' => '积分记录',
- ],
- [
- 'key' => 'globalSetting',
- 'title' => '规则配置',
- ],
- [
- 'key' => 'globalBonusPool',
- 'title' => '报单奖金池',
- ],
- [
- 'key' => 'globalCash',
- 'title' => '提现审核',
- ],
- [
- 'key' => 'globalBonusPoolDetail',
- 'title' => '奖池明细',
- ],
- ],
- ],
- [
- 'key' => 'productTraceability',
- 'title' => '产品溯源',
- 'children' => [
- [
- 'key' => 'productTraceabilityList',
- 'title' => '产品列表',
- 'children' => [
- [
- 'key' => 'productTraceabilityListAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityListEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityListDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityListBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'productTraceabilityBatch',
- 'title' => '产品批次',
- 'children' => [
- [
- 'key' => 'productTraceabilityBatchAdd',
- 'title' => '新增',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityBatchEdit',
- 'title' => '编辑',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityBatchDelete',
- 'title' => '删除',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityBatchView',
- 'title' => '查看',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityBatchLog',
- 'title' => '溯源记录',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityBatchQrcode',
- 'title' => '查看二维码',
- 'type' => 'action',
- ],
- [
- 'key' => 'productTraceabilityBatchBatchAction',
- 'title' => '批量操作',
- 'type' => 'action',
- ],
- ],
- ],
- [
- 'key' => 'productTraceabilityLog',
- 'title' => '溯源记录',
- ],
- ],
- ],
- [
- 'key' => 'saasAdapay',
- 'title' => '汇付支付',
- ],
- [
- 'key' => 'saasAllinpay',
- 'title' => '通联普通支付',
- ],
- [
- 'key' => 'cityDelivery',
- 'title' => '微信同城配送',
- 'children' => [
- [
- 'key' => 'WechatNewDelivery',
- 'title' => '同城配送',
- ],
- [
- 'key' => 'delivery',
- 'title' => '同城配送',
- ]
- ]
- ],
- [
- 'key' => 'GPT',
- 'title' => 'GPT',
- ],
- [
- 'key' => 'Insurance',
- 'title' => '保单信息',
- 'children' => [
- [
- 'key' => 'insuranceList',
- 'title' => '保单信息列表',
- ]
- ],
- ],
- /* begin 2025/07/08 11:04:46 id1248 新增活动报名插件 WPing丶 */
- [
- 'key' => 'Event',
- 'title' => '活动报名',
- 'children' => [
- [
- 'key' => 'eventList',
- 'title' => '活动列表',
- ],
- [
- 'key' => 'userApply',
- 'title' => '报名审核',
- ],
- [
- 'key' => 'eventSetting',
- 'title' => '活动设置',
- ]
- ],
- ],
- /* end */
- [
- 'key' => 'storeLocalDelivery',
- 'title' => '同城自配',
- ],
- [
- 'key' => 'UserAudit',
- 'title' => '批发审核',
- ],
- [
- 'key' => 'intelligentMatchScene',
- 'title' => '在线搭配',
- ]
- ]
- ],
- [
- 'key' => 'channelCategory',
- 'title' => '渠道类',
- 'children' => [
- [
- 'key' => 'videoShop',
- 'title' => '视频号分销',
- ],
- ]
- ],
- [
- 'key' => 'thirdCategory',
- 'title' => '第三方',
- 'children' => [
- [
- 'key' => 'yinbao',
- 'title' => '银豹',
- ],
- [
- 'key' => 'scrm',
- 'title' => 'SCRM',
- ],
- [
- 'key' => 'kefuSetting',
- 'title' => '在线客服',
- ],
- ]
- ],
- [
- 'key' => 'branchStoreCategory',
- 'title' => '门店类',
- 'children' => [
- [
- 'key' => 'offlineShop',
- 'title' => '社区团购',
- 'children' => [
- [
- 'key' => 'offlineShopList',
- 'title' => '门店列表',
- ],
- [
- 'key' => 'offlineStaff',
- 'title' => '门店员工',
- ],
- [
- 'key' => 'offlineShopAudit',
- 'title' => '门店审核',
- ],
- [
- 'key' => 'offlineShopOrder',
- 'title' => '自提订单',
- ],
- [
- 'key' => 'outletManageGroupActivities',
- 'title' => '团购活动',
- ],
- [
- 'key' => 'outletManageGroupActivitiesEdit',
- 'title' => '门店团购活动',
- ],
- [
- 'key' => 'outletManageDriver',
- 'title' => '司机管理',
- ],
- [
- 'key' => 'outletManageInventory',
- 'title' => '备货单管理',
- ],
- [
- 'key' => 'outletManageSorting',
- 'title' => '分拣单管理',
- ],
- [
- 'key' => 'outletManagePickUpOrder',
- 'title' => '订单详情',
- ],
- ]
- ],
- [
- 'key' => 'outletManage',
- 'title' => '连锁门店',
- 'children' => [
- [
- 'key' => 'outletManageList',
- 'title' => '门店列表',
- ],
- [
- 'key' => 'outletManageStaff',
- 'title' => '门店员工',
- ],
- [
- 'key' => 'outletManageAudit',
- 'title' => '门店审核',
- ],
- [
- 'key' => 'outletManageGoods',
- 'title' => '门店商品',
- ],
- [
- 'key' => 'outletManageOrder',
- 'title' => '门店订单',
- ],
- [
- 'key' => 'outletManagePickUpOrder',
- 'title' => '订单详情',
- ],
- ]
- ],
- [
- 'key' => 'shopSetting',
- 'title' => '设置提现',
- 'children' => [
- [
- 'key' => 'outletManageApplySetting',
- 'title' => '申请设置',
- ],
- [
- 'key' => 'outletManagePoster',
- 'title' => '门店海报',
- ],
- [
- 'key' => 'outletManageCommission',
- 'title' => '门店佣金',
- ],
- [
- 'key' => 'outletManageWithdraw',
- 'title' => '门店提现',
- ],
- ]
- ],
- [
- 'key' => 'mch',
- 'title' => '入驻商',
- 'children' => [
- [
- 'key' => 'mchList',
- 'title' => '入驻商列表',
- ],
- [
- 'key' => 'mchAudit',
- 'title' => '入驻商审核',
- ],
- [
- 'key' => 'mchCommonCat',
- 'title' => '入驻商分类',
- ],
- [
- 'key' => 'mchGoods',
- 'title' => '入驻商商品',
- ],
- [
- 'key' => 'mchOrder',
- 'title' => '入驻商订单',
- ],
- [
- 'key' => 'mchCash',
- 'title' => '入驻商提现',
- ],
- [
- 'key' => 'mchSetting',
- 'title' => '入驻商设置',
- ],
- [
- 'key' => 'mchBrands',
- 'title' => '品牌分类',
- ],
- ]
- ],
- ]
- ],
- ]
- ]
- ];
|