| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace common\enums;
- use common\enums\BaseEnum;
- /**
- * 下单类型
- *
- *
- * Class PreviewTypeEnum
- * @package addons\TinyShop\common\enums
- * @author qimall
- */
- class PreviewTypeEnum extends BaseEnum
- {
- const BUY_NOW = 'buy_now';
- const CART = 'cart';
- const RESERVE_NOW = 'reserve_now';
- const FREIGHT = 'freight';
- const EXCHANGE_NOW = 'exchange_now';
- const REGISTRATION_NOW ='registration_now';
- const REMULTI_NOW ='multi_now';
-
- /**
- * @return array
- */
- public static function getMap(): array
- {
- return [
- self::BUY_NOW => '立即购买',
- self::CART => '购物车',
- self::RESERVE_NOW => '立即预约',
- self::FREIGHT => '运费计算',
- self::EXCHANGE_NOW => '立即兑换',
- self::REGISTRATION_NOW => '立即挂号',
- ];
- }
- }
|