menu_shop.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 平台端菜单设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. [
  7. 'name' => 'MOBILE_SHOP_CONFIG',
  8. 'title' => '商家端',
  9. 'url' => 'mobileshop://shop/config/deploy',
  10. 'parent' => 'WEBSITE_DEPLOYMENT',
  11. 'is_show' => 1,
  12. 'picture' => 'app/shop/view/public/img/icon/sys_config.png',
  13. 'picture_selected' => '',
  14. 'sort' => 3,
  15. 'child_list' => [
  16. [
  17. 'name' => 'MOBILE_SHOP_DEPLOY',
  18. 'title' => '网站部署',
  19. 'url' => 'mobileshop://shop/config/deploy',
  20. 'parent' => '',
  21. 'is_show' => 1,
  22. 'picture' => '',
  23. 'picture_selected' => '',
  24. 'sort' => 1,
  25. 'child_list' => [],
  26. ],
  27. [
  28. 'name' => 'MOBILE_SHOP_WEAPP_CONFIG',
  29. 'title' => '小程序设置',
  30. 'url' => 'mobileshop://shop/config/weapp',
  31. 'parent' => '',
  32. 'is_show' => 1,
  33. 'picture' => '',
  34. 'picture_selected' => '',
  35. 'sort' => 1,
  36. 'child_list' => [],
  37. ],
  38. ]
  39. ]
  40. ];