FastMovieAI AI短剧创作平台 二开基线

- 源码: xhadmincn/FastMovieAI (Apache 2.0)
- 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION
- vendor/示例资源已gitignore
This commit is contained in:
李建琦
2026-08-26 18:37:36 +08:00
commit eae151fd57
888 changed files with 105571 additions and 0 deletions
@@ -0,0 +1,38 @@
<?php
namespace app\expose\build\config;
use app\expose\utils\DataModel;
class Login extends DataModel
{
protected $data = [
# 是否启用登录
'enable' => true,
# 登录标题
'title' => '账号密码登录',
# 登录请求地址
'url' => 'Login/login',
# 检测登录状态地址
'check' => 'Login/check',
# 登录页背景,auto:自动,off:关闭,url:自定义,url[]:多张图片
'bg_image' => 'auto',
# 登录页展示图片
'image' => '',
# 开启图形验证码,在短信登录时默认开启
'captcha' => true,
# 跳转链接文案
'link_text' => '',
# 用户协议链接
'user_agreement' => '/article/user_agreement.html',
# 用户协议自定义配置
/* 'user_agreement_config'=>[
'title'=>'《用户协议》',
'label'=>'点击"登录"即代表你已阅读并同意'
] */
];
public function __construct(array $data = [])
{
$this->data = array_merge($this->data, $data);
}
}