permission.php 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. // saas版商城菜单权限
  8. return [
  9. [
  10. 'key' => 'goods',
  11. 'title' => '商品',
  12. 'children' => [
  13. [
  14. 'key' => 'goodsList',
  15. 'title' => '商品列表',
  16. 'children' => [
  17. [
  18. 'key' => 'goodsAdd',
  19. 'title' => '添加',
  20. 'type' => 'action'
  21. ],
  22. [
  23. 'key' => 'goodsEdit',
  24. 'title' => '编辑',
  25. 'type' => 'action'
  26. ],
  27. [
  28. 'key' => 'goodsDelete',
  29. 'title' => '删除',
  30. 'type' => 'action'
  31. ],
  32. [
  33. 'key' => 'goodsBatchEdit',
  34. 'title' => '批量设置',
  35. 'type' => 'action'
  36. ],
  37. [
  38. 'key' => 'goodsCsvUpload',
  39. 'title' => 'CSV上传',
  40. 'type' => 'action'
  41. ],
  42. ]
  43. ],
  44. [
  45. 'key' => 'typesHotelGoods',
  46. 'title' => '酒店商品',
  47. 'children' => [
  48. [
  49. 'key' => 'goodsAdd',
  50. 'title' => '添加',
  51. 'type' => 'action'
  52. ],
  53. [
  54. 'key' => 'goodsEdit',
  55. 'title' => '编辑',
  56. 'type' => 'action'
  57. ],
  58. [
  59. 'key' => 'goodsDelete',
  60. 'title' => '删除',
  61. 'type' => 'action'
  62. ],
  63. [
  64. 'key' => 'goodsBatchEdit',
  65. 'title' => '批量设置',
  66. 'type' => 'action'
  67. ],
  68. [
  69. 'key' => 'goodsCsvUpload',
  70. 'title' => 'CSV上传',
  71. 'type' => 'action'
  72. ],
  73. ]
  74. ],
  75. // [
  76. // 'key' => 'typesServiceGoods',
  77. // 'title' => '服务预约商品列表',
  78. // 'children' => [
  79. // [
  80. // 'key' => 'goodsAdd',
  81. // 'title' => '添加',
  82. // 'type' => 'action'
  83. // ],
  84. // [
  85. // 'key' => 'goodsEdit',
  86. // 'title' => '编辑',
  87. // 'type' => 'action'
  88. // ],
  89. // [
  90. // 'key' => 'goodsDelete',
  91. // 'title' => '删除',
  92. // 'type' => 'action'
  93. // ],
  94. // [
  95. // 'key' => 'goodsBatchEdit',
  96. // 'title' => '批量设置',
  97. // 'type' => 'action'
  98. // ],
  99. // [
  100. // 'key' => 'goodsCsvUpload',
  101. // 'title' => 'CSV上传',
  102. // 'type' => 'action'
  103. // ],
  104. // ]
  105. // ],
  106. [
  107. 'key' => 'typesVirtualGoods',
  108. 'title' => '虚拟商品',
  109. 'children' => [
  110. [
  111. 'key' => 'goodsAdd',
  112. 'title' => '添加',
  113. 'type' => 'action'
  114. ],
  115. [
  116. 'key' => 'goodsEdit',
  117. 'title' => '编辑',
  118. 'type' => 'action'
  119. ],
  120. [
  121. 'key' => 'goodsDelete',
  122. 'title' => '删除',
  123. 'type' => 'action'
  124. ],
  125. [
  126. 'key' => 'goodsBatchEdit',
  127. 'title' => '批量设置',
  128. 'type' => 'action'
  129. ],
  130. [
  131. 'key' => 'goodsCsvUpload',
  132. 'title' => 'CSV上传',
  133. 'type' => 'action'
  134. ],
  135. ]
  136. ],
  137. [
  138. 'key' => 'catList',
  139. 'title' => '分类列表',
  140. 'children' => [
  141. [
  142. 'key' => 'catEdit',
  143. 'title' => '编辑',
  144. 'type' => 'action'
  145. ],
  146. [
  147. 'key' => 'catAdd',
  148. 'title' => '新增',
  149. 'type' => 'action'
  150. ],
  151. [
  152. 'key' => 'catBatchEdit',
  153. 'title' => '批量操作',
  154. 'type' => 'action'
  155. ],
  156. ]
  157. ],
  158. [
  159. 'key' => 'attrList',
  160. 'title' => '规格库',
  161. 'children' => [
  162. [
  163. 'key' => 'attrEdit',
  164. 'title' => '编辑',
  165. 'type' => 'action'
  166. ],
  167. [
  168. 'key' => 'attrDelete',
  169. 'title' => '删除',
  170. 'type' => 'action'
  171. ],
  172. [
  173. 'key' => 'attrAdd',
  174. 'title' => '添加',
  175. 'type' => 'action'
  176. ],
  177. [
  178. 'key' => 'attrBatchDelete',
  179. 'title' => '批量删除',
  180. 'type' => 'action'
  181. ],
  182. ]
  183. ],
  184. [
  185. 'key' => 'goodsBrand',
  186. 'title' => '品牌列表'
  187. ],
  188. [
  189. 'key' => 'goodsRecommendKeyword',
  190. 'title' => '推荐发现关键词',
  191. 'children' => [
  192. [
  193. 'key' => 'recommendKeywordAdd',
  194. 'title' => '添加',
  195. 'type' => 'action'
  196. ],
  197. [
  198. 'key' => 'recommendKeywordEdit',
  199. 'title' => '编辑',
  200. 'type' => 'action'
  201. ],
  202. [
  203. 'key' => 'recommendKeywordDel',
  204. 'title' => '删除',
  205. 'type' => 'action'
  206. ],
  207. [
  208. 'key' => 'recommendKeywordBatchDel',
  209. 'title' => '批量设置',
  210. 'type' => 'action'
  211. ],
  212. ]
  213. ],
  214. ]
  215. ],
  216. [
  217. 'key' => 'userManage',
  218. 'title' => '用户',
  219. 'children' => [
  220. [
  221. 'key' => 'userManagement',
  222. 'title' => '用户管理',
  223. 'children' => [
  224. [
  225. 'key' => 'userManagementView',
  226. 'title' => '查看',
  227. 'type' => 'action',
  228. ],
  229. [
  230. 'key' => 'userManagementDetails',
  231. 'title' => '用户详情',
  232. 'children' => [
  233. [
  234. 'key' => 'userManagementDetailsEditUser',
  235. 'title' => '编辑用户',
  236. 'type' => 'action',
  237. ],
  238. [
  239. 'key' => 'userManagementDetailsSetProperty',
  240. 'title' => '设置积分/余额',
  241. 'type' => 'action',
  242. ],
  243. ],
  244. ]
  245. ],
  246. ],
  247. [
  248. 'key' => 'memberManage',
  249. 'title' => '会员等级',
  250. 'children' => [
  251. [
  252. 'key' => 'memberLevel',
  253. 'title' => '会员等级',
  254. 'children' => [
  255. [
  256. 'key' => 'memberLevelAdd',
  257. 'title' => '添加',
  258. 'type' => 'action',
  259. ],
  260. [
  261. 'key' => 'memberLevelEdit',
  262. 'title' => '编辑',
  263. 'type' => 'action',
  264. ],
  265. [
  266. 'key' => 'memberLevelDelete',
  267. 'title' => '删除',
  268. 'type' => 'action',
  269. ],
  270. ],
  271. ],
  272. [
  273. 'key' => 'levelOrderList',
  274. 'title' => '购买记录'
  275. ],
  276. [
  277. 'key' => 'growthValueSetting',
  278. 'title' => '成长值设置'
  279. ],
  280. ],
  281. ],
  282. [
  283. 'key' => 'userAdmin',
  284. 'title' => '手机端管理员',
  285. 'children' => [
  286. [
  287. 'key' => 'userAdminAdd',
  288. 'title' => '添加',
  289. 'type' => 'action',
  290. ],
  291. [
  292. 'key' => 'userAdminDelete',
  293. 'title' => '删除',
  294. 'type' => 'action',
  295. ],
  296. ],
  297. ],
  298. [
  299. 'key' => 'userShareLevel',
  300. 'title' => '分销商会员等级',
  301. 'children' => [],
  302. ],
  303. [
  304. 'key' => 'userLabel',
  305. 'title' => '用户标签',
  306. 'children' => [],
  307. ]
  308. ]
  309. ],
  310. [
  311. 'key' => 'orderManage',
  312. 'title' => '订单',
  313. 'children' => [
  314. [
  315. 'key' => 'orderList',
  316. 'title' => '订单列表',
  317. 'children' => [
  318. [
  319. 'key' => 'orderListSend',
  320. 'title' => '发货',
  321. 'type' => 'action',
  322. ],
  323. [
  324. 'key' => 'orderListCancel',
  325. 'title' => '取消',
  326. 'type' => 'action',
  327. ],
  328. [
  329. 'key' => 'orderListDetails',
  330. 'title' => '详情',
  331. ],
  332. [
  333. 'key' => 'orderListPrint',
  334. 'title' => '打印',
  335. ],
  336. [
  337. 'key' => 'orderListReceiptPrint',
  338. 'title' => '小票打印',
  339. ],
  340. [
  341. 'key' => 'orderListAddRemark',
  342. 'title' => '添加备注',
  343. ],
  344. [
  345. 'key' => 'orderListMoveRecycle',
  346. 'title' => '移入回收站',
  347. ],
  348. [
  349. 'key' => 'orderListExpressInfo',
  350. 'title' => '物流信息',
  351. ],
  352. [
  353. 'key' => 'orderListTransferOrder',
  354. 'title' => '转单',
  355. ],
  356. [
  357. 'key' => 'orderListAgree',
  358. 'title' => '同意',
  359. ],
  360. ],
  361. ],
  362. [
  363. 'key' => 'cashierOrderList',
  364. 'title' => '收银台列表',
  365. 'children' => [
  366. [
  367. 'key' => 'orderListSend',
  368. 'title' => '发货',
  369. 'type' => 'action',
  370. ],
  371. [
  372. 'key' => 'orderListCancel',
  373. 'title' => '取消',
  374. 'type' => 'action',
  375. ],
  376. [
  377. 'key' => 'orderListDetails',
  378. 'title' => '详情',
  379. ],
  380. [
  381. 'key' => 'orderListPrint',
  382. 'title' => '打印',
  383. ],
  384. [
  385. 'key' => 'orderListReceiptPrint',
  386. 'title' => '小票打印',
  387. ],
  388. [
  389. 'key' => 'orderListAddRemark',
  390. 'title' => '添加备注',
  391. ],
  392. [
  393. 'key' => 'orderListMoveRecycle',
  394. 'title' => '移入回收站',
  395. ],
  396. [
  397. 'key' => 'orderListExpressInfo',
  398. 'title' => '物流信息',
  399. ],
  400. [
  401. 'key' => 'orderListTransferOrder',
  402. 'title' => '转单',
  403. ],
  404. [
  405. 'key' => 'orderListAgree',
  406. 'title' => '同意',
  407. ],
  408. ],
  409. ],
  410. [
  411. 'key' => 'orderOfflineList',
  412. 'title' => '自提订单',
  413. 'children' => [
  414. [
  415. 'key' => 'orderOfflineListVerify',
  416. 'title' => '核销',
  417. 'type' => 'action',
  418. ],
  419. [
  420. 'key' => 'orderOfflineListCancel',
  421. 'title' => '取消',
  422. 'type' => 'action',
  423. ],
  424. [
  425. 'key' => 'orderOfflineListDetails',
  426. 'title' => '详情',
  427. ],
  428. [
  429. 'key' => 'orderOfflineListPrint',
  430. 'title' => '打印',
  431. ],
  432. [
  433. 'key' => 'orderOfflineListReceiptPrint',
  434. 'title' => '小票打印',
  435. ],
  436. [
  437. 'key' => 'orderOfflineListAddRemark',
  438. 'title' => '添加备注',
  439. ],
  440. [
  441. 'key' => 'orderOfflineListMoveRecycle',
  442. 'title' => '移入回收站',
  443. ],
  444. ],
  445. ],
  446. [
  447. 'key' => 'orderRefundList',
  448. 'title' => '售后订单',
  449. 'children' => [
  450. [
  451. 'key' => 'orderRefundListConfirmReceive',
  452. 'title' => '确认收货',
  453. ],
  454. [
  455. 'key' => 'orderRefundListRefuseExchange',
  456. 'title' => '拒绝换货',
  457. ],
  458. [
  459. 'key' => 'orderRefundListAgreeRefund',
  460. 'title' => '同意退货',
  461. ],
  462. [
  463. 'key' => 'orderRefundListRefuseRefund',
  464. 'title' => '拒绝退货',
  465. ],
  466. [
  467. 'key' => 'orderRefundListAgreeExchange',
  468. 'title' => '同意换货',
  469. ],
  470. ],
  471. ],
  472. [
  473. 'key' => 'orderSameCityList',
  474. 'title' => '同城订单',
  475. 'children' => [
  476. [
  477. 'key' => 'orderSameCityListCancel',
  478. 'title' => '取消',
  479. 'type' => 'action',
  480. ],
  481. [
  482. 'key' => 'orderSameCityListDetails',
  483. 'title' => '详情',
  484. ],
  485. [
  486. 'key' => 'orderSameCityListPrint',
  487. 'title' => '打印',
  488. ],
  489. [
  490. 'key' => 'orderSameCityListReceiptPrint',
  491. 'title' => '小票打印',
  492. ],
  493. [
  494. 'key' => 'orderSameCityListAddRemark',
  495. 'title' => '添加备注',
  496. ],
  497. [
  498. 'key' => 'orderSameCityListMoveRecycle',
  499. 'title' => '移入回收站',
  500. ],
  501. [
  502. 'key' => 'orderSameCityListAgree',
  503. 'title' => '同意',
  504. ],
  505. ],
  506. ],
  507. [
  508. 'key' => 'orderScanList',
  509. 'title' => '当面付订单',
  510. ],
  511. [
  512. 'key' => 'orderComment',
  513. 'title' => '评价管理',
  514. 'children' => [
  515. [
  516. 'key' => 'orderCommentRely',
  517. 'title' => '回复',
  518. 'type' => 'action',
  519. ],
  520. [
  521. 'key' => 'orderCommentHide',
  522. 'title' => '隐藏',
  523. 'type' => 'action',
  524. ],
  525. [
  526. 'key' => 'orderCommentDelete',
  527. 'title' => '删除',
  528. 'type' => 'action',
  529. ],
  530. ],
  531. ],
  532. ]
  533. ],
  534. [
  535. 'key' => 'storeProfit',
  536. 'title' => '财务',
  537. 'children' => [
  538. [
  539. 'key' => 'financialList',
  540. 'title' => '财务列表'
  541. ],
  542. [
  543. 'key' => 'orderCostProfit',
  544. 'title' => '订单列表'
  545. ],
  546. [
  547. 'key' => 'mdPrice',
  548. 'title' => '门店佣金'
  549. ],
  550. [
  551. 'key' => 'userPrice',
  552. 'title' => '会员佣金'
  553. ],
  554. [
  555. 'key' => 'userMoney',
  556. 'title' => '用户余额'
  557. ],
  558. [
  559. 'key' => 'offlineTransferLog',
  560. 'title' => '线下转账'
  561. ],
  562. [
  563. 'key' => 'invoiceManage',
  564. 'title' => '发票管理'
  565. ],
  566. [
  567. 'key' => 'userPriceTotal',
  568. 'title' => '用户佣金明细'
  569. ],
  570. ],
  571. ],
  572. [
  573. 'key' => 'statistic',
  574. 'title' => '统计',
  575. 'children' => [
  576. [
  577. 'key' => 'dataStatistic',
  578. 'title' => '数据统计',
  579. 'children' => [
  580. ],
  581. ],
  582. [
  583. 'key' => 'goodsStatistic',
  584. 'title' => '商品销售统计',
  585. 'children' => [
  586. ],
  587. ],
  588. [
  589. 'key' => 'orderSaleGoodsStatistic',
  590. 'title' => '订单商品统计',
  591. ],
  592. [
  593. 'key' => 'dashboardRecharge',
  594. 'title' => '会员储值',
  595. ],
  596. [
  597. 'key' => 'dashboardUser',
  598. 'title' => '会员分析',
  599. ],
  600. [
  601. 'key' => 'dashboardGoodsNum',
  602. 'title' => '库存分析',
  603. ],
  604. [
  605. 'key' => 'dashboardGoodsSale',
  606. 'title' => '热销商品',
  607. ],
  608. [
  609. 'key' => 'dashboardSales',
  610. 'title' => '销量分析',
  611. ],
  612. [
  613. 'key' => 'dashboardSalesAnalysis',
  614. 'title' => '销售分析',
  615. ],
  616. [
  617. 'key' => 'dashboardActiveUser',
  618. 'title' => '活跃用户',
  619. ],
  620. [
  621. 'key' => 'expiredsProducts',
  622. 'title' => '临期产品',
  623. ],
  624. ]
  625. ],
  626. [
  627. 'key' => 'setting',
  628. 'title' => '系统',
  629. 'children' => [
  630. [
  631. 'key' => 'settingEdit',
  632. 'title' => '功能设置',
  633. 'children' => [
  634. [
  635. 'key' => 'store',
  636. 'title' => '基础设置',
  637. 'type' => 'action',
  638. 'children' => [
  639. [
  640. 'key' => 'basicEdit',
  641. 'title' => '编辑',
  642. 'type' => 'action',
  643. ],
  644. ]
  645. ],
  646. [
  647. 'key' => 'wechat',
  648. 'title' => '微信设置',
  649. 'type' => 'action',
  650. 'children' => [
  651. [
  652. 'key' => 'weixinEdit',
  653. 'title' => '编辑',
  654. 'type' => 'action',
  655. ],
  656. ]
  657. ],
  658. [
  659. 'key' => 'display',
  660. 'title' => '显示设置',
  661. 'type' => 'action',
  662. 'children' => [
  663. [
  664. 'key' => 'displayEdit',
  665. 'title' => '编辑',
  666. 'type' => 'action',
  667. ],
  668. ]
  669. ],
  670. [
  671. 'key' => 'kuaidi100',
  672. 'title' => '地址识别',
  673. 'type' => 'action',
  674. ],
  675. ],
  676. ],
  677. [
  678. 'key' => 'rulesSetting',
  679. 'title' => '规则设置',
  680. 'children' => [
  681. [
  682. 'key' => 'postageList',
  683. 'title' => '运费规则',
  684. 'children' => [
  685. [
  686. 'key' => 'postageAdd',
  687. 'title' => '添加',
  688. 'type' => 'action',
  689. ],
  690. [
  691. 'key' => 'postageEdit',
  692. 'title' => '编辑',
  693. 'type' => 'action',
  694. ],
  695. [
  696. 'key' => 'postageDelele',
  697. 'title' => '删除',
  698. 'type' => 'action',
  699. ],
  700. ],
  701. ],
  702. [
  703. 'key' => 'freeDelivery',
  704. 'title' => '包邮规则',
  705. 'children' => [
  706. [
  707. 'key' => 'freeDeliveryAdd',
  708. 'title' => '添加',
  709. 'type' => 'action',
  710. ],
  711. [
  712. 'key' => 'freeDeliveryEdit',
  713. 'title' => '编辑',
  714. 'type' => 'action',
  715. ],
  716. [
  717. 'key' => 'freeDeliveryDelele',
  718. 'title' => '删除',
  719. 'type' => 'action',
  720. ],
  721. ],
  722. ],
  723. [
  724. 'key' => 'territorial',
  725. 'title' => '区域限购',
  726. 'children' => [
  727. [
  728. 'key' => 'areaEdit',
  729. 'title' => '编辑',
  730. 'type' => 'action',
  731. ],
  732. [
  733. 'key' => 'areaAdd',
  734. 'title' => '添加',
  735. 'type' => 'action',
  736. ],
  737. [
  738. 'key' => 'areaDelete',
  739. 'title' => '删除',
  740. 'type' => 'action',
  741. ],
  742. ],
  743. ],
  744. [
  745. 'key' => 'offerPrice',
  746. 'title' => '起送规则',
  747. 'children' => [
  748. [
  749. 'key' => 'offerPriceAdd',
  750. 'title' => '添加',
  751. 'type' => 'action',
  752. ],
  753. [
  754. 'key' => 'offerPriceEdit',
  755. 'title' => '编辑',
  756. 'type' => 'action',
  757. ],
  758. [
  759. 'key' => 'offerPriceDelete',
  760. 'title' => '删除',
  761. 'type' => 'action',
  762. ],
  763. ],
  764. ],
  765. [
  766. 'key' => 'refundAddress',
  767. 'title' => '退货地址设置',
  768. 'children' => [
  769. [
  770. 'key' => 'refundAddressAdd',
  771. 'title' => '添加',
  772. 'type' => 'action',
  773. ],
  774. [
  775. 'key' => 'refundAddressEdit',
  776. 'title' => '编辑',
  777. 'type' => 'action',
  778. ],
  779. [
  780. 'key' => 'refundAddressDelele',
  781. 'title' => '删除',
  782. 'type' => 'action',
  783. ],
  784. ],
  785. ],
  786. [
  787. 'key' => 'distributionRules',
  788. 'title' => '配送规则',
  789. 'children' => [
  790. [
  791. 'key' => 'distributionRulesAdd',
  792. 'title' => '添加',
  793. 'type' => 'action',
  794. ],
  795. [
  796. 'key' => 'distributionRulesEdit',
  797. 'title' => '编辑',
  798. 'type' => 'action',
  799. ],
  800. [
  801. 'key' => 'distributionRulesDelele',
  802. 'title' => '删除',
  803. 'type' => 'action',
  804. ],
  805. ],
  806. ],
  807. ],
  808. ],
  809. [
  810. 'key' => 'printSetting',
  811. 'title' => '打印设置',
  812. 'children' => [
  813. [
  814. 'key' => 'express',
  815. 'title' => '电子面单',
  816. 'children' => [
  817. [
  818. 'key' => 'expressAdd',
  819. 'title' => '添加',
  820. 'type' => 'action',
  821. ],
  822. [
  823. 'key' => 'expressEdit',
  824. 'title' => '编辑',
  825. 'type' => 'action',
  826. ],
  827. [
  828. 'key' => 'expressDelele',
  829. 'title' => '删除',
  830. 'type' => 'action',
  831. ],
  832. ],
  833. ],
  834. [
  835. 'key' => 'cloud',
  836. 'title' => '云打印设置',
  837. 'children' => [
  838. [
  839. 'key' => 'cloudAdd',
  840. 'title' => '添加',
  841. 'type' => 'action',
  842. ],
  843. [
  844. 'key' => 'cloudEdit',
  845. 'title' => '编辑',
  846. 'type' => 'action',
  847. ],
  848. [
  849. 'key' => 'cloudDelele',
  850. 'title' => '删除',
  851. 'type' => 'action',
  852. ],
  853. ],
  854. ],
  855. [
  856. 'key' => 'printer',
  857. 'title' => '小票打印',
  858. 'children' => [
  859. [
  860. 'key' => 'printerAdd',
  861. 'title' => '添加',
  862. 'type' => 'action',
  863. ],
  864. [
  865. 'key' => 'printerEdit',
  866. 'title' => '编辑',
  867. 'type' => 'action',
  868. ],
  869. [
  870. 'key' => 'printerDelele',
  871. 'title' => '删除',
  872. 'type' => 'action',
  873. ],
  874. ],
  875. ],
  876. [
  877. 'key' => 'printOrderSetting',
  878. 'title' => '订单打印设置',
  879. 'children' => [
  880. [
  881. 'key' => 'printOrderSettingEdit',
  882. 'title' => '编辑',
  883. 'type' => 'action',
  884. ],
  885. ],
  886. ],
  887. ]
  888. ],
  889. [
  890. 'key' => 'noticeConfig',
  891. 'title' => '消息通知',
  892. ],
  893. [
  894. 'key' => 'GoodsReviewed',
  895. 'title' => '小程序提审商品',
  896. ],
  897. [
  898. 'key' => 'authManage',
  899. 'title' => '员工权限',
  900. 'children' => [
  901. [
  902. 'key' => 'accountManage',
  903. 'title' => '账号管理',
  904. 'children' => [
  905. [
  906. 'key' => 'accountManageAdd',
  907. 'title' => '新增',
  908. 'type' => 'action',
  909. ],
  910. [
  911. 'key' => 'accountManageEdit',
  912. 'title' => '编辑',
  913. 'type' => 'action',
  914. ],
  915. [
  916. 'key' => 'accountManageDelete',
  917. 'title' => '删除',
  918. 'type' => 'action',
  919. ],
  920. ],
  921. ],
  922. [
  923. 'key' => 'roleManage',
  924. 'title' => '角色管理',
  925. 'children' => [
  926. [
  927. 'key' => 'roleManageEdit',
  928. 'title' => '编辑',
  929. 'type' => 'action',
  930. ],
  931. [
  932. 'key' => 'roleManageAdd',
  933. 'title' => '新增',
  934. 'type' => 'action',
  935. ],
  936. [
  937. 'key' => 'roleManageDelete',
  938. 'title' => '删除',
  939. 'type' => 'action',
  940. ],
  941. ],
  942. ],
  943. ]
  944. ],
  945. [
  946. 'key' => 'payConfigOther',
  947. 'title' => '支付配置',
  948. ],
  949. [
  950. 'key' => 'payConfig',
  951. 'title' => '支付配置',
  952. 'children' => [
  953. [
  954. 'key' => 'wechatConfig',
  955. 'title' => '微信配置',
  956. ],
  957. [
  958. 'key' => 'alipayConfig',
  959. 'title' => '支付宝配置',
  960. ],
  961. ],
  962. ],
  963. [
  964. 'key' => 'CashStroeConf',
  965. 'title' => '提现设置',
  966. 'children' => [
  967. [
  968. 'key' => 'wechatCashConfig',
  969. 'title' => '微信提现配置'
  970. ],
  971. [
  972. 'key' => 'platformWechatCashConfig',
  973. 'title' => '平台微信提现配置'
  974. ],
  975. [
  976. 'key' => 'alipayCertConfig',
  977. 'title' => '支付宝配置'
  978. ],
  979. ]
  980. ],
  981. [
  982. 'key' => 'baseConfig',
  983. 'title' => '基础设置',
  984. 'children' => [
  985. [
  986. 'key' => 'douyinConfig',
  987. 'title' => '抖音配置',
  988. ],
  989. [
  990. 'key' => 'uploadConfig',
  991. 'title' => '上传配置',
  992. ],
  993. [
  994. 'key' => 'runOverConfig',
  995. 'title' => '越限配置',
  996. ],
  997. [
  998. 'key' => 'SettingCopyright',
  999. 'title' => '版权设置',
  1000. ],
  1001. ],
  1002. ],
  1003. // [
  1004. // 'key' => 'appSetting',
  1005. // 'title' => 'APP设置',
  1006. // ],
  1007. [
  1008. 'key' => 'SettingVoiceBroadcast',
  1009. 'title' => '收款播报设置',
  1010. ],
  1011. [
  1012. 'key' => 'ocrSetting',
  1013. 'title' => 'OCR配置',
  1014. ],
  1015. [
  1016. 'key' => 'saasLgSetting',
  1017. 'title' => '灵工配置',
  1018. ],
  1019. [
  1020. 'key' => 'uploadWechat',
  1021. 'title' => '小程序发布',
  1022. ],
  1023. [
  1024. 'key' => 'storeUpgrade',
  1025. 'title' => '系统升级',
  1026. ],
  1027. [
  1028. 'key' => 'timerTaskCopy',
  1029. 'title' => '定时任务',
  1030. ],
  1031. // [
  1032. // 'key' => 'cityDelivery',
  1033. // 'title' => '同城配送',
  1034. // 'children' => [
  1035. // [
  1036. // 'key' => 'delivery',
  1037. // 'title' => '配送设置',
  1038. // ],
  1039. // ]
  1040. // ],
  1041. [
  1042. 'key' => 'mapSetting',
  1043. 'title' => '地图设置',
  1044. ],
  1045. [
  1046. 'key' => 'migration',
  1047. 'title' => '店铺迁移',
  1048. ],
  1049. ]
  1050. ],
  1051. [
  1052. 'key' => 'newDiy',
  1053. 'title' => '装修',
  1054. ],
  1055. [
  1056. 'key' => 'channel',
  1057. 'title' => '渠道',
  1058. 'children' => [
  1059. [
  1060. 'key' => 'appletManagementWechat',
  1061. 'title' => '微信小程序',
  1062. 'children' => [
  1063. [
  1064. 'key' => 'wechatConfig',
  1065. 'title' => '参数配置'
  1066. ],
  1067. [
  1068. 'key' => 'uploadWechat',
  1069. 'title' => '小程序发布',
  1070. ],
  1071. ]
  1072. ],
  1073. [
  1074. 'key' => 'h5Management',
  1075. 'title' => '手机H5',
  1076. 'children' => [
  1077. [
  1078. 'key' => 'h5Management',
  1079. 'title' => '入口地址'
  1080. ]
  1081. ]
  1082. ],
  1083. [
  1084. 'key' => 'wechatAccountManagement',
  1085. 'title' => '微信公众号',
  1086. 'children' => [
  1087. [
  1088. 'key' => 'wechatAccountConfig',
  1089. 'title' => '参数设置'
  1090. ],
  1091. [
  1092. 'key' => 'wechatAccountMenuConfig',
  1093. 'title' => '菜单设置'
  1094. ]
  1095. ]
  1096. ],
  1097. [
  1098. 'key' => 'appletManagementAlipay',
  1099. 'title' => '支付宝小程序',
  1100. 'children' => [
  1101. [
  1102. 'key' => 'alipayConfig',
  1103. 'title' => '基础配置'
  1104. ],
  1105. [
  1106. 'key' => 'uploadAlipay',
  1107. 'title' => '小程序发布',
  1108. ],
  1109. ]
  1110. ],
  1111. [
  1112. 'key' => 'appManagement',
  1113. 'title' => 'App端',
  1114. 'children' => [
  1115. [
  1116. 'key' => 'appConfig',
  1117. 'title' => 'APP基础设置'
  1118. ],
  1119. [
  1120. 'key' => 'appPayConfig',
  1121. 'title' => '支付设置'
  1122. ]
  1123. ]
  1124. ],
  1125. ]
  1126. ],
  1127. [
  1128. 'key' => 'marketingManage',
  1129. 'title' => '应用',
  1130. 'children' => [
  1131. [
  1132. 'key' => 'marketingCategory',
  1133. 'title' => '营销类',
  1134. 'children' => [
  1135. [
  1136. 'key' => 'material',
  1137. 'title' => '一键发圈',
  1138. 'children' => [
  1139. [
  1140. 'key' => 'materialList',
  1141. 'title' => '素材管理',
  1142. 'children' => [],
  1143. ],
  1144. [
  1145. 'key' => 'materialCategory',
  1146. 'title' => '素材分类',
  1147. 'children' => [],
  1148. ],
  1149. [
  1150. 'key' => 'materialQrcode',
  1151. 'title' => '素材海报',
  1152. 'children' => [],
  1153. ],
  1154. ],
  1155. ],
  1156. [
  1157. 'key' => 'ponpManage',
  1158. 'title' => '大转盘抽奖',
  1159. 'children' => [
  1160. [
  1161. 'key' => 'ponpIndex',
  1162. 'title' => '大转盘配置',
  1163. 'children' => [],
  1164. ],
  1165. [
  1166. 'key' => 'ponpLogList',
  1167. 'title' => '抽奖记录',
  1168. 'children' => [],
  1169. ],
  1170. ],
  1171. ],
  1172. [
  1173. 'key' => 'couponManage',
  1174. 'title' => '优惠券',
  1175. 'children' => [
  1176. [
  1177. 'key' => 'couponList',
  1178. 'title' => '优惠券列表',
  1179. 'children' => [
  1180. [
  1181. 'key' => 'couponListEdit',
  1182. 'title' => '编辑',
  1183. 'type' => 'action',
  1184. ],
  1185. [
  1186. 'key' => 'couponListAdd',
  1187. 'title' => '新增',
  1188. 'type' => 'action',
  1189. ],
  1190. [
  1191. 'key' => 'couponListDelete',
  1192. 'title' => '删除',
  1193. 'type' => 'action',
  1194. ],
  1195. [
  1196. 'key' => 'couponListBatchDelete',
  1197. 'title' => '批量删除',
  1198. 'type' => 'action',
  1199. ],
  1200. [
  1201. 'key' => 'couponListDetails',
  1202. 'title' => '详情',
  1203. 'type' => 'action',
  1204. ],
  1205. [
  1206. 'key' => 'couponListQrcode',
  1207. 'title' => '小程序二维码',
  1208. 'type' => 'action',
  1209. ],
  1210. [
  1211. 'key' => 'couponListSend',
  1212. 'title' => '发放',
  1213. 'type' => 'action',
  1214. ],
  1215. ],
  1216. ],
  1217. [
  1218. 'key' => 'couponAutoSendManage',
  1219. 'title' => '发放规则',
  1220. 'children' => [
  1221. [
  1222. 'key' => 'couponAutoSendManageEdit',
  1223. 'title' => '编辑',
  1224. 'type' => 'action',
  1225. ],
  1226. [
  1227. 'key' => 'couponAutoSendManageAdd',
  1228. 'title' => '新增',
  1229. 'type' => 'action',
  1230. ],
  1231. [
  1232. 'key' => 'couponAutoSendManageDelete',
  1233. 'title' => '删除',
  1234. 'type' => 'action',
  1235. ],
  1236. [
  1237. 'key' => 'couponAutoSendManageBatchDelete',
  1238. 'title' => '批量删除',
  1239. 'type' => 'action',
  1240. ],
  1241. ],
  1242. ],
  1243. ],
  1244. ],
  1245. [
  1246. 'key' => 'cardCouponManage',
  1247. 'title' => '卡券管理',
  1248. 'children' => [
  1249. [
  1250. 'key' => 'cardCouponView',
  1251. 'title' => '查看',
  1252. 'type' => 'action',
  1253. ],
  1254. [
  1255. 'key' => 'cardCouponEdit',
  1256. 'title' => '编辑',
  1257. 'type' => 'action',
  1258. ],
  1259. [
  1260. 'key' => 'cardCouponAdd',
  1261. 'title' => '新增',
  1262. 'type' => 'action',
  1263. ],
  1264. [
  1265. 'key' => 'cardCouponDelete',
  1266. 'title' => '删除',
  1267. 'type' => 'action',
  1268. ],
  1269. [
  1270. 'key' => 'cardCouponBatchDelete',
  1271. 'title' => '批量删除',
  1272. 'type' => 'action',
  1273. ],
  1274. ],
  1275. ],
  1276. [
  1277. 'key' => 'verifyCard1',
  1278. 'title' => '核销卡',
  1279. 'children' => [],
  1280. ],
  1281. [
  1282. 'key' => 'verifyCard2',
  1283. 'title' => '礼品卡',
  1284. 'children' => [],
  1285. ],
  1286. [
  1287. 'key' => 'verifyCard3',
  1288. 'title' => '储值卡',
  1289. 'children' => [],
  1290. ],
  1291. [
  1292. 'key' => 'verifyCard4',
  1293. 'title' => '虚拟卡',
  1294. 'children' => [],
  1295. ],
  1296. [
  1297. 'key' => 'verifyCard5',
  1298. 'title' => '视频卡',
  1299. 'children' => [
  1300. [
  1301. 'key' => 'videoManage',
  1302. 'title' => '视频',
  1303. 'children' => [
  1304. [
  1305. 'key' => 'videoEdit',
  1306. 'title' => '编辑',
  1307. 'type' => 'action'
  1308. ],
  1309. [
  1310. 'key' => 'videoAdd',
  1311. 'title' => '新增',
  1312. 'type' => 'action'
  1313. ],
  1314. [
  1315. 'key' => 'videoDelete',
  1316. 'title' => '删除',
  1317. 'type' => 'action'
  1318. ],
  1319. [
  1320. 'key' => 'videoBatchDelete',
  1321. 'title' => '批量删除',
  1322. 'type' => 'action'
  1323. ]
  1324. ]
  1325. ],
  1326. ],
  1327. ],
  1328. [
  1329. 'key' => 'ActivityRebateOrderN',
  1330. 'title' => '推N返1',
  1331. ],
  1332. [
  1333. 'key' => 'pintuan',
  1334. 'title' => '拼团',
  1335. ],
  1336. [
  1337. 'key' => 'ActivityCutPrice',
  1338. 'title' => '砍价',
  1339. ],
  1340. [
  1341. 'key' => 'seckill',
  1342. 'title' => '限时秒杀',
  1343. ],
  1344. [
  1345. 'key' => 'integralStore',
  1346. 'title' => '积分商城',
  1347. 'children' => [
  1348. [
  1349. 'key' => 'integralStoreGoods',
  1350. 'title' => '积分商品',
  1351. ],
  1352. [
  1353. 'key' => 'integralStoreCat',
  1354. 'title' => '商品分类',
  1355. ],
  1356. [
  1357. 'key' => 'integralStoreSetting',
  1358. 'title' => '积分设置',
  1359. ],
  1360. [
  1361. 'key' => 'integralStoreSignIn',
  1362. 'title' => '签到设置',
  1363. ],
  1364. ],
  1365. ],
  1366. [
  1367. 'key' => 'ActivityNewUser',
  1368. 'title' => '新人专享',
  1369. ],
  1370. [
  1371. 'key' => 'randDiscount',
  1372. 'title' => '随机立减',
  1373. ],
  1374. [
  1375. 'key' => 'givingGifts',
  1376. 'title' => '送礼物',
  1377. ],
  1378. [
  1379. 'key' => 'ActivityWechatRoom',
  1380. 'title' => '群优惠',
  1381. ],
  1382. ]
  1383. ],
  1384. [
  1385. 'key' => 'resourceCategory',
  1386. 'title' => '资源类',
  1387. 'children' => [
  1388. [
  1389. 'key' => 'Quanzi',
  1390. 'title' => 'DeepSeek圈子种草',
  1391. ],
  1392. [
  1393. 'key' => 'aboutArticleManage',
  1394. 'title' => '文章',
  1395. 'children' => [
  1396. [
  1397. 'key' => 'articleAdd',
  1398. 'title' => '新增',
  1399. 'type' => 'action',
  1400. ],
  1401. [
  1402. 'key' => 'articleEdit',
  1403. 'title' => '编辑',
  1404. 'type' => 'action',
  1405. ],
  1406. [
  1407. 'key' => 'articleDelete',
  1408. 'title' => '删除',
  1409. 'type' => 'action',
  1410. ],
  1411. ],
  1412. ],
  1413. [
  1414. 'key' => 'topicManage',
  1415. 'title' => '专题',
  1416. 'children' => [
  1417. [
  1418. 'key' => 'topicList',
  1419. 'title' => '专题列表',
  1420. 'children' => [
  1421. [
  1422. 'key' => 'topicAdd',
  1423. 'title' => '新增',
  1424. 'type' => 'action',
  1425. ],
  1426. [
  1427. 'key' => 'topicEdit',
  1428. 'title' => '编辑',
  1429. 'type' => 'action',
  1430. ],
  1431. [
  1432. 'key' => 'topicDelete',
  1433. 'title' => '删除',
  1434. 'type' => 'action',
  1435. ],
  1436. [
  1437. 'key' => 'topicBatchDelete',
  1438. 'title' => '批量删除',
  1439. 'type' => 'action',
  1440. ],
  1441. ],
  1442. ],
  1443. [
  1444. 'key' => 'topicCat',
  1445. 'title' => '专题分类',
  1446. 'children' => [
  1447. [
  1448. 'key' => 'topicCatEdit',
  1449. 'title' => '编辑',
  1450. 'type' => 'action'
  1451. ],
  1452. [
  1453. 'key' => 'topicCatAdd',
  1454. 'title' => '新增',
  1455. 'type' => 'action'
  1456. ],
  1457. [
  1458. 'key' => 'topicCatDelete',
  1459. 'title' => '删除',
  1460. 'type' => 'action'
  1461. ],
  1462. [
  1463. 'key' => 'topicCatBatchDelete',
  1464. 'title' => '批量删除',
  1465. 'type' => 'action'
  1466. ]
  1467. ]
  1468. ]
  1469. ]
  1470. ],
  1471. [
  1472. 'key' => 'rechargePreceptManage',
  1473. 'title' => '充值方案',
  1474. 'children' => [
  1475. [
  1476. 'key' => 'rechargeSetting',
  1477. 'title' => '设置',
  1478. 'type' => 'action',
  1479. ],
  1480. [
  1481. 'key' => 'rechargeEdit',
  1482. 'title' => '编辑',
  1483. 'type' => 'action',
  1484. ],
  1485. [
  1486. 'key' => 'rechargeAdd',
  1487. 'title' => '新增',
  1488. 'type' => 'action',
  1489. ],
  1490. [
  1491. 'key' => 'rechargeDelete',
  1492. 'title' => '删除',
  1493. 'type' => 'action',
  1494. ],
  1495. ],
  1496. ],
  1497. [
  1498. 'key' => 'assetsTransfer',
  1499. 'title' => '资产转增',
  1500. 'children' => [],
  1501. ],
  1502. [
  1503. 'key' => 'monthlyPaymentNext',
  1504. 'title' => '每月月付',
  1505. 'children' => [],
  1506. ],
  1507. [
  1508. 'key' => 'videoGoods',
  1509. 'title' => '短视频',
  1510. 'children' => [
  1511. [
  1512. 'key' => 'videoGoodsWorkList',
  1513. 'title' => '作品列表',
  1514. 'children' => [
  1515. [
  1516. 'key' => 'videoGoodsWorkListView',
  1517. 'title' => '查看',
  1518. 'type' => 'action',
  1519. ],
  1520. [
  1521. 'key' => 'videoGoodsWorkListAgree',
  1522. 'title' => '同意',
  1523. 'type' => 'action',
  1524. ],
  1525. [
  1526. 'key' => 'videoGoodsWorkListRefuse',
  1527. 'title' => '拒绝',
  1528. 'type' => 'action',
  1529. ],
  1530. [
  1531. 'key' => 'videoGoodsWorkListDelete',
  1532. 'title' => '删除',
  1533. 'type' => 'action',
  1534. ],
  1535. [
  1536. 'key' => 'videoGoodsWorkListBatchAction',
  1537. 'title' => '批量操作',
  1538. 'type' => 'action',
  1539. ],
  1540. ],
  1541. ],
  1542. [
  1543. 'key' => 'videoGoodsAuthorList',
  1544. 'title' => '作者列表',
  1545. 'children' => [
  1546. [
  1547. 'key' => 'videoGoodsAuthorListAgree',
  1548. 'title' => '同意',
  1549. 'type' => 'action',
  1550. ],
  1551. [
  1552. 'key' => 'videoGoodsAuthorListRefuse',
  1553. 'title' => '拒绝',
  1554. 'type' => 'action',
  1555. ],
  1556. [
  1557. 'key' => 'videoGoodsAuthorListDelete',
  1558. 'title' => '删除',
  1559. 'type' => 'action',
  1560. ],
  1561. [
  1562. 'key' => 'videoGoodsAuthorListBatchAction',
  1563. 'title' => '批量操作',
  1564. 'type' => 'action',
  1565. ],
  1566. ],
  1567. ],
  1568. [
  1569. 'key' => 'videoGoodsShareList',
  1570. 'title' => '佣金发放列表',
  1571. 'children' => [
  1572. [
  1573. 'key' => 'videoGoodsShareListAgree',
  1574. 'title' => '同意',
  1575. 'type' => 'action',
  1576. ],
  1577. [
  1578. 'key' => 'videoGoodsShareListRefuse',
  1579. 'title' => '拒绝',
  1580. 'type' => 'action',
  1581. ],
  1582. [
  1583. 'key' => 'videoGoodsShareListDelete',
  1584. 'title' => '删除',
  1585. 'type' => 'action',
  1586. ],
  1587. [
  1588. 'key' => 'videoGoodsShareListBatchAction',
  1589. 'title' => '批量操作',
  1590. 'type' => 'action',
  1591. ],
  1592. ],
  1593. ],
  1594. [
  1595. 'key' => 'videoGoodsFeedbackList',
  1596. 'title' => '举报列表',
  1597. 'children' => [
  1598. [
  1599. 'key' => 'videoGoodsFeedbackListView',
  1600. 'title' => '查看',
  1601. 'type' => 'action',
  1602. ],
  1603. [
  1604. 'key' => 'videoGoodsFeedbackListDown',
  1605. 'title' => '下架',
  1606. 'type' => 'action',
  1607. ],
  1608. [
  1609. 'key' => 'videoGoodsFeedbackListDelete',
  1610. 'title' => '删除',
  1611. 'type' => 'action',
  1612. ],
  1613. [
  1614. 'key' => 'videoGoodsFeedbackListBatchAction',
  1615. 'title' => '批量操作',
  1616. 'type' => 'action',
  1617. ],
  1618. ],
  1619. ],
  1620. [
  1621. 'key' => 'videoGoodsBringGoodsList',
  1622. 'title' => '带货商品',
  1623. 'children' => [
  1624. [
  1625. 'key' => 'videoGoodsBringGoodsListAdd',
  1626. 'title' => '新增',
  1627. 'type' => 'action',
  1628. ],
  1629. [
  1630. 'key' => 'videoGoodsBringGoodsListEdit',
  1631. 'title' => '上下架',
  1632. 'type' => 'action',
  1633. ],
  1634. [
  1635. 'key' => 'videoGoodsBringGoodsListQrcode',
  1636. 'title' => '小程序二维码',
  1637. 'type' => 'action',
  1638. ],
  1639. [
  1640. 'key' => 'videoGoodsBringGoodsListCopyPath',
  1641. 'title' => '复制小程序链接',
  1642. 'type' => 'action',
  1643. ],
  1644. [
  1645. 'key' => 'videoGoodsBringGoodsListDelete',
  1646. 'title' => '删除',
  1647. 'type' => 'action',
  1648. ],
  1649. [
  1650. 'key' => 'videoGoodsFeedbackListBatchAction',
  1651. 'title' => '批量操作',
  1652. 'type' => 'action',
  1653. ],
  1654. ],
  1655. ],
  1656. [
  1657. 'key' => 'videoGoodsCatList',
  1658. 'title' => '抖品分类',
  1659. 'children' => [
  1660. [
  1661. 'key' => 'videoGoodsCatListEdit',
  1662. 'title' => '编辑',
  1663. 'type' => 'action',
  1664. ],
  1665. [
  1666. 'key' => 'videoGoodsCatListAdd',
  1667. 'title' => '新增',
  1668. 'type' => 'action',
  1669. ],
  1670. [
  1671. 'key' => 'videoGoodsCatListDelete',
  1672. 'title' => '删除',
  1673. 'type' => 'action',
  1674. ],
  1675. [
  1676. 'key' => 'videoGoodsCatListBatchAction',
  1677. 'title' => '批量操作',
  1678. 'type' => 'action',
  1679. ],
  1680. ],
  1681. ],
  1682. [
  1683. 'key' => 'videoGoodsSetting',
  1684. 'title' => '设置',
  1685. ],
  1686. ],
  1687. ],
  1688. ]
  1689. ],
  1690. [
  1691. 'key' => 'toolCategory',
  1692. 'title' => '工具类',
  1693. 'children' => [
  1694. [
  1695. 'key' => 'shareManage',
  1696. 'title' => '分销管理',
  1697. 'children' => [
  1698. [
  1699. 'key' => 'shareUserCheck',
  1700. 'title' => '分销商审核',
  1701. 'children' => [
  1702. [
  1703. 'key' => 'shareUserCheckPass',
  1704. 'title' => '通过',
  1705. 'type' => 'action',
  1706. ],
  1707. [
  1708. 'key' => 'shareUserCheckRefuse',
  1709. 'title' => '拒绝',
  1710. 'type' => 'action',
  1711. ],
  1712. [
  1713. 'key' => 'shareUserCheckBatchPass',
  1714. 'title' => '批量通过',
  1715. 'type' => 'action',
  1716. ],
  1717. [
  1718. 'key' => 'shareUserCheckBatchRefuse',
  1719. 'title' => '批量拒绝',
  1720. 'type' => 'action',
  1721. ],
  1722. ],
  1723. ],
  1724. [
  1725. 'key' => 'NewQueue',
  1726. 'title' => '排队免单',
  1727. ],
  1728. [
  1729. 'key' => 'shareUserList',
  1730. 'title' => '分销商列表',
  1731. 'children' => [
  1732. [
  1733. 'key' => 'shareUserListView',
  1734. 'title' => '查看',
  1735. 'type' => 'action',
  1736. ],
  1737. [
  1738. 'key' => 'shareUserListWithdrawLog',
  1739. 'title' => '提现明细',
  1740. 'type' => 'action',
  1741. ],
  1742. [
  1743. 'key' => 'shareUserListShareOrder',
  1744. 'title' => '分销订单',
  1745. 'type' => 'action',
  1746. ],
  1747. [
  1748. 'key' => 'shareUserListDelete',
  1749. 'title' => '删除',
  1750. 'type' => 'action',
  1751. ],
  1752. [
  1753. 'key' => 'shareUserListQrcode',
  1754. 'title' => '分销二维码',
  1755. 'type' => 'action',
  1756. ],
  1757. [
  1758. 'key' => 'shareUserListRemark',
  1759. 'title' => '备注',
  1760. 'type' => 'action',
  1761. ],
  1762. ],
  1763. ],
  1764. [
  1765. 'key' => 'shareOrder',
  1766. 'title' => '分销订单',
  1767. ],
  1768. [
  1769. 'key' => 'TopUpOrder',
  1770. 'title' => '充值分销订单',
  1771. ],
  1772. [
  1773. 'key' => 'shareCash',
  1774. 'title' => '分销提现',
  1775. 'children' => [
  1776. [
  1777. 'key' => 'shareCashReject',
  1778. 'title' => '驳回',
  1779. 'type' => 'action',
  1780. ],
  1781. [
  1782. 'key' => 'shareCashConfirmPayment',
  1783. 'title' => '确认打款',
  1784. 'type' => 'action',
  1785. ],
  1786. [
  1787. 'key' => 'shareCashManualPayment',
  1788. 'title' => '手动打款',
  1789. 'type' => 'action',
  1790. ]
  1791. ],
  1792. ],
  1793. [
  1794. 'key' => 'shareBasicSetting',
  1795. 'title' => '基础设置',
  1796. ],
  1797. [
  1798. 'key' => 'shareMoneySetting',
  1799. 'title' => '佣金设置',
  1800. ],
  1801. [
  1802. 'key' => 'sharePoster',
  1803. 'title' => '推广海报',
  1804. ],
  1805. ]
  1806. ],
  1807. [
  1808. 'key' => 'wxLive',
  1809. 'title' => '小程序直播',
  1810. 'children' => [
  1811. [
  1812. 'key' => 'wxLiveRoomList',
  1813. 'title' => '直播间列表',
  1814. 'children' => [
  1815. [
  1816. 'key' => 'wxLiveRoomListReplay',
  1817. 'title' => '回放',
  1818. 'type' => 'action'
  1819. ],
  1820. [
  1821. 'key' => 'wxLiveRoomListViewGoods',
  1822. 'title' => '查看商品',
  1823. 'type' => 'action'
  1824. ],
  1825. [
  1826. 'key' => 'wxLiveRoomListImportGoods',
  1827. 'title' => '导入商品',
  1828. 'type' => 'action'
  1829. ],
  1830. [
  1831. 'key' => 'wxLiveRoomListAddRoom',
  1832. 'title' => '添加直播间',
  1833. 'type' => 'action'
  1834. ],
  1835. [
  1836. 'key' => 'wxLiveRoomListDeleteRoom',
  1837. 'title' => '删除直播间',
  1838. 'type' => 'action'
  1839. ],
  1840. ]
  1841. ],
  1842. [
  1843. 'key' => 'wxLiveGoodsList',
  1844. 'title' => '商品列表',
  1845. 'children' => [
  1846. [
  1847. 'key' => 'wxLiveGoodsListDelGoods',
  1848. 'title' => '删除',
  1849. 'type' => 'action'
  1850. ],
  1851. [
  1852. 'key' => 'wxLiveGoodsListAddGoods',
  1853. 'title' => '添加',
  1854. 'type' => 'action'
  1855. ],
  1856. ]
  1857. ],
  1858. ]
  1859. ],
  1860. [
  1861. 'key' => 'scanCodePay',
  1862. 'title' => '收款码',
  1863. 'children' => [
  1864. [
  1865. 'key' => 'scanCodePayProfit',
  1866. 'title' => '收款码佣金比例',
  1867. ]
  1868. ],
  1869. ],
  1870. [
  1871. 'key' => 'shareholderManage',
  1872. 'title' => '股东分红',
  1873. 'children' => [
  1874. [
  1875. 'key' => 'shareholderAudit',
  1876. 'title' => '股东审核',
  1877. 'children' => [
  1878. [
  1879. 'key' => 'shareholderAuditPass',
  1880. 'title' => '通过',
  1881. 'type' => 'action',
  1882. ],
  1883. [
  1884. 'key' => 'shareholderAuditRefuse',
  1885. 'title' => '拒绝',
  1886. 'type' => 'action',
  1887. ],
  1888. ],
  1889. ],
  1890. [
  1891. 'key' => 'shareholderList',
  1892. 'title' => '股东列表',
  1893. 'children' => [
  1894. [
  1895. 'key' => 'shareholderListAdd',
  1896. 'title' => '添加',
  1897. 'type' => 'action',
  1898. ],
  1899. [
  1900. 'key' => 'shareholderListEdit',
  1901. 'title' => '编辑',
  1902. 'type' => 'action',
  1903. ],
  1904. [
  1905. 'key' => 'shareholderListDelete',
  1906. 'title' => '删除',
  1907. 'type' => 'action',
  1908. ],
  1909. ],
  1910. ],
  1911. [
  1912. 'key' => 'shareholderLevel',
  1913. 'title' => '等级',
  1914. 'children' => [
  1915. [
  1916. 'key' => 'shareholderLevelAdd',
  1917. 'title' => '添加',
  1918. 'type' => 'action',
  1919. ],
  1920. [
  1921. 'key' => 'shareholderLevelEdit',
  1922. 'title' => '编辑',
  1923. 'type' => 'action',
  1924. ],
  1925. [
  1926. 'key' => 'shareholderLevelDelete',
  1927. 'title' => '删除',
  1928. 'type' => 'action',
  1929. ],
  1930. ],
  1931. ],
  1932. [
  1933. 'key' => 'shareholderShareOrder',
  1934. 'title' => '分润订单'
  1935. ],
  1936. [
  1937. 'key' => 'shareholderCommissionList',
  1938. 'title' => '佣金列表'
  1939. ],
  1940. [
  1941. 'key' => 'shareholderWithdrawalAudit',
  1942. 'title' => '提现审核',
  1943. 'children' => [
  1944. [
  1945. 'key' => 'shareholderWithdrawalAuditPass',
  1946. 'title' => '通过',
  1947. 'type' => 'action',
  1948. ],
  1949. [
  1950. 'key' => 'shareholderWithdrawalAuditRefuse',
  1951. 'title' => '拒绝',
  1952. 'type' => 'action',
  1953. ],
  1954. ],
  1955. ],
  1956. [
  1957. 'key' => 'shareholderPrizePool',
  1958. 'title' => '分红奖金池',
  1959. 'children' => [
  1960. [
  1961. 'key' => 'shareholderPrizePoolSend',
  1962. 'title' => '发放',
  1963. 'type' => 'action',
  1964. ],
  1965. ],
  1966. ],
  1967. [
  1968. 'key' => 'shareholderSetting',
  1969. 'title' => '设置页面',
  1970. ],
  1971. [
  1972. 'key' => 'shareholderApplySetting',
  1973. 'title' => '申请设置',
  1974. ],
  1975. ],
  1976. ],
  1977. [
  1978. 'key' => 'shareholderChain',
  1979. 'title' => '链动2+1',
  1980. ],
  1981. [
  1982. 'key' => 'areaDividend',
  1983. 'title' => '区域分红',
  1984. ],
  1985. [
  1986. 'key' => 'imageSearchGoods',
  1987. 'title' => '以图搜图',
  1988. ],
  1989. [
  1990. 'key' => 'cashier',
  1991. 'title' => '收银台',
  1992. ],
  1993. [
  1994. 'key' => 'goodsFormList',
  1995. 'title' => '商品表单',
  1996. 'children' => [
  1997. [
  1998. 'key' => 'goodsFormList',
  1999. 'title' => '商品表单列表',
  2000. ],
  2001. [
  2002. 'key' => 'typesViewGoods',
  2003. 'title' => '展示类商品',
  2004. 'children' => [
  2005. [
  2006. 'key' => 'goodsAdd',
  2007. 'title' => '添加',
  2008. 'type' => 'action'
  2009. ],
  2010. [
  2011. 'key' => 'goodsEdit',
  2012. 'title' => '编辑',
  2013. 'type' => 'action'
  2014. ],
  2015. [
  2016. 'key' => 'goodsDelete',
  2017. 'title' => '删除',
  2018. 'type' => 'action'
  2019. ],
  2020. [
  2021. 'key' => 'goodsBatchEdit',
  2022. 'title' => '批量设置',
  2023. 'type' => 'action'
  2024. ],
  2025. [
  2026. 'key' => 'goodsCsvUpload',
  2027. 'title' => 'CSV上传',
  2028. 'type' => 'action'
  2029. ],
  2030. ]
  2031. ],
  2032. ],
  2033. ],
  2034. [
  2035. 'key' => 'ERP',
  2036. 'title' => '本地商品进销存',
  2037. 'children' => [
  2038. [
  2039. 'key' => 'purchasein',
  2040. 'title' => '入库',
  2041. 'type' => 'action',
  2042. ],
  2043. [
  2044. 'key' => 'purchaseout',
  2045. 'title' => '出库',
  2046. 'type' => 'action',
  2047. ],
  2048. [
  2049. 'key' => 'purchasedel',
  2050. 'title' => '删除',
  2051. 'type' => 'action',
  2052. ],
  2053. ]
  2054. ],
  2055. [
  2056. 'key' => 'TeamBonus',
  2057. 'title' => '团队级差分红',
  2058. ],
  2059. [
  2060. 'key' => 'Live',
  2061. 'title' => '自建直播',
  2062. ],
  2063. [
  2064. 'key' => 'PublicRanking',
  2065. 'title' => '视频号爆单',
  2066. ],
  2067. [
  2068. 'key' => 'localPublicRanking',
  2069. 'title' => '公排计划',
  2070. ],
  2071. [
  2072. 'key' => 'ActivityOrderRebateSelf',
  2073. 'title' => '消费全返',
  2074. ],
  2075. [
  2076. 'key' => 'PaymentStatement',
  2077. 'title' => '付款对账单',
  2078. ],
  2079. [
  2080. 'key' => 'TeamGrades',
  2081. 'title' => '团队业绩分红',
  2082. 'children' => [
  2083. [
  2084. 'key' => 'TeamGradesApply',
  2085. 'title' => '审核列表',
  2086. ],
  2087. [
  2088. 'key' => 'TeamGradesLevel',
  2089. 'title' => '团队等级',
  2090. ],
  2091. [
  2092. 'key' => 'TeamGradesRewardLog',
  2093. 'title' => '分红记录',
  2094. ],
  2095. [
  2096. 'key' => 'TeamRewardSetting',
  2097. 'title' => '分红设置',
  2098. ],
  2099. [
  2100. 'key' => 'TeamGradesList',
  2101. 'title' => '分红团队',
  2102. ],
  2103. [
  2104. 'key' => 'TeamRewardPayouts',
  2105. 'title' => '提现列表',
  2106. ],
  2107. [
  2108. 'key' => 'TeamGradesGoods',
  2109. 'title' => '团队业绩商品',
  2110. ]
  2111. ]
  2112. ],
  2113. [
  2114. 'key' => 'cashierMobile',
  2115. 'title' => '手机收银台',
  2116. 'children' => [
  2117. [
  2118. 'key' => 'cashierMobile',
  2119. 'title' => '收银台用户',
  2120. ],
  2121. [
  2122. 'key' => 'cashierMobile',
  2123. 'title' => '操作日志',
  2124. ],
  2125. [
  2126. 'key' => 'cashierMobile',
  2127. 'title' => '门店充值权限',
  2128. ]
  2129. ]
  2130. ],
  2131. [
  2132. 'key' => 'shareGroupPurchase',
  2133. 'title' => '37拼购'
  2134. ],
  2135. [
  2136. 'key' => 'superSellingGoods',
  2137. 'title' => '超级卖货'
  2138. ],
  2139. [
  2140. 'key' => 'IntegralAppreciation',
  2141. 'title' => '增值积分'
  2142. ],
  2143. ]
  2144. ],
  2145. [
  2146. 'key' => 'industryCategory',
  2147. 'title' => '行业类',
  2148. 'children' => [
  2149. [
  2150. 'key' => 'activityBooking',
  2151. 'title' => '预约',
  2152. ],
  2153. [
  2154. 'key' => 'food',
  2155. 'title' => '点餐管理',
  2156. 'children' => [
  2157. [
  2158. 'key' => 'foodGoods',
  2159. 'title' => '商品管理',
  2160. 'children' => [
  2161. [
  2162. 'key' => 'foodGoodsAdd',
  2163. 'title' => '添加',
  2164. 'type' => 'action',
  2165. ],
  2166. [
  2167. 'key' => 'foodGoodsEdit',
  2168. 'title' => '编辑',
  2169. 'type' => 'action',
  2170. ],
  2171. [
  2172. 'key' => 'foodGoodsSetting',
  2173. 'title' => '设置',
  2174. 'type' => 'action',
  2175. ],
  2176. [
  2177. 'key' => 'foodGoodsDelete',
  2178. 'title' => '删除',
  2179. 'type' => 'action',
  2180. ],
  2181. [
  2182. 'key' => 'foodGoodsBatchAction',
  2183. 'title' => '批量操作',
  2184. 'type' => 'action',
  2185. ]
  2186. ],
  2187. ],
  2188. [
  2189. 'key' => 'foodCat',
  2190. 'title' => '分类',
  2191. 'children' => [
  2192. [
  2193. 'key' => 'foodCatAdd',
  2194. 'title' => '添加',
  2195. 'type' => 'action',
  2196. ],
  2197. [
  2198. 'key' => 'foodEditEdit',
  2199. 'title' => '编辑',
  2200. 'type' => 'action',
  2201. ],
  2202. [
  2203. 'key' => 'foodCatDelete',
  2204. 'title' => '删除',
  2205. 'type' => 'action',
  2206. ],
  2207. ],
  2208. ],
  2209. [
  2210. 'key' => 'foodTable',
  2211. 'title' => '餐桌管理',
  2212. 'children' => [
  2213. [
  2214. 'key' => 'foodTableAdd',
  2215. 'title' => '添加',
  2216. 'type' => 'action',
  2217. ],
  2218. [
  2219. 'key' => 'foodTableEdit',
  2220. 'title' => '编辑',
  2221. 'type' => 'action',
  2222. ],
  2223. [
  2224. 'key' => 'foodTableDelete',
  2225. 'title' => '删除',
  2226. 'type' => 'action',
  2227. ],
  2228. [
  2229. 'key' => 'foodTableQrcode',
  2230. 'title' => '二维码',
  2231. 'type' => 'action',
  2232. ],
  2233. ],
  2234. ],
  2235. [
  2236. 'key' => 'foodSetting',
  2237. 'title' => '设置',
  2238. ],
  2239. [
  2240. 'key' => 'foodQrcode',
  2241. 'title' => '店铺点餐二维码',
  2242. ],
  2243. [
  2244. 'key' => 'foodSlide',
  2245. 'title' => '轮播图',
  2246. 'children' => [
  2247. [
  2248. 'key' => 'foodSlideAdd',
  2249. 'title' => '添加',
  2250. 'type' => 'action',
  2251. ],
  2252. [
  2253. 'key' => 'foodSlideEdit',
  2254. 'title' => '编辑',
  2255. 'type' => 'action',
  2256. ],
  2257. [
  2258. 'key' => 'foodSlideDelete',
  2259. 'title' => '删除',
  2260. 'type' => 'action',
  2261. ]
  2262. ],
  2263. ]
  2264. ],
  2265. ],
  2266. [
  2267. 'key' => 'serviceHome',
  2268. 'title' => '上门服务',
  2269. ],
  2270. [
  2271. 'key' => 'adopt',
  2272. 'title' => '认养',
  2273. 'children' => [
  2274. [
  2275. 'key' => 'adoptList',
  2276. 'title' => '认养列表',
  2277. 'children' => [
  2278. [
  2279. 'key' => 'adoptListAdd',
  2280. 'title' => '添加',
  2281. 'type' => 'action',
  2282. ],
  2283. [
  2284. 'key' => 'adoptListEdit',
  2285. 'title' => '编辑',
  2286. 'type' => 'action',
  2287. ],
  2288. [
  2289. 'key' => 'adoptListBatchAction',
  2290. 'title' => '批量操作',
  2291. 'type' => 'action',
  2292. ]
  2293. ],
  2294. ],
  2295. [
  2296. 'key' => 'adoptCat',
  2297. 'title' => '认养分类',
  2298. 'children' => [
  2299. [
  2300. 'key' => 'adoptCatAdd',
  2301. 'title' => '添加',
  2302. 'type' => 'action',
  2303. ],
  2304. [
  2305. 'key' => 'adoptCatEdit',
  2306. 'title' => '编辑',
  2307. 'type' => 'action',
  2308. ],
  2309. [
  2310. 'key' => 'adoptCatDelete',
  2311. 'title' => '删除',
  2312. 'type' => 'action',
  2313. ]
  2314. ],
  2315. ],
  2316. [
  2317. 'key' => 'adoptOrder',
  2318. 'title' => '认养订单',
  2319. ],
  2320. [
  2321. 'key' => 'adoptSetting',
  2322. 'title' => '认养设置',
  2323. ],
  2324. [
  2325. 'key' => 'adoptDeviceManagement',
  2326. 'title' => '设备管理',
  2327. ],
  2328. [
  2329. 'key' => 'adoptDeliveryOrder',
  2330. 'title' => '配送订单',
  2331. ],
  2332. ],
  2333. ],
  2334. [
  2335. 'key' => 'global',
  2336. 'title' => '全域分佣',
  2337. 'children' => [
  2338. [
  2339. 'key' => 'globalList',
  2340. 'title' => '报单列表',
  2341. 'children' => [
  2342. [
  2343. 'key' => 'globalAdd',
  2344. 'title' => '添加',
  2345. 'type' => 'action',
  2346. ],
  2347. [
  2348. 'key' => 'globalEdit',
  2349. 'title' => '编辑',
  2350. 'type' => 'action',
  2351. ],
  2352. [
  2353. 'key' => 'globalBatchAction',
  2354. 'title' => '批量操作',
  2355. 'type' => 'action',
  2356. ]
  2357. ],
  2358. ],
  2359. [
  2360. 'key' => 'globalAdd',
  2361. 'title' => '添加报单',
  2362. ],
  2363. [
  2364. 'key' => 'globalIntegralLog',
  2365. 'title' => '积分记录',
  2366. ],
  2367. [
  2368. 'key' => 'globalSetting',
  2369. 'title' => '规则配置',
  2370. ],
  2371. [
  2372. 'key' => 'globalBonusPool',
  2373. 'title' => '报单奖金池',
  2374. ],
  2375. [
  2376. 'key' => 'globalCash',
  2377. 'title' => '提现审核',
  2378. ],
  2379. [
  2380. 'key' => 'globalBonusPoolDetail',
  2381. 'title' => '奖池明细',
  2382. ],
  2383. ],
  2384. ],
  2385. [
  2386. 'key' => 'productTraceability',
  2387. 'title' => '产品溯源',
  2388. 'children' => [
  2389. [
  2390. 'key' => 'productTraceabilityList',
  2391. 'title' => '产品列表',
  2392. 'children' => [
  2393. [
  2394. 'key' => 'productTraceabilityListAdd',
  2395. 'title' => '新增',
  2396. 'type' => 'action',
  2397. ],
  2398. [
  2399. 'key' => 'productTraceabilityListEdit',
  2400. 'title' => '编辑',
  2401. 'type' => 'action',
  2402. ],
  2403. [
  2404. 'key' => 'productTraceabilityListDelete',
  2405. 'title' => '删除',
  2406. 'type' => 'action',
  2407. ],
  2408. [
  2409. 'key' => 'productTraceabilityListBatchAction',
  2410. 'title' => '批量操作',
  2411. 'type' => 'action',
  2412. ],
  2413. ],
  2414. ],
  2415. [
  2416. 'key' => 'productTraceabilityBatch',
  2417. 'title' => '产品批次',
  2418. 'children' => [
  2419. [
  2420. 'key' => 'productTraceabilityBatchAdd',
  2421. 'title' => '新增',
  2422. 'type' => 'action',
  2423. ],
  2424. [
  2425. 'key' => 'productTraceabilityBatchEdit',
  2426. 'title' => '编辑',
  2427. 'type' => 'action',
  2428. ],
  2429. [
  2430. 'key' => 'productTraceabilityBatchDelete',
  2431. 'title' => '删除',
  2432. 'type' => 'action',
  2433. ],
  2434. [
  2435. 'key' => 'productTraceabilityBatchView',
  2436. 'title' => '查看',
  2437. 'type' => 'action',
  2438. ],
  2439. [
  2440. 'key' => 'productTraceabilityBatchLog',
  2441. 'title' => '溯源记录',
  2442. 'type' => 'action',
  2443. ],
  2444. [
  2445. 'key' => 'productTraceabilityBatchQrcode',
  2446. 'title' => '查看二维码',
  2447. 'type' => 'action',
  2448. ],
  2449. [
  2450. 'key' => 'productTraceabilityBatchBatchAction',
  2451. 'title' => '批量操作',
  2452. 'type' => 'action',
  2453. ],
  2454. ],
  2455. ],
  2456. [
  2457. 'key' => 'productTraceabilityLog',
  2458. 'title' => '溯源记录',
  2459. ],
  2460. ],
  2461. ],
  2462. [
  2463. 'key' => 'saasAdapay',
  2464. 'title' => '汇付支付',
  2465. ],
  2466. [
  2467. 'key' => 'saasAllinpay',
  2468. 'title' => '通联普通支付',
  2469. ],
  2470. [
  2471. 'key' => 'cityDelivery',
  2472. 'title' => '微信同城配送',
  2473. 'children' => [
  2474. [
  2475. 'key' => 'WechatNewDelivery',
  2476. 'title' => '同城配送',
  2477. ],
  2478. [
  2479. 'key' => 'delivery',
  2480. 'title' => '同城配送',
  2481. ]
  2482. ]
  2483. ],
  2484. [
  2485. 'key' => 'GPT',
  2486. 'title' => 'GPT',
  2487. ],
  2488. [
  2489. 'key' => 'Insurance',
  2490. 'title' => '保单信息',
  2491. 'children' => [
  2492. [
  2493. 'key' => 'insuranceList',
  2494. 'title' => '保单信息列表',
  2495. ]
  2496. ],
  2497. ],
  2498. /* begin 2025/07/08 11:04:46 id1248 新增活动报名插件 WPing丶 */
  2499. [
  2500. 'key' => 'Event',
  2501. 'title' => '活动报名',
  2502. 'children' => [
  2503. [
  2504. 'key' => 'eventList',
  2505. 'title' => '活动列表',
  2506. ],
  2507. [
  2508. 'key' => 'userApply',
  2509. 'title' => '报名审核',
  2510. ],
  2511. [
  2512. 'key' => 'eventSetting',
  2513. 'title' => '活动设置',
  2514. ]
  2515. ],
  2516. ],
  2517. /* end */
  2518. [
  2519. 'key' => 'storeLocalDelivery',
  2520. 'title' => '同城自配',
  2521. ],
  2522. [
  2523. 'key' => 'UserAudit',
  2524. 'title' => '批发审核',
  2525. ],
  2526. [
  2527. 'key' => 'intelligentMatchScene',
  2528. 'title' => '在线搭配',
  2529. ]
  2530. ]
  2531. ],
  2532. [
  2533. 'key' => 'channelCategory',
  2534. 'title' => '渠道类',
  2535. 'children' => [
  2536. [
  2537. 'key' => 'videoShop',
  2538. 'title' => '视频号分销',
  2539. ],
  2540. ]
  2541. ],
  2542. [
  2543. 'key' => 'thirdCategory',
  2544. 'title' => '第三方',
  2545. 'children' => [
  2546. [
  2547. 'key' => 'yinbao',
  2548. 'title' => '银豹',
  2549. ],
  2550. [
  2551. 'key' => 'scrm',
  2552. 'title' => 'SCRM',
  2553. ],
  2554. [
  2555. 'key' => 'kefuSetting',
  2556. 'title' => '在线客服',
  2557. ],
  2558. ]
  2559. ],
  2560. [
  2561. 'key' => 'branchStoreCategory',
  2562. 'title' => '门店类',
  2563. 'children' => [
  2564. [
  2565. 'key' => 'offlineShop',
  2566. 'title' => '社区团购',
  2567. 'children' => [
  2568. [
  2569. 'key' => 'offlineShopList',
  2570. 'title' => '门店列表',
  2571. ],
  2572. [
  2573. 'key' => 'offlineStaff',
  2574. 'title' => '门店员工',
  2575. ],
  2576. [
  2577. 'key' => 'offlineShopAudit',
  2578. 'title' => '门店审核',
  2579. ],
  2580. [
  2581. 'key' => 'offlineShopOrder',
  2582. 'title' => '自提订单',
  2583. ],
  2584. [
  2585. 'key' => 'outletManageGroupActivities',
  2586. 'title' => '团购活动',
  2587. ],
  2588. [
  2589. 'key' => 'outletManageGroupActivitiesEdit',
  2590. 'title' => '门店团购活动',
  2591. ],
  2592. [
  2593. 'key' => 'outletManageDriver',
  2594. 'title' => '司机管理',
  2595. ],
  2596. [
  2597. 'key' => 'outletManageInventory',
  2598. 'title' => '备货单管理',
  2599. ],
  2600. [
  2601. 'key' => 'outletManageSorting',
  2602. 'title' => '分拣单管理',
  2603. ],
  2604. [
  2605. 'key' => 'outletManagePickUpOrder',
  2606. 'title' => '订单详情',
  2607. ],
  2608. ]
  2609. ],
  2610. [
  2611. 'key' => 'outletManage',
  2612. 'title' => '连锁门店',
  2613. 'children' => [
  2614. [
  2615. 'key' => 'outletManageList',
  2616. 'title' => '门店列表',
  2617. ],
  2618. [
  2619. 'key' => 'outletManageStaff',
  2620. 'title' => '门店员工',
  2621. ],
  2622. [
  2623. 'key' => 'outletManageAudit',
  2624. 'title' => '门店审核',
  2625. ],
  2626. [
  2627. 'key' => 'outletManageGoods',
  2628. 'title' => '门店商品',
  2629. ],
  2630. [
  2631. 'key' => 'outletManageOrder',
  2632. 'title' => '门店订单',
  2633. ],
  2634. [
  2635. 'key' => 'outletManagePickUpOrder',
  2636. 'title' => '订单详情',
  2637. ],
  2638. ]
  2639. ],
  2640. [
  2641. 'key' => 'shopSetting',
  2642. 'title' => '设置提现',
  2643. 'children' => [
  2644. [
  2645. 'key' => 'outletManageApplySetting',
  2646. 'title' => '申请设置',
  2647. ],
  2648. [
  2649. 'key' => 'outletManagePoster',
  2650. 'title' => '门店海报',
  2651. ],
  2652. [
  2653. 'key' => 'outletManageCommission',
  2654. 'title' => '门店佣金',
  2655. ],
  2656. [
  2657. 'key' => 'outletManageWithdraw',
  2658. 'title' => '门店提现',
  2659. ],
  2660. ]
  2661. ],
  2662. [
  2663. 'key' => 'mch',
  2664. 'title' => '入驻商',
  2665. 'children' => [
  2666. [
  2667. 'key' => 'mchList',
  2668. 'title' => '入驻商列表',
  2669. ],
  2670. [
  2671. 'key' => 'mchAudit',
  2672. 'title' => '入驻商审核',
  2673. ],
  2674. [
  2675. 'key' => 'mchCommonCat',
  2676. 'title' => '入驻商分类',
  2677. ],
  2678. [
  2679. 'key' => 'mchGoods',
  2680. 'title' => '入驻商商品',
  2681. ],
  2682. [
  2683. 'key' => 'mchOrder',
  2684. 'title' => '入驻商订单',
  2685. ],
  2686. [
  2687. 'key' => 'mchCash',
  2688. 'title' => '入驻商提现',
  2689. ],
  2690. [
  2691. 'key' => 'mchSetting',
  2692. 'title' => '入驻商设置',
  2693. ],
  2694. [
  2695. 'key' => 'mchBrands',
  2696. 'title' => '品牌分类',
  2697. ],
  2698. ]
  2699. ],
  2700. ]
  2701. ],
  2702. ]
  2703. ]
  2704. ];