mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-06 01:52:48 +08:00
18 lines
298 B
PHP
18 lines
298 B
PHP
<?php
|
|
|
|
namespace app\common\event\AdminLoginIndex;
|
|
|
|
class Index
|
|
{
|
|
public function handle($params)
|
|
{
|
|
$controller = $params['controller'];
|
|
|
|
$controller->assign('captcha',1);
|
|
|
|
return [
|
|
'response' => $controller->fetch('login/ext/index'),
|
|
];
|
|
}
|
|
}
|