menu_shop.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 平台端菜单设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. [
  7. 'name' => 'ADDON_POSTERTEMPLATE',
  8. 'title' => '商品海报',
  9. 'url' => 'postertemplate://shop/postertemplate/lists',
  10. 'parent' => 'PROMOTION_TOOL',
  11. 'is_show' => 1,
  12. 'is_control' => 1,
  13. 'is_icon' => 0,
  14. 'picture' => 'addon/postertemplate/poster.jpg',
  15. 'picture_select' => 'addon/postertemplate/poster_selected.jpg',
  16. 'sort' => 100,
  17. 'child_list' => [
  18. [
  19. 'name' => 'ADDON_POSTERTEMPLATE_LIST',
  20. 'title' => '海报列表',
  21. 'url' => 'postertemplate://shop/postertemplate/lists',
  22. 'is_show' => 1,
  23. ],
  24. [
  25. 'name' => 'ADDON_POSTERTEMPLATE_ADD',
  26. 'title' => '新增海报',
  27. 'url' => 'postertemplate://shop/postertemplate/addpostertemplate',
  28. 'is_show' => 0,
  29. ],
  30. [
  31. 'name' => 'ADDON_POSTERTEMPLATE_EDIT',
  32. 'title' => '编辑海报',
  33. 'url' => 'postertemplate://shop/postertemplate/editpostertemplate',
  34. 'is_show' => 0,
  35. ],
  36. ],
  37. ]
  38. ];