sync: soul-admin 页面 | 原因: 前端页面修改

This commit is contained in:
卡若
2026-03-08 11:05:21 +08:00
parent db2f850966
commit 0af75f2354

View File

@@ -416,12 +416,17 @@ export function UsersPage() {
</Button>
<select
value={vipFilter}
onChange={(e) => { setVipFilter(e.target.value as 'all' | 'vip'); setPage(1) }}
onChange={(e) => {
const v = e.target.value as 'all' | 'vip' | 'complete'
setVipFilter(v); setPage(1)
if (poolParam) { searchParams.delete('pool'); setSearchParams(searchParams) }
}}
className="bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm"
disabled={rfmSortMode}
>
<option value="all"></option>
<option value="vip">VIP会员</option>
<option value="vip">VIP会员</option>
<option value="complete"></option>
</select>
<div className="relative">
<Search className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500" />