style: optimize ui for login and index pages with modern ios tech style

This commit is contained in:
2026-05-20 16:06:46 +08:00
parent c9ad4ae2ed
commit 485ba7a380
10 changed files with 752 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace app\common\model;
use think\model\concern\SoftDelete;
class AssetUser extends BaseModel
{
protected $name = 'asset_user';
protected $autoWriteTimestamp = true;
// Optional: Hide password when returning array/json
protected $hidden = ['password'];
}