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.
42 lines
901 B
42 lines
901 B
<?php
|
|
|
|
namespace App\Constants\v3;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
/**
|
|
* @Constants
|
|
*/
|
|
class Tabs extends AbstractConstants
|
|
{
|
|
/**
|
|
* @Message("小程序首页推荐")
|
|
*/
|
|
const APPLET_INDEX_RECOMMEND = 'applet_index_recommend';
|
|
|
|
/**
|
|
* @Message("小程序首页懒族上新")
|
|
*/
|
|
const APPLET_INDEX_NEW = 'applet_index_new';
|
|
|
|
/**
|
|
* @Message("小程序首页实时鲜货")
|
|
*/
|
|
const APPLET_INDEX_FRESH = 'applet_index_fresh';
|
|
|
|
/**
|
|
* @Message("小程序首页上班带餐")
|
|
*/
|
|
const APPLET_INDEX_OFFICE = 'applet_index_office';
|
|
|
|
/**
|
|
* @Message("搜索商品为你推荐")
|
|
*/
|
|
const RECOMMEND_FOR_SEARCH_GOODS = 'recommend_search_goods';
|
|
|
|
/**
|
|
* @Message("搜索商户为你推荐")
|
|
*/
|
|
const RECOMMEND_FOR_SEARCH_STORE = 'recommend_search_store';
|
|
}
|