- 源码: xhadmincn/FastMovieAI (Apache 2.0) - 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION - vendor/示例资源已gitignore
59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace plugin\finance\utils\enum;
|
|
|
|
use app\expose\enum\builder\Enum;
|
|
|
|
class PointsBillScene extends Enum
|
|
{
|
|
const ADMIN = [
|
|
'label' => '管理员操作',
|
|
'value' => 'admin',
|
|
'props' => [
|
|
'type' => 'warning'
|
|
]
|
|
];
|
|
const RECHARGE = [
|
|
'label' => '充值',
|
|
'value' => 'recharge',
|
|
'props' => [
|
|
'type' => 'success'
|
|
]
|
|
];
|
|
const VIP_UPGRADE = [
|
|
'label' => 'VIP升级',
|
|
'value' => 'vip_upgrade',
|
|
'props' => [
|
|
'type' => 'success'
|
|
]
|
|
];
|
|
const REGISTER = [
|
|
'label' => '注册',
|
|
'value' => 'register',
|
|
'props' => [
|
|
'type' => 'warning'
|
|
]
|
|
];
|
|
const INVITE = [
|
|
'label' => '邀请',
|
|
'value' => 'invite',
|
|
'props' => [
|
|
'type' => 'warning'
|
|
]
|
|
];
|
|
const CONSUME = [
|
|
'label' => '消费',
|
|
'value' => 'consume',
|
|
'props' => [
|
|
'type' => 'primary'
|
|
]
|
|
];
|
|
const REFUNDED = [
|
|
'label' => '退款',
|
|
'value' => 'refunded',
|
|
'props' => [
|
|
'type' => 'danger'
|
|
]
|
|
];
|
|
}
|