menu_shop.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 平台端菜单设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. [
  7. 'name' => 'PROMOTION_COUPON',
  8. 'title' => '优惠券',
  9. 'url' => 'coupon://shop/coupon/lists',
  10. 'parent' => 'PROMOTION_CENTER',
  11. 'is_show' => 0,
  12. 'is_control' => 0,
  13. 'is_icon' => 0,
  14. 'picture' => '',
  15. 'picture_select' => '',
  16. 'sort' => 100,
  17. 'child_list' => [
  18. [
  19. 'name' => 'PROMOTION_COUPON_DETAIL',
  20. 'title' => '优惠券详情',
  21. 'url' => 'coupon://shop/coupon/detail',
  22. 'sort' => 1,
  23. 'is_show' => 0
  24. ],
  25. [
  26. 'name' => 'PROMOTION_COUPON_ADD',
  27. 'title' => '添加优惠券',
  28. 'url' => 'coupon://shop/coupon/add',
  29. 'sort' => 1,
  30. 'is_show' => 0
  31. ],
  32. [
  33. 'name' => 'PROMOTION_COUPON_EDIT',
  34. 'title' => '编辑优惠券',
  35. 'url' => 'coupon://shop/coupon/edit',
  36. 'sort' => 1,
  37. 'is_show' => 0
  38. ],
  39. [
  40. 'name' => 'PROMOTION_COUPON_CLOSE',
  41. 'title' => '关闭优惠券',
  42. 'url' => 'coupon://shop/coupon/close',
  43. 'sort' => 1,
  44. 'is_show' => 0
  45. ],
  46. [
  47. 'name' => 'PROMOTION_COUPON_DELETE',
  48. 'title' => '删除优惠券',
  49. 'url' => 'coupon://shop/coupon/delete',
  50. 'sort' => 1,
  51. 'is_show' => 0
  52. ],
  53. [
  54. 'name' => 'PROMOTION_COUPON_RECEIVE',
  55. 'title' => '优惠券领取记录',
  56. 'url' => 'coupon://shop/coupon/receive',
  57. 'sort' => 1,
  58. 'is_show' => 0
  59. ],
  60. ]
  61. ],
  62. ];