menu_shop.php 996 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 平台端菜单设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. [
  7. 'name' => 'MEMBER_CONSUME',
  8. 'title' => '消费奖励',
  9. 'url' => 'memberconsume://shop/config/index',
  10. 'parent' => 'PROMOTION_CENTER',
  11. 'is_show' => 1,
  12. 'is_control' => 1,
  13. 'is_icon' => 0,
  14. 'picture' => '',
  15. 'picture_select' => '',
  16. 'sort' => 100,
  17. 'child_list' => [
  18. [
  19. 'name' => 'MEMBER_CONSUME_CONFIG',
  20. 'title' => '奖励设置',
  21. 'url' => 'memberconsume://shop/config/index',
  22. 'is_show' => 1,
  23. ],
  24. [
  25. 'name' => 'MEMBER_CONSUME_LIST',
  26. 'title' => '奖励记录',
  27. 'url' => 'memberconsume://shop/config/lists',
  28. 'is_show' => 1,
  29. ],
  30. ]
  31. ],
  32. ];