FastMovieAI 二开基线 v1.0 (完整源码)
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<?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'
|
||||
]
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user