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.
31 lines
587 B
31 lines
587 B
<?php
|
|
|
|
namespace App\Constants\v3;
|
|
|
|
/**
|
|
* 选项卡标识
|
|
* Class Tabs
|
|
* @package App\Constants\v3
|
|
*/
|
|
class Tabs
|
|
{
|
|
/**
|
|
* @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';
|
|
}
|