Files
fastmovieai/fastmovie-admin/app/expose/enum/PaymentChannels.php
T
李建琦 eae151fd57 FastMovieAI AI短剧创作平台 二开基线
- 源码: xhadmincn/FastMovieAI (Apache 2.0)
- 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION
- vendor/示例资源已gitignore
2026-08-26 18:37:36 +08:00

74 lines
1.7 KiB
PHP

<?php
namespace app\expose\enum;
use app\expose\enum\builder\Enum;
class PaymentChannels extends Enum
{
const WXPAY = [
'label' => '微信支付',
'value' => 'wxpay',
'icon' => '/static/image/wxpay.png',
'props' => [
'type' => 'success'
]
];
const ALIPAY = [
'label' => '支付宝支付',
'value' => 'alipay',
'icon' => '/static/image/alipay.png',
'props' => [
'type' => 'primary'
]
];
const BALANCE = [
'label' => '余额支付',
'value' => 'balance',
'icon' => '/static/image/balance.png',
'props' => [
'type' => 'info'
]
];
const INTEGRAL = [
'label' => '积分支付',
'value' => 'integral',
'icon' => '/static/image/integral.png',
'props' => [
'type' => 'warning'
]
];
const CASH = [
'label' => '现金支付',
'value' => 'cash',
'icon' => '/static/image/cash.png',
'props' => [
'type' => 'danger'
]
];
const COUPON = [
'label' => '优惠券支付',
'value' => 'coupon',
'icon' => '/static/image/coupon.png',
'props' => [
'type' => 'info'
]
];
const FREE = [
'label' => '免费',
'value' => 'free',
'icon' => '/static/image/free.png',
'props' => [
'type' => 'success'
]
];
const ADMIN = [
'label' => '管理员操作',
'value' => 'admin',
'icon' => '/static/image/admin.png',
'props' => [
'type' => 'warning'
]
];
}