sync: soul-admin 页面 | 原因: 前端页面修改
This commit is contained in:
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user