menu_shop.php 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 店铺端菜单设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. [
  7. 'name' => 'INDEX_ROOT',
  8. 'title' => '概况',
  9. 'url' => 'shop/index/index',
  10. 'parent' => '',
  11. 'is_show' => 1,
  12. 'is_control' => 0,
  13. 'is_icon' => 0,
  14. 'picture' => 'app/shop/view/public/img/menu_icon/menu_survey.png',
  15. 'picture_selected' => '',
  16. 'sort' => 1,
  17. ],
  18. [
  19. 'name' => 'SHOP_ROOT',
  20. 'title' => '店铺',
  21. 'url' => 'shop/shop/config',
  22. 'parent' => '',
  23. 'is_show' => 1,
  24. 'is_control' => 0,
  25. 'is_icon' => 0,
  26. 'picture' => 'app/shop/view/public/img/menu_icon/menu_shop.png',
  27. 'picture_selected' => 'app/shop/view/public/img/menu_icon/menu_shop_selected.png',
  28. 'sort' => 2,
  29. 'child_list' => [
  30. [
  31. 'name' => 'SHOP_MANAGE',
  32. 'title' => '店铺信息',
  33. 'url' => 'shop/shop/config',
  34. 'is_show' => 1,
  35. 'is_control' => 1,
  36. 'is_icon' => 0,
  37. 'picture' => 'app/shop/view/public/img/icon/shop.png',
  38. 'picture_selected' => 'app/shop/view/public/img/icon/shop.png',
  39. 'sort' => 1,
  40. 'child_list' => [
  41. [
  42. 'name' => 'SHOP_CONFIG',
  43. 'title' => '店铺信息',
  44. 'url' => 'shop/shop/config',
  45. 'is_show' => 1,
  46. 'is_control' => 1,
  47. 'is_icon' => 0,
  48. 'picture' => '',
  49. 'picture_selected' => '',
  50. 'sort' => 1,
  51. ],
  52. [
  53. 'name' => 'SHOP_CONTACT',
  54. 'title' => '联系地址',
  55. 'url' => 'shop/shop/contact',
  56. 'is_show' => 1,
  57. 'is_control' => 1,
  58. 'is_icon' => 0,
  59. 'picture' => '',
  60. 'picture_selected' => '',
  61. 'sort' => 2,
  62. ],
  63. [
  64. 'name' => 'SHOP_CERT',
  65. 'title' => '认证信息',
  66. 'url' => 'shop/shop/cert',
  67. 'is_show' => 1,
  68. 'is_control' => 1,
  69. 'is_icon' => 0,
  70. 'picture' => '',
  71. 'picture_selected' => '',
  72. 'sort' => 4,
  73. ],
  74. [
  75. 'name' => 'SHOP_SERVICE',
  76. 'title' => '服务保障',
  77. 'url' => 'shop/shopservice/lists',
  78. 'is_show' => 1,
  79. 'is_control' => 1,
  80. 'is_icon' => 0,
  81. 'picture' => '',
  82. 'picture_selected' => '',
  83. 'sort' => 5,
  84. 'child_list' => [
  85. [
  86. 'name' => 'SHOP_SERVICE_APPLY',
  87. 'title' => '申请服务',
  88. 'url' => 'shop/shopservice/apply',
  89. 'is_show' => 0,
  90. 'is_control' => 1,
  91. 'is_icon' => 0,
  92. 'picture' => '',
  93. 'picture_selected' => '',
  94. 'sort' => 1,
  95. ],
  96. [
  97. 'name' => 'SHOP_SERVICE_QUIT',
  98. 'title' => '退出服务',
  99. 'url' => 'shop/shopservice/quit',
  100. 'is_show' => 0,
  101. 'is_control' => 1,
  102. 'is_icon' => 0,
  103. 'picture' => '',
  104. 'picture_selected' => '',
  105. 'sort' => 2,
  106. ],
  107. ]
  108. ],
  109. ]
  110. ],
  111. [
  112. 'name' => 'SHOP_DIY',
  113. 'title' => '装修信息',
  114. 'url' => 'shop/diy/index',
  115. 'is_show' => 1,
  116. 'is_control' => 1,
  117. 'is_icon' => 0,
  118. 'picture' => 'app/shop/view/public/img/icon/diy.png',
  119. 'picture_selected' => 'app/shop/view/public/img/icon/diy.png',
  120. 'sort' => 1,
  121. 'child_list' => [
  122. [
  123. 'name' => 'SHOP_DIY_INDEX',
  124. 'title' => '主页装修',
  125. 'url' => 'shop/diy/index',
  126. 'is_show' => 1,
  127. 'is_control' => 1,
  128. 'is_icon' => 0,
  129. 'picture' => '',
  130. 'picture_selected' => '',
  131. 'sort' => 1,
  132. ],
  133. [
  134. 'name' => 'SHOP_DIY_GOODS_CATEGORY',
  135. 'title' => '分类页面',
  136. 'url' => 'shop/diy/goodscategory',
  137. 'is_show' => 1,
  138. 'is_control' => 1,
  139. 'is_icon' => 0,
  140. 'picture' => '',
  141. 'picture_selected' => '',
  142. 'sort' => 2,
  143. ],
  144. [
  145. 'name' => 'SHOP_DIY_LISTS',
  146. 'title' => '微页面',
  147. 'url' => 'shop/diy/lists',
  148. 'is_show' => 1,
  149. 'is_control' => 1,
  150. 'is_icon' => 0,
  151. 'picture' => '',
  152. 'picture_selected' => '',
  153. 'sort' => 3,
  154. 'child_list' => [
  155. [
  156. 'name' => 'SHOP_DIY_EDIT',
  157. 'title' => '编辑自定义页面',
  158. 'url' => 'shop/diy/edit',
  159. 'is_show' => 0,
  160. ],
  161. ],
  162. ],
  163. [
  164. 'name' => 'SHOP_DIY_BOTTOM_NAV',
  165. 'title' => '底部导航',
  166. 'url' => 'shop/diy/bottomnavdesign',
  167. 'is_show' => 1,
  168. 'is_control' => 1,
  169. 'is_icon' => 0,
  170. 'picture' => '',
  171. 'picture_selected' => '',
  172. 'sort' => 4,
  173. ],
  174. ]
  175. ],
  176. ]
  177. ],
  178. [
  179. 'name' => 'GOODS_ROOT',
  180. 'title' => '商品',
  181. 'url' => 'shop/goods/lists',
  182. 'parent' => '',
  183. 'is_show' => 1,
  184. 'is_control' => 0,
  185. 'is_icon' => 0,
  186. 'picture' => 'app/shop/view/public/img/menu_icon/menu_commodity.png',
  187. 'picture_selected' => 'app/shop/view/public/img/menu_icon/menu_commodity_selected.png',
  188. 'sort' => 3,
  189. 'child_list' => [
  190. [
  191. 'name' => 'GOODS_MANAGE',
  192. 'title' => '商品列表',
  193. 'url' => 'shop/goods/lists',
  194. 'is_show' => 1,
  195. 'is_control' => 1,
  196. 'is_icon' => 0,
  197. 'picture' => 'app/shop/view/public/img/icon/goods_list.png',
  198. 'picture_selected' => 'app/shop/view/public/img/icon/goods_list.png',
  199. 'sort' => 1,
  200. 'child_list' => [
  201. [
  202. 'name' => 'PHYSICAL_GOODS_ADD',
  203. 'title' => '发布商品',
  204. 'url' => 'shop/goods/addgoods',
  205. 'sort' => 5,
  206. 'is_show' => 0
  207. ],
  208. [
  209. 'name' => 'PHYSICAL_GOODS_EDIT',
  210. 'title' => '编辑商品',
  211. 'url' => 'shop/goods/editgoods',
  212. 'sort' => 6,
  213. 'is_show' => 0
  214. ],
  215. [
  216. 'name' => 'VIRTUAL_GOODS_ADD',
  217. 'title' => '发布商品',
  218. 'url' => 'shop/virtualgoods/addgoods',
  219. 'sort' => 5,
  220. 'is_show' => 0
  221. ],
  222. [
  223. 'name' => 'VIRTUAL_GOODS_EDIT',
  224. 'title' => '编辑商品',
  225. 'url' => 'shop/virtualgoods/editgoods',
  226. 'sort' => 6,
  227. 'is_show' => 0
  228. ],
  229. [
  230. 'name' => 'GOODS_OFF',
  231. 'title' => '商品下架',
  232. 'url' => 'shop/goods/offgoods',
  233. 'sort' => 7,
  234. 'is_show' => 0
  235. ],
  236. [
  237. 'name' => 'GOODS_ON',
  238. 'title' => '商品上架',
  239. 'url' => 'shop/goods/ongoods',
  240. 'sort' => 8,
  241. 'is_show' => 0
  242. ],
  243. [
  244. 'name' => 'GOODS_DELETE',
  245. 'title' => '商品删除',
  246. 'url' => 'shop/goods/deletegoods',
  247. 'sort' => 9,
  248. 'is_show' => 0
  249. ],
  250. ]
  251. ], [
  252. 'name' => 'PHYSICAL_GOODS_RECYCLE',
  253. 'title' => '回收站',
  254. 'url' => 'shop/goods/recycle',
  255. 'is_show' => 1,
  256. 'is_control' => 1,
  257. 'is_icon' => 0,
  258. 'picture' => 'app/shop/view/public/img/icon/recycle.png',
  259. 'picture_selected' => 'app/shop/view/public/img/icon/recycle.png',
  260. 'sort' => 2,
  261. 'child_list' => [
  262. [
  263. 'name' => 'PHYSICAL_GOODS_RECYCLE_DELETE',
  264. 'title' => '回收站删除',
  265. 'url' => 'shop/goods/deleterecycle',
  266. 'sort' => 1,
  267. 'is_show' => 0
  268. ],
  269. [
  270. 'name' => 'PHYSICAL_GOODS_RECYCLE_RECOVERY',
  271. 'title' => '回收站恢复',
  272. 'url' => 'shop/goods/recoveryrecycle',
  273. 'sort' => 2,
  274. 'is_show' => 0
  275. ],
  276. ]
  277. ],
  278. [
  279. 'name' => 'GOODS_BRAND_MANAGE',
  280. 'title' => '品牌管理',
  281. 'url' => 'shop/goodsbrand/lists',
  282. 'is_show' => 1,
  283. 'is_control' => 1,
  284. 'is_icon' => 0,
  285. 'picture' => 'app/shop/view/public/img/icon/brand.png',
  286. 'picture_selected' => 'app/shop/view/public/img/icon/brand.png',
  287. 'sort' => 3,
  288. 'child_list' => [
  289. [
  290. 'name' => 'GOODS_BRAND_ADD',
  291. 'title' => '品牌添加',
  292. 'url' => 'shop/goodsbrand/addbrand',
  293. 'sort' => 3,
  294. 'is_show' => 0
  295. ],
  296. [
  297. 'name' => 'GOODS_BRAND_EDIT',
  298. 'title' => '品牌编辑',
  299. 'url' => 'shop/goodsbrand/editbrand',
  300. 'sort' => 4,
  301. 'is_show' => 0
  302. ],
  303. [
  304. 'name' => 'GOODS_BRAND_DEL',
  305. 'title' => '品牌删除',
  306. 'url' => 'shop/goodsbrand/deletebrand',
  307. 'sort' => 5,
  308. 'is_show' => 0
  309. ]
  310. ]
  311. ],
  312. [
  313. 'name' => 'GOODS_ATTR',
  314. 'title' => '商品类型',
  315. 'url' => 'shop/goodsattr/lists',
  316. 'is_show' => 1,
  317. 'is_control' => 1,
  318. 'is_icon' => 0,
  319. 'picture' => 'app/shop/view/public/img/icon/goods.png',
  320. 'picture_selected' => 'app/shop/view/public/img/icon/goods.png',
  321. 'sort' => 4,
  322. 'child_list' => [
  323. [
  324. 'name' => 'GOODS_ATTR_EDIT',
  325. 'title' => '类型编辑',
  326. 'url' => 'shop/goodsattr/editattr',
  327. 'is_show' => 0
  328. ],
  329. [
  330. 'name' => 'GOODS_ATTR_DEL',
  331. 'title' => '类型删除',
  332. 'url' => 'shop/goodsattr/deleteattr',
  333. 'is_show' => 0
  334. ]
  335. ]
  336. ],
  337. [
  338. 'name' => 'GOODS_CATEGORY',
  339. 'title' => '店内分类',
  340. 'url' => 'shop/goodscategory/lists',
  341. 'is_show' => 1,
  342. 'is_control' => 1,
  343. 'is_icon' => 0,
  344. 'picture' => 'app/shop/view/public/img/icon/category.png',
  345. 'picture_selected' => 'app/shop/view/public/img/icon/category.png',
  346. 'sort' => 5,
  347. 'child_list' => [
  348. [
  349. 'name' => 'GOODS_CATEGORY_ADD',
  350. 'title' => '店内分类添加',
  351. 'url' => 'shop/goodscategory/addcategory',
  352. 'is_show' => 0
  353. ],
  354. [
  355. 'name' => 'GOODS_CATEGORY_EDIT',
  356. 'title' => '店内分类编辑',
  357. 'url' => 'shop/goodscategory/editcategory',
  358. 'is_show' => 0
  359. ],
  360. [
  361. 'name' => 'GOODS_CATEGORY_DELETE',
  362. 'title' => '店内分类删除',
  363. 'url' => 'shop/goodscategory/deletecategory',
  364. 'is_show' => 0
  365. ],
  366. ]
  367. ],
  368. // [
  369. // 'name' => 'GOODS_CONSULT',
  370. // 'title' => '商品咨询',
  371. // 'url' => 'shop/goods/consult',
  372. // 'is_show' => 1,
  373. // 'is_control' => 1,
  374. // 'is_icon' => 0,
  375. // 'picture' => '',
  376. // 'picture_selected' => '',
  377. // 'sort' => 5,
  378. // 'child_list' => [
  379. // [
  380. // 'name' => 'GOODS_CONSULT_REPLY',
  381. // 'title' => '回复',
  382. // 'url' => 'shop/goods/replyconsult',
  383. // 'sort' => 1,
  384. // 'is_show' => 0
  385. // ],
  386. // [
  387. // 'name' => 'GOODS_CONSULT_DELETE',
  388. // 'title' => '删除',
  389. // 'url' => 'shop/goods/deleteconsult',
  390. // 'sort' => 1,
  391. // 'is_show' => 0
  392. // ],
  393. // ]
  394. // ],
  395. [
  396. 'name' => 'GOODS_EVALUATE',
  397. 'title' => '商品评价',
  398. 'url' => 'shop/goods/evaluate',
  399. 'is_show' => 1,
  400. 'is_control' => 1,
  401. 'is_icon' => 0,
  402. 'picture' => 'app/shop/view/public/img/icon/goods_evaluate.png',
  403. 'picture_selected' => 'app/shop/view/public/img/icon/goods_evaluate.png',
  404. 'sort' => 6,
  405. 'child_list' => [
  406. [
  407. 'name' => 'GOODS_EVALUATE_DELETE',
  408. 'title' => '删除',
  409. 'url' => 'shop/goods/deleteevaluate',
  410. 'sort' => 1,
  411. 'is_show' => 0
  412. ],
  413. ]
  414. ],
  415. [
  416. 'name' => 'ALBUM_MANAGE',
  417. 'title' => '相册管理',
  418. 'url' => 'shop/album/lists',
  419. 'is_show' => 1,
  420. 'is_control' => 1,
  421. 'is_icon' => 0,
  422. 'picture' => 'app/shop/view/public/img/icon/picture.png',
  423. 'picture_selected' => 'app/shop/view/public/img/icon/picture.png',
  424. 'sort' => 7,
  425. 'child_list' => [
  426. [
  427. 'name' => 'ALBUM_ADD',
  428. 'title' => '添加相册分组',
  429. 'url' => 'shop/album/addalbum',
  430. 'sort' => 1,
  431. 'is_show' => 0
  432. ],
  433. [
  434. 'name' => 'ALBUM_EDIT',
  435. 'title' => '编辑相册分组',
  436. 'url' => 'shop/album/editalbum',
  437. 'sort' => 2,
  438. 'is_show' => 0
  439. ],
  440. [
  441. 'name' => 'ALBUM_DELETE',
  442. 'title' => '删除相册分组',
  443. 'url' => 'shop/album/deletealbum',
  444. 'sort' => 2,
  445. 'is_show' => 0
  446. ],
  447. [
  448. 'name' => 'ALBUM_PIC_MODIFY_PICNAME',
  449. 'title' => '编辑文件名称',
  450. 'url' => 'shop/album/modifypicname',
  451. 'sort' => 2,
  452. 'is_show' => 0
  453. ],
  454. [
  455. 'name' => 'ALBUM_PIC_MODIFY_ALBUM',
  456. 'title' => '修改文件分组',
  457. 'url' => 'shop/album/modifyfilealbum',
  458. 'sort' => 2,
  459. 'is_show' => 0
  460. ],
  461. [
  462. 'name' => 'ALBUM_PIC_DELETE',
  463. 'title' => '删除文件',
  464. 'url' => 'shop/album/deletefile',
  465. 'sort' => 2,
  466. 'is_show' => 0
  467. ],
  468. [
  469. 'name' => 'ALBUM_BOX',
  470. 'title' => '相册',
  471. 'url' => 'shop/album/album',
  472. 'sort' => 2,
  473. 'is_show' => 0
  474. ],
  475. ]
  476. ],
  477. ]
  478. ],
  479. [
  480. 'name' => 'ORDER_ROOT',
  481. 'title' => '订单',
  482. 'url' => 'shop/order/lists',
  483. 'parent' => '',
  484. 'is_show' => 1,
  485. 'is_control' => 0,
  486. 'is_icon' => 0,
  487. 'picture' => 'app/shop/view/public/img/menu_icon/menu_order.png',
  488. 'picture_selected' => '',
  489. 'sort' => 4,
  490. 'child_list' => [
  491. [
  492. 'name' => 'ORDER_MANAGE',
  493. 'title' => '订单管理',
  494. 'url' => 'shop/order/lists',
  495. 'parent' => '',
  496. 'is_show' => 1,
  497. 'is_control' => 0,
  498. 'is_icon' => 0,
  499. 'picture' => 'app/shop/view/public/img/icon/order.png',
  500. 'picture_selected' => 'app/shop/view/public/img/icon/order.png',
  501. 'sort' => 1,
  502. 'child_list' => [
  503. [
  504. 'name' => 'EXPRESS_ORDER_DETAIL',
  505. 'title' => '订单详情',
  506. 'url' => 'shop/order/detail',
  507. 'is_show' => 0,
  508. 'is_control' => 1,
  509. 'is_icon' => 0,
  510. 'picture' => '',
  511. 'picture_selected' => '',
  512. 'sort' => 1,
  513. ],
  514. [
  515. 'name' => 'EXPRESS_ORDER_CLOSE',
  516. 'title' => '订单关闭',
  517. 'url' => 'shop/order/close',
  518. 'is_show' => 0,
  519. 'is_control' => 1,
  520. 'is_icon' => 0,
  521. 'picture' => '',
  522. 'picture_selected' => '',
  523. 'sort' => 1,
  524. ],
  525. [
  526. 'name' => 'EXPRESS_ORDER_DELIVER',
  527. 'title' => '订单发货',
  528. 'url' => 'shop/order/deliver',
  529. 'is_show' => 0,
  530. 'is_control' => 1,
  531. 'is_icon' => 0,
  532. 'picture' => '',
  533. 'picture_selected' => '',
  534. 'sort' => 1,
  535. ],
  536. [
  537. 'name' => 'EXPRESS_ORDER_ADJUST_PRICE',
  538. 'title' => '订单调价',
  539. 'url' => 'shop/order/adjustprice',
  540. 'is_show' => 0,
  541. 'is_control' => 1,
  542. 'is_icon' => 0,
  543. 'picture' => '',
  544. 'picture_selected' => '',
  545. 'sort' => 1,
  546. ],
  547. [
  548. 'name' => 'EXPRESS_ORDER_EDIT_ADDRESS',
  549. 'title' => '订单修改收货地址',
  550. 'url' => 'shop/order/editaddress',
  551. 'is_show' => 0,
  552. 'is_control' => 1,
  553. 'is_icon' => 0,
  554. 'picture' => '',
  555. 'picture_selected' => '',
  556. 'sort' => 1,
  557. ],
  558. [
  559. 'name' => 'LOCAL_ORDER_DETAIL',
  560. 'title' => '外卖订单详情',
  561. 'url' => 'shop/localorder/detail',
  562. 'is_show' => 0,
  563. 'is_control' => 1,
  564. 'is_icon' => 0,
  565. 'picture' => '',
  566. 'picture_selected' => '',
  567. 'sort' => 1,
  568. ],
  569. [
  570. 'name' => 'LOCAL_ORDER_DELIVER',
  571. 'title' => '外卖订单发货',
  572. 'url' => 'shop/localorder/deliver',
  573. 'is_show' => 0,
  574. 'is_control' => 1,
  575. 'is_icon' => 0,
  576. 'picture' => '',
  577. 'picture_selected' => '',
  578. 'sort' => 1,
  579. ],
  580. [
  581. 'name' => 'STORE_ORDER_DETAIL',
  582. 'title' => '自提订单详情',
  583. 'url' => 'shop/storeorder/detail',
  584. 'is_show' => 0,
  585. 'is_control' => 1,
  586. 'is_icon' => 0,
  587. 'picture' => '',
  588. 'picture_selected' => '',
  589. 'sort' => 1,
  590. ],
  591. [
  592. 'name' => 'VIRTUAL_ORDER_DETAIL',
  593. 'title' => '虚拟订单详情',
  594. 'url' => 'shop/virtualorder/detail',
  595. 'is_show' => 0,
  596. 'is_control' => 1,
  597. 'is_icon' => 0,
  598. 'picture' => '',
  599. 'picture_selected' => '',
  600. 'sort' => 1,
  601. ]
  602. ],
  603. ],
  604. [
  605. 'name' => 'ORDER_VERIFY',
  606. 'title' => '订单核销',
  607. 'url' => 'shop/verify/verifycard',
  608. 'is_show' => 1,
  609. 'is_control' => 1,
  610. 'is_icon' => 0,
  611. 'picture' => 'app/shop/view/public/img/icon/verify.png',
  612. 'picture_selected' => 'app/shop/view/public/img/icon/verify.png',
  613. 'sort' => 3,
  614. 'child_list' => [
  615. [
  616. 'name' => 'ORDER_VERIFY_CARD',
  617. 'title' => '核销台',
  618. 'url' => 'shop/verify/verifycard',
  619. 'is_show' => 1,
  620. 'is_control' => 1,
  621. 'is_icon' => 0,
  622. 'picture' => '',
  623. 'picture_selected' => '',
  624. 'sort' => 1,
  625. ],
  626. [
  627. 'name' => 'ORDER_VERIFY_RECORDS',
  628. 'title' => '核销记录',
  629. 'url' => 'shop/verify/records',
  630. 'is_show' => 1,
  631. 'is_control' => 1,
  632. 'is_icon' => 0,
  633. 'picture' => '',
  634. 'picture_selected' => '',
  635. 'sort' => 2,
  636. ],
  637. ]
  638. ],
  639. [
  640. 'name' => 'ORDER_REFUND_LIST',
  641. 'title' => '退款维权',
  642. 'url' => 'shop/orderrefund/lists',
  643. 'is_show' => 1,
  644. 'is_control' => 1,
  645. 'is_icon' => 0,
  646. 'picture' => 'app/shop/view/public/img/icon/refund.png',
  647. 'picture_selected' => 'app/shop/view/public/img/icon/refund.png',
  648. 'sort' => 2,
  649. 'child_list' => [
  650. [
  651. 'name' => 'ORDER_REFUND_DETAIL',
  652. 'title' => '维权详情',
  653. 'url' => 'shop/orderrefund/detail',
  654. 'is_show' => 0,
  655. 'is_control' => 1,
  656. 'is_icon' => 0,
  657. 'picture' => '',
  658. 'picture_selected' => '',
  659. 'sort' => 1,
  660. ],
  661. [
  662. 'name' => 'ORDER_REFUND_REFUSE',
  663. 'title' => '维权拒绝',
  664. 'url' => 'shop/orderrefund/refuse',
  665. 'is_show' => 0,
  666. 'is_control' => 1,
  667. 'is_icon' => 0,
  668. 'picture' => '',
  669. 'picture_selected' => '',
  670. 'sort' => 1,
  671. ],
  672. [
  673. 'name' => 'ORDER_REFUND_AGREE',
  674. 'title' => '维权同意',
  675. 'url' => 'shop/orderrefund/agree',
  676. 'is_show' => 0,
  677. 'is_control' => 1,
  678. 'is_icon' => 0,
  679. 'picture' => '',
  680. 'picture_selected' => '',
  681. 'sort' => 1,
  682. ],
  683. [
  684. 'name' => 'ORDER_REFUND_AGREE',
  685. 'title' => '维权收货',
  686. 'url' => 'shop/orderrefund/receive',
  687. 'is_show' => 0,
  688. 'is_control' => 1,
  689. 'is_icon' => 0,
  690. 'picture' => '',
  691. 'picture_selected' => '',
  692. 'sort' => 1,
  693. ],
  694. [
  695. 'name' => 'ORDER_REFUND_COMPLETE',
  696. 'title' => '维权通过',
  697. 'url' => 'shop/orderrefund/complete',
  698. 'is_show' => 0,
  699. 'is_control' => 1,
  700. 'is_icon' => 0,
  701. 'picture' => '',
  702. 'picture_selected' => '',
  703. 'sort' => 1,
  704. ],
  705. ]
  706. ],
  707. ]
  708. ],
  709. [
  710. 'name' => 'MEMBER_ROOT',
  711. 'title' => '会员',
  712. 'url' => 'shop/member/index',
  713. 'parent' => '',
  714. 'is_show' => 1,
  715. 'is_control' => 0,
  716. 'is_icon' => 0,
  717. 'picture' => 'app/shop/view/public/img/menu_icon/menu_member.png',
  718. 'picture_selected' => '',
  719. 'sort' => 5,
  720. 'child_list' => [
  721. [
  722. 'name' => 'MEMBER_INDEX',
  723. 'title' => '会员概况',
  724. 'url' => 'shop/member/index',
  725. 'is_show' => 1,
  726. 'is_control' => 1,
  727. 'is_icon' => 0,
  728. 'picture' => 'app/shop/view/public/img/icon/member.png',
  729. 'picture_selected' => 'app/shop/view/public/img/icon/member.png',
  730. 'sort' => 1,
  731. ],
  732. [
  733. 'name' => 'MEMBER_MANAGE',
  734. 'title' => '会员管理',
  735. 'url' => 'shop/member/lists',
  736. 'is_show' => 1,
  737. 'is_control' => 1,
  738. 'is_icon' => 0,
  739. 'picture' => 'app/shop/view/public/img/icon/member_manager.png',
  740. 'picture_selected' => 'app/shop/view/public/img/icon/member_manager.png',
  741. 'sort' => 2,
  742. 'child_list' => [
  743. [
  744. 'name' => 'MEMBER_DETAIL',
  745. 'title' => '会员详情',
  746. 'url' => 'shop/member/detail',
  747. 'is_show' => 0,
  748. 'is_control' => 1,
  749. 'is_icon' => 0,
  750. 'picture' => '',
  751. 'picture_selected' => '',
  752. 'sort' => 1
  753. ]
  754. ]
  755. ],
  756. ]
  757. ],
  758. [
  759. 'name' => 'PROMOTION_ROOT',
  760. 'title' => '营销',
  761. 'url' => 'shop/promotion/index',
  762. 'parent' => '',
  763. 'is_show' => 1,
  764. 'is_control' => 0,
  765. 'is_icon' => 0,
  766. 'picture' => 'app/shop/view/public/img/menu_icon/menu_marketing.png',
  767. 'picture_selected' => '',
  768. 'sort' => 6,
  769. 'child_list' => [
  770. [
  771. 'name' => 'PROMOTION_CENTER',
  772. 'title' => '营销中心',
  773. 'url' => 'shop/promotion/index',
  774. 'is_show' => 1,
  775. 'is_control' => 1,
  776. 'is_icon' => 0,
  777. 'picture' => 'app/shop/view/public/img/icon/promotion.png',
  778. 'picture_selected' => 'app/shop/view/public/img/icon/promotion.png',
  779. 'sort' => 1,
  780. ],
  781. [
  782. 'name' => 'PROMOTION_PLATFORM',
  783. 'title' => '平台推广',
  784. 'url' => 'shop/promotion/platform',
  785. 'is_show' => 1,
  786. 'is_control' => 1,
  787. 'is_icon' => 0,
  788. 'picture' => 'app/shop/view/public/img/icon/spread.png',
  789. 'picture_selected' => 'app/shop/view/public/img/icon/spread.png',
  790. 'sort' => 1,
  791. ],
  792. [
  793. 'name' => 'PROMOTION_MEMBER',
  794. 'title' => '会员互动',
  795. 'url' => 'shop/promotion/member',
  796. 'is_show' => 1,
  797. 'is_control' => 1,
  798. 'is_icon' => 0,
  799. 'picture' => 'app/shop/view/public/img/icon/member_chat.png',
  800. 'picture_selected' => 'app/shop/view/public/img/icon/member_chat.png',
  801. 'sort' => 1,
  802. ],
  803. ]
  804. ],
  805. [
  806. 'name' => 'TOOL_ROOT',
  807. 'title' => '应用',
  808. 'url' => 'shop/promotion/tool',
  809. 'parent' => '',
  810. 'is_show' => 1,
  811. 'is_control' => 0,
  812. 'is_icon' => 0,
  813. 'picture' => 'app/shop/view/public/img/menu_icon/menu_marketing.png',
  814. 'picture_selected' => '',
  815. 'sort' => 6,
  816. 'child_list' => [
  817. [
  818. 'name' => 'PROMOTION_TOOL',
  819. 'title' => '应用管理',
  820. 'url' => 'shop/promotion/tool',
  821. 'is_show' => 1,
  822. 'is_control' => 1,
  823. 'is_icon' => 0,
  824. 'picture' => 'app/shop/view/public/img/icon/promotion_tool.png',
  825. 'picture_selected' => 'app/shop/view/public/img/icon/promotion_tool.png',
  826. 'sort' => 1,
  827. ],
  828. ]
  829. ],
  830. [
  831. 'name' => 'STORE_ROOT',
  832. 'title' => '门店',
  833. 'url' => 'shop/store/lists',
  834. 'is_show' => 1,
  835. 'is_control' => 1,
  836. 'is_icon' => 0,
  837. 'picture' => 'app/shop/view/public/img/icon/store.png',
  838. 'picture_selected' => 'app/shop/view/public/img/icon/store.png',
  839. 'sort' => 7,
  840. 'child_list' => [
  841. [
  842. 'name' => 'STORE_LIST',
  843. 'title' => '门店列表',
  844. 'url' => 'shop/store/lists',
  845. 'is_show' => 1,
  846. 'is_control' => 1,
  847. 'is_icon' => 0,
  848. 'sort' => 1,
  849. 'picture' => 'app/shop/view/public/img/icon/store.png',
  850. 'picture_selected' => 'app/shop/view/public/img/icon/store.png',
  851. 'child_list' => [
  852. [
  853. 'name' => 'STORE_ADD',
  854. 'title' => '添加门店',
  855. 'url' => 'shop/store/addstore',
  856. 'is_show' => 0,
  857. 'is_control' => 1,
  858. 'is_icon' => 0,
  859. 'picture' => '',
  860. 'picture_selected' => '',
  861. 'sort' => 1,
  862. ],
  863. [
  864. 'name' => 'STORE_EDIT',
  865. 'title' => '修改门店',
  866. 'url' => 'shop/store/editstore',
  867. 'is_show' => 0,
  868. 'is_control' => 1,
  869. 'is_icon' => 0,
  870. 'picture' => '',
  871. 'picture_selected' => '',
  872. 'sort' => 1,
  873. ],
  874. [
  875. 'name' => 'STORE_DELETE',
  876. 'title' => '删除门店',
  877. 'url' => 'shop/store/deletestore',
  878. 'is_show' => 0,
  879. 'is_control' => 1,
  880. 'is_icon' => 0,
  881. 'picture' => '',
  882. 'picture_selected' => '',
  883. 'sort' => 1,
  884. ],
  885. ]
  886. ],
  887. ]
  888. ],
  889. [
  890. 'name' => 'ACCOUNT_ROOT',
  891. 'title' => '资产',
  892. 'url' => 'shop/account/dashboard',
  893. 'parent' => '',
  894. 'is_show' => 1,
  895. 'is_control' => 1,
  896. 'is_icon' => 0,
  897. 'picture' => 'app/shop/view/public/img/menu_icon/menu_account.png',
  898. 'picture_selected' => '',
  899. 'sort' => 8,
  900. 'child_list' => [
  901. [
  902. 'name' => 'ACCOUNT_DASHBOARD_INDEX',
  903. 'title' => '资产概况',
  904. 'url' => 'shop/account/dashboard',
  905. 'is_show' => 1,
  906. 'is_control' => 1,
  907. 'is_icon' => 0,
  908. 'picture' => 'app/shop/view/public/img/icon/money.png',
  909. 'picture_selected' => 'app/shop/view/public/img/icon/money.png',
  910. 'sort' => 1,
  911. 'child_list' => [
  912. [
  913. 'name' => 'ACCOUNT_ORDERLIST',
  914. 'title' => '交易记录',
  915. 'url' => 'shop/account/orderlist',
  916. 'is_show' => 0,
  917. 'is_control' => 1,
  918. 'is_icon' => 0,
  919. 'picture' => '',
  920. 'picture_selected' => '',
  921. 'sort' => 1,
  922. ],
  923. ]
  924. ],
  925. [
  926. 'name' => 'SHOP_WITHDRAW',
  927. 'title' => '提现记录',
  928. 'url' => 'shop/shopwithdraw/lists',
  929. 'is_show' => 1,
  930. 'is_control' => 1,
  931. 'is_icon' => 0,
  932. 'picture' => 'app/shop/view/public/img/icon/shop_withdraw.png',
  933. 'picture_selected' => 'app/shop/view/public/img/icon/shop_withdraw.png',
  934. 'sort' => 2,
  935. 'child_list' => [
  936. [
  937. 'name' => 'SHOP_WITHDRAW_APPLY',
  938. 'title' => '申请提现',
  939. 'url' => 'shop/shopwithdraw/apply',
  940. 'is_show' => 0,
  941. 'is_control' => 1,
  942. 'is_icon' => 0,
  943. 'picture' => '',
  944. 'picture_selected' => '',
  945. 'sort' => 1,
  946. ],
  947. ]
  948. ],
  949. [
  950. 'name' => 'ACCOUNT_FEE',
  951. 'title' => '入驻费用',
  952. 'url' => 'shop/account/fee',
  953. 'is_show' => 1,
  954. 'is_control' => 1,
  955. 'is_icon' => 0,
  956. 'picture' => 'app/shop/view/public/img/icon/fee.png',
  957. 'picture_selected' => 'app/shop/view/public/img/icon/fee.png',
  958. 'sort' => 3,
  959. 'child_list' => [
  960. [
  961. 'name' => 'SHOP_REOPEN_ADD',
  962. 'title' => '申请续签',
  963. 'url' => 'shop/cert/reopen',
  964. 'is_show' => 0,
  965. 'is_control' => 1,
  966. 'is_icon' => 0,
  967. 'picture' => '',
  968. 'picture_selected' => '',
  969. 'sort' => 1,
  970. ],
  971. [
  972. 'name' => 'SHOP_AUTH_APPLY',
  973. 'title' => '申请续签',
  974. 'url' => 'shop/cert/index',
  975. 'is_show' => 0,
  976. 'is_control' => 1,
  977. 'is_icon' => 0,
  978. 'picture' => '',
  979. 'picture_selected' => '',
  980. 'sort' => 2,
  981. ],
  982. [
  983. 'name' => 'SHOP_REOPEN_EDIT',
  984. 'title' => '编辑续签',
  985. 'url' => 'shop/cert/editreopeninfo',
  986. 'is_show' => 0,
  987. 'is_control' => 1,
  988. 'is_icon' => 0,
  989. 'picture' => '',
  990. 'picture_selected' => '',
  991. 'sort' => 3,
  992. ],
  993. [
  994. 'name' => 'SHOP_REOPEN_LIST',
  995. 'title' => '续签记录',
  996. 'url' => 'shop/account/reopenlist',
  997. 'is_show' => 0,
  998. 'is_control' => 1,
  999. 'is_icon' => 0,
  1000. 'picture' => '',
  1001. 'picture_selected' => '',
  1002. 'sort' => 4,
  1003. ],
  1004. ]
  1005. ],
  1006. [
  1007. 'name' => 'ACCOUNT_SETTLEMENT',
  1008. 'title' => '店铺结算',
  1009. 'url' => 'shop/settlement/lists',
  1010. 'is_show' => 1,
  1011. 'is_control' => 1,
  1012. 'is_icon' => 0,
  1013. 'picture' => 'app/shop/view/public/img/icon/settlement.png',
  1014. 'picture_selected' => 'app/shop/view/public/img/icon/settlement.png',
  1015. 'sort' => 4,
  1016. 'child_list' => [
  1017. [
  1018. 'name' => 'ACCOUNT_SETTLEMENT_DETAIL',
  1019. 'title' => '结算详情',
  1020. 'url' => 'shop/settlement/detail',
  1021. 'is_show' => 0,
  1022. 'is_control' => 1,
  1023. 'is_icon' => 0,
  1024. 'picture' => '',
  1025. 'picture_selected' => '',
  1026. 'sort' => 1,
  1027. ],
  1028. ]
  1029. ],
  1030. ]
  1031. ],
  1032. [
  1033. 'name' => 'STAT_ROOT',
  1034. 'title' => '统计',
  1035. 'url' => 'shop/stat/shop',
  1036. 'parent' => '',
  1037. 'is_show' => 1,
  1038. 'is_control' => 0,
  1039. 'is_icon' => 0,
  1040. 'picture' => 'app/shop/view/public/img/menu_icon/menu_data.png',
  1041. 'picture_selected' => 'app/shop/view/public/img/menu_icon/menu_data_selected.png',
  1042. 'sort' => 9,
  1043. 'child_list' => [
  1044. [
  1045. 'name' => 'STAT_SHOP',
  1046. 'title' => '店铺统计',
  1047. 'url' => 'shop/stat/shop',
  1048. 'is_show' => 1,
  1049. 'is_control' => 1,
  1050. 'is_icon' => 0,
  1051. 'picture' => 'app/shop/view/public/img/icon/stat.png',
  1052. 'picture_selected' => 'app/shop/view/public/img/icon/stat.png',
  1053. 'sort' => 2,
  1054. ],
  1055. [
  1056. 'name' => 'STAT_GOODS',
  1057. 'title' => '商品统计',
  1058. 'url' => 'shop/stat/goods',
  1059. 'is_show' => 1,
  1060. 'is_control' => 1,
  1061. 'is_icon' => 0,
  1062. 'picture' => 'app/shop/view/public/img/icon/stat_goods.png',
  1063. 'picture_selected' => 'app/shop/view/public/img/icon/stat_goods.png',
  1064. 'sort' => 3,
  1065. ],
  1066. [
  1067. 'name' => 'STAT_ORDER',
  1068. 'title' => '交易统计',
  1069. 'url' => 'shop/stat/order',
  1070. 'is_show' => 1,
  1071. 'is_control' => 1,
  1072. 'is_icon' => 0,
  1073. 'picture' => 'app/shop/view/public/img/icon/stat_order.png',
  1074. 'picture_selected' => 'app/shop/view/public/img/icon/stat_order.png',
  1075. 'sort' => 4,
  1076. ],
  1077. [
  1078. 'name' => 'STAT_VISIT',
  1079. 'title' => '访问统计',
  1080. 'url' => 'shop/stat/visit',
  1081. 'is_show' => 1,
  1082. 'is_control' => 1,
  1083. 'is_icon' => 0,
  1084. 'picture' => 'app/shop/view/public/img/icon/stat_icon.png',
  1085. 'picture_selected' => 'app/shop/view/public/img/icon/stat_icon.png',
  1086. 'sort' => 5,
  1087. ],
  1088. ]
  1089. ],
  1090. [
  1091. 'name' => 'SYSTEM_ROOT',
  1092. 'title' => '设置',
  1093. 'url' => 'shop/delivery/express',
  1094. 'parent' => '',
  1095. 'is_show' => 1,
  1096. 'is_control' => 0,
  1097. 'is_icon' => 0,
  1098. 'picture' => 'app/shop/view/public/img/menu_icon/menu_set.png',
  1099. 'picture_selected' => 'app/shop/view/public/img/menu_icon/menu_set_selected.png',
  1100. 'sort' => 10,
  1101. 'child_list' => [
  1102. [
  1103. 'name' => 'SYSTEM_CONFIG',
  1104. 'title' => '系统设置',
  1105. 'url' => 'shop/delivery/express',
  1106. 'is_show' => 1,
  1107. 'is_control' => 1,
  1108. 'is_icon' => 0,
  1109. 'picture' => 'app/shop/view/public/img/icon/sys_config.png',
  1110. 'picture_selected' => 'app/shop/view/public/img/icon/sys_config.png',
  1111. 'sort' => 1,
  1112. 'child_list' => [
  1113. [
  1114. 'name' => 'EXPRESS_CONFIG',
  1115. 'title' => '配送设置',
  1116. 'url' => 'shop/delivery/express',
  1117. 'is_show' => 1,
  1118. 'is_control' => 1,
  1119. 'is_icon' => 0,
  1120. 'picture' => '',
  1121. 'picture_selected' => '',
  1122. 'sort' => 1,
  1123. 'child_list' => [
  1124. [
  1125. 'name' => 'EXPRESS_COMPANY',
  1126. 'title' => '物流公司',
  1127. 'url' => 'shop/express/expresscompany',
  1128. 'is_show' => 1,
  1129. 'is_control' => 1,
  1130. 'is_icon' => 0,
  1131. 'picture' => '',
  1132. 'picture_selected' => '',
  1133. 'sort' => 1,
  1134. ],
  1135. [
  1136. 'name' => 'EXPRESS_STORE_CONFIG',
  1137. 'title' => '自提设置',
  1138. 'url' => 'shop/delivery/storeconfig',
  1139. 'is_show' => 1,
  1140. 'is_control' => 1,
  1141. 'is_icon' => 0,
  1142. 'picture' => '',
  1143. 'picture_selected' => '',
  1144. 'sort' => 1,
  1145. ],
  1146. [
  1147. 'name' => 'EXPRESS_STORE_STATUS',
  1148. 'title' => '自提开关',
  1149. 'url' => 'shop/delivery/modifystorestatus',
  1150. 'is_show' => 1,
  1151. 'is_control' => 1,
  1152. 'is_icon' => 0,
  1153. 'picture' => '',
  1154. 'picture_selected' => '',
  1155. 'sort' => 1,
  1156. ],
  1157. [
  1158. 'name' => 'EXPRESS_EXPRESS_STATUS',
  1159. 'title' => '物流开关',
  1160. 'url' => 'shop/delivery/modifyexpressstatus',
  1161. 'is_show' => 1,
  1162. 'is_control' => 1,
  1163. 'is_icon' => 0,
  1164. 'picture' => '',
  1165. 'picture_selected' => '',
  1166. 'sort' => 1,
  1167. ],
  1168. [
  1169. 'name' => 'EXPRESS_LOCAL_STATUS',
  1170. 'title' => '外卖配送开关',
  1171. 'url' => 'shop/delivery/modifylocalstatus',
  1172. 'is_show' => 1,
  1173. 'is_control' => 1,
  1174. 'is_icon' => 0,
  1175. 'picture' => '',
  1176. 'picture_selected' => '',
  1177. 'sort' => 1,
  1178. ],
  1179. [
  1180. 'name' => 'EXPRESS_LOCALDELIVERY_CONFIG',
  1181. 'title' => '外卖配送',
  1182. 'url' => 'shop/delivery/localconfig',
  1183. 'is_show' => 1,
  1184. 'is_control' => 1,
  1185. 'is_icon' => 0,
  1186. 'picture' => '',
  1187. 'picture_selected' => '',
  1188. 'sort' => 1,
  1189. ],
  1190. [
  1191. 'name' => 'EXPRESS_EDIT_PRINT_TEMPLATE',
  1192. 'title' => '运单模板',
  1193. 'url' => 'shop/express/editprinttemplate',
  1194. 'is_show' => 0,
  1195. 'is_control' => 1,
  1196. 'is_icon' => 0,
  1197. 'picture' => '',
  1198. 'picture_selected' => '',
  1199. 'sort' => 1,
  1200. ],
  1201. [
  1202. 'name' => 'EXPRESS_TEMPLATE',
  1203. 'title' => '运费模板',
  1204. 'url' => 'shop/express/template',
  1205. 'is_show' => 1,
  1206. 'is_control' => 1,
  1207. 'is_icon' => 0,
  1208. 'picture' => '',
  1209. 'picture_selected' => '',
  1210. 'sort' => 1,
  1211. ],
  1212. [
  1213. 'name' => 'EXPRESS_TEMPLATE_ADD',
  1214. 'title' => '添加运费模板',
  1215. 'url' => 'shop/express/addtemplate',
  1216. 'is_show' => 0,
  1217. 'is_control' => 1,
  1218. 'is_icon' => 0,
  1219. 'picture' => '',
  1220. 'picture_selected' => '',
  1221. 'sort' => 1,
  1222. ],
  1223. [
  1224. 'name' => 'EXPRESS_TEMPLATE_EDIT',
  1225. 'title' => '编辑运费模板',
  1226. 'url' => 'shop/express/edittemplate',
  1227. 'is_show' => 0,
  1228. 'is_control' => 1,
  1229. 'is_icon' => 0,
  1230. 'picture' => '',
  1231. 'picture_selected' => '',
  1232. 'sort' => 1,
  1233. ],
  1234. [
  1235. 'name' => 'EXPRESS_TEMPLATE_DELETE',
  1236. 'title' => '删除运费模板',
  1237. 'url' => 'shop/express/deletetemplate',
  1238. 'is_show' => 0,
  1239. 'is_control' => 1,
  1240. 'is_icon' => 0,
  1241. 'picture' => '',
  1242. 'picture_selected' => '',
  1243. 'sort' => 1,
  1244. ],
  1245. ]
  1246. ],
  1247. [
  1248. 'name' => 'ORDER_VERIFY_USER',
  1249. 'title' => '核销人员',
  1250. 'url' => 'shop/verify/user',
  1251. 'is_show' => 1,
  1252. 'is_control' => 1,
  1253. 'is_icon' => 0,
  1254. 'picture' => '',
  1255. 'picture_selected' => '',
  1256. 'sort' => 1,
  1257. 'child_list' => [
  1258. [
  1259. 'name' => 'ORDER_VERIFY_USER_ADD',
  1260. 'title' => '添加核销人员',
  1261. 'url' => 'shop/verify/adduser',
  1262. 'is_show' => 0,
  1263. 'is_control' => 1,
  1264. 'is_icon' => 0,
  1265. 'picture' => '',
  1266. 'picture_selected' => '',
  1267. 'sort' => 1,
  1268. ],
  1269. [
  1270. 'name' => 'ORDER_VERIFY_USER_DELETE',
  1271. 'title' => '删除核销人员',
  1272. 'url' => 'shop/verify/deleteuser',
  1273. 'is_show' => 0,
  1274. 'is_control' => 1,
  1275. 'is_icon' => 0,
  1276. 'picture' => '',
  1277. 'picture_selected' => '',
  1278. 'sort' => 1,
  1279. ], [
  1280. 'name' => 'ORDER_VERIFY_USER_EDIT',
  1281. 'title' => '编辑核销人员',
  1282. 'url' => 'shop/verify/edituser',
  1283. 'is_show' => 0,
  1284. 'is_control' => 1,
  1285. 'is_icon' => 0,
  1286. 'picture' => '',
  1287. 'picture_selected' => '',
  1288. 'sort' => 1,
  1289. ],
  1290. ]
  1291. ],
  1292. ]
  1293. ],
  1294. [
  1295. 'name' => 'USER_AUTH',
  1296. 'title' => '账户权限',
  1297. 'url' => 'shop/user/user',
  1298. 'parent' => '',
  1299. 'is_show' => 1,
  1300. 'is_control' => 0,
  1301. 'is_icon' => 0,
  1302. 'picture' => 'app/shop/view/public/img/icon/account.png',
  1303. 'picture_selected' => 'app/shop/view/public/img/icon/account.png',
  1304. 'sort' => 7,
  1305. 'child_list' => [
  1306. [
  1307. 'name' => 'USER_LIST',
  1308. 'title' => '用户管理',
  1309. 'url' => 'shop/user/user',
  1310. 'is_show' => 1,
  1311. 'is_control' => 1,
  1312. 'is_icon' => 0,
  1313. 'picture' => '',
  1314. 'picture_selected' => '',
  1315. 'sort' => 1,
  1316. 'child_list' => [
  1317. [
  1318. 'name' => 'USER_ADD',
  1319. 'title' => '用户添加',
  1320. 'url' => 'shop/user/adduser',
  1321. 'is_show' => 0,
  1322. 'is_control' => 1,
  1323. 'is_icon' => 0,
  1324. 'picture' => '',
  1325. 'picture_selected' => '',
  1326. 'sort' => 1,
  1327. ],
  1328. [
  1329. 'name' => 'USER_EDIT',
  1330. 'title' => '用户编辑',
  1331. 'url' => 'shop/user/edituser',
  1332. 'is_show' => 0,
  1333. 'is_control' => 1,
  1334. 'is_icon' => 0,
  1335. 'picture' => '',
  1336. 'picture_selected' => '',
  1337. 'sort' => 1,
  1338. ],
  1339. [
  1340. 'name' => 'USER_DELETE',
  1341. 'title' => '用户删除',
  1342. 'url' => 'shop/user/deleteuser',
  1343. 'is_show' => 0,
  1344. 'is_control' => 1,
  1345. 'is_icon' => 0,
  1346. 'picture' => '',
  1347. 'picture_selected' => '',
  1348. 'sort' => 1,
  1349. ],
  1350. [
  1351. 'name' => 'USER_MODIFY_STATUS',
  1352. 'title' => '调整用户状态',
  1353. 'url' => 'shop/user/modifyuserstatus',
  1354. 'is_show' => 0,
  1355. 'is_control' => 1,
  1356. 'is_icon' => 0,
  1357. 'picture' => '',
  1358. 'picture_selected' => '',
  1359. 'sort' => 1,
  1360. ],
  1361. ]
  1362. ],
  1363. [
  1364. 'name' => 'USER_GROUP',
  1365. 'title' => '用户组',
  1366. 'url' => 'shop/user/group',
  1367. 'is_show' => 1,
  1368. 'is_control' => 1,
  1369. 'is_icon' => 0,
  1370. 'picture' => '',
  1371. 'picture_selected' => '',
  1372. 'sort' => 1,
  1373. 'child_list' => [
  1374. [
  1375. 'name' => 'USER_GROUP_ADD',
  1376. 'title' => '用户组添加',
  1377. 'url' => 'shop/user/addgroup',
  1378. 'is_show' => 0,
  1379. 'is_control' => 1,
  1380. 'is_icon' => 0,
  1381. 'picture' => '',
  1382. 'picture_selected' => '',
  1383. 'sort' => 1,
  1384. ],
  1385. [
  1386. 'name' => 'USER_GROUP_EDIT',
  1387. 'title' => '用户组编辑',
  1388. 'url' => 'shop/user/editgroup',
  1389. 'is_show' => 0,
  1390. 'is_control' => 1,
  1391. 'is_icon' => 0,
  1392. 'picture' => '',
  1393. 'picture_selected' => '',
  1394. 'sort' => 1,
  1395. ],
  1396. [
  1397. 'name' => 'USER_GROUP_DELETE',
  1398. 'title' => '用户组删除',
  1399. 'url' => 'shop/user/deletegroup',
  1400. 'is_show' => 0,
  1401. 'is_control' => 1,
  1402. 'is_icon' => 0,
  1403. 'picture' => '',
  1404. 'picture_selected' => '',
  1405. 'sort' => 1,
  1406. ],
  1407. [
  1408. 'name' => 'USER_GROUP_MODIFY_STATUS',
  1409. 'title' => '调整用户状态',
  1410. 'url' => 'shop/user/modifygroupstatus',
  1411. 'is_show' => 0,
  1412. 'is_control' => 1,
  1413. 'is_icon' => 0,
  1414. 'picture' => '',
  1415. 'picture_selected' => '',
  1416. 'sort' => 1,
  1417. ],
  1418. ]
  1419. ],
  1420. [
  1421. 'name' => 'USER_LOG',
  1422. 'title' => '用户日志',
  1423. 'url' => 'shop/user/userlog',
  1424. 'is_show' => 1,
  1425. 'is_control' => 1,
  1426. 'is_icon' => 0,
  1427. 'picture' => '',
  1428. 'picture_selected' => '',
  1429. 'sort' => 1,
  1430. ],
  1431. ]
  1432. ]
  1433. ]
  1434. ]
  1435. ];