get_lang('dict_mall_coupon.all'), self::CATEGORY => get_lang('dict_mall_coupon.category'), self::GOODS => get_lang('dict_mall_coupon.goods'), self::BRAND => get_lang('dict_mall_coupon.brand'), self::MALL_CATEGORY => get_lang('dict_mall_coupon.category'), ]; if ($type == '') return $list; return $list[$type] ?? ''; } /** * 领取优惠券类型 * @param string $type * @return array|mixed|string */ public static function getReceiveType($type = ''){ $list = [ self::USER => get_lang('dict_mall_coupon.user'), self::GRANT => get_lang('dict_mall_coupon.grant'), ]; if ($type == '') return $list; return $list[$type] ?? ''; } /** * 优惠券活动状态 * @param $status * @return array|mixed|string */ public static function getStatus($status = ''){ $list = [ self::WAIT_START => get_lang('dict_mall_coupon.wait_start'), self::NORMAL => get_lang('dict_mall_coupon.normal'), self::EXPIRE => get_lang('dict_mall_coupon.expire'), self::INVALID => get_lang('dict_mall_coupon.invalid'), ]; if ($status == '') return $list; return $list[$status] ?? ''; } }