FastMovieAI 二开基线 v1.0 (完整源码)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace plugin\user\utils\enum;
|
||||
|
||||
use app\expose\enum\builder\Enum;
|
||||
|
||||
class MoneyAction extends Enum
|
||||
{
|
||||
const INCREASE = [
|
||||
'label' => '增加',
|
||||
'value' => 'increase',
|
||||
'props'=>[
|
||||
'type'=>'danger'
|
||||
]
|
||||
];
|
||||
const DECREASE = [
|
||||
'label' => '减少',
|
||||
'value' => 'decrease',
|
||||
'props'=>[
|
||||
'type'=>'success'
|
||||
]
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user