[游戏管理]用户管理-优化表单样式

This commit is contained in:
2026-04-15 17:46:04 +08:00
parent c213b2d9e9
commit 56df105af6
8 changed files with 199 additions and 182 deletions

View File

@@ -1,6 +1,6 @@
<?php
namespace app\admin\controller\game;
namespace app\admin\controller\user;
use Throwable;
use app\common\controller\Backend;
@@ -14,9 +14,9 @@ use Webman\Http\Request as WebmanRequest;
class User extends Backend
{
/**
* GameUser模型对象
* User模型对象
* @var object|null
* @phpstan-var \app\common\model\GameUser|null
* @phpstan-var \app\common\model\User|null
*/
protected ?object $model = null;
@@ -28,7 +28,7 @@ class User extends Backend
protected function initController(WebmanRequest $request): ?Response
{
$this->model = new \app\common\model\GameUser();
$this->model = new \app\common\model\User();
return null;
}