You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.3 KiB

  1. <?php
  2. namespace App\Constants\v3;
  3. use Hyperf\Constants\AbstractConstants;
  4. use Hyperf\Constants\Annotation\Constants;
  5. /**
  6. * @Constants
  7. */
  8. class Tabs extends AbstractConstants
  9. {
  10. /**
  11. * @Message("小程序首页推荐")
  12. */
  13. const APPLET_INDEX_RECOMMEND = 'applet_index_recommend';
  14. /**
  15. * @Message("小程序首页懒族上新")
  16. */
  17. const APPLET_INDEX_NEW = 'applet_index_new';
  18. /**
  19. * @Message("小程序首页实时鲜货")
  20. */
  21. const APPLET_INDEX_FRESH = 'applet_index_fresh';
  22. /**
  23. * @Message("小程序首页上班带餐")
  24. */
  25. const APPLET_INDEX_OFFICE = 'applet_index_office';
  26. /**
  27. * @Message("搜索商品为你推荐")
  28. */
  29. const RECOMMEND_FOR_SEARCH_GOODS = 'recommend_search_goods';
  30. /**
  31. * @Message("搜索商户为你推荐")
  32. */
  33. const RECOMMEND_FOR_SEARCH_STORE = 'recommend_search_store';
  34. /**
  35. * @Message("个人中心为你推荐")
  36. */
  37. const RECOMMEND_FOR_USER_INDEX = 'recommend_user_index';
  38. /**
  39. * @Message("商品详情页为你推荐")
  40. */
  41. const RECOMMEND_FOR_GOODS_DETAIL = 'recommend_goods_detail';
  42. /**
  43. * @Message("商品详情页猜你喜欢")
  44. */
  45. const RECOMMEND_LIKE_FOR_GOODS_DETAIL = 'recommend_like_goods_detail';
  46. }