123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace app\dict\shop;
- /**
- * 店铺入驻申请
- * Class ShopApplyDict
- * @package addon\mall\app\dict\shop
- */
- class ShopApplyDict
- {
- public const WAIT_AUDIT = 1;//待审核
- public const PASS = 2;//已通过
- public const REFUSE = -1;//已拒绝
- public const WAIT_OPEN = 1;//待开店
- public const OPENED = 2;//已开店
- /**
- * 入驻审核状态
- * @return array
- */
- public static function getStatus()
- {
- return [
- self::WAIT_AUDIT => get_lang('dict_site_shop_apply.status_wait_audit'),//待审核
- self::PASS => get_lang('dict_site_shop_apply.status_pass'),//已通过
- self::REFUSE => get_lang('dict_site_shop_apply.status_refuse'),//已拒绝
- ];
- }
- /**
- * 开店状态
- * @return array
- */
- public static function getOpenStatus()
- {
- return [
- self::WAIT_OPEN => get_lang('dict_site_shop_apply.status_wait_open'),//待开店
- self::OPENED => get_lang('dict_site_shop_apply.status_opened'),//已开店
- ];
- }
- }
|