1234567891011121314151617181920212223242526272829303132333435 |
- <?php
-
-
- namespace app\common\enum;
-
-
- class FootprintEnum
- {
- const ENTER_MALL = 1;
- const BROWSE_GOODS = 2;
- const ADD_CART = 3;
- const RECEIVE_COUPON = 4;
- const PLACE_ORDER = 5;
-
-
-
- public static function getSceneDesc($type = true)
- {
- $desc = [
- self::ENTER_MALL => '访问商城',
- self::BROWSE_GOODS => '浏览商品',
- self::ADD_CART => '加入购物车',
- self::RECEIVE_COUPON => '领取优惠券',
- self::PLACE_ORDER => '下单结算',
- ];
- if ($type === true) {
- return $desc;
- }
- return $desc[$type] ?? '未知';
- }
- }
|