支持跳过斗鱼手机号绑定并优化标签筛选

This commit is contained in:
yml2213
2026-08-07 22:07:39 +08:00
parent 535fcbb257
commit a67d144b78
4 changed files with 163 additions and 10 deletions
@@ -313,9 +313,13 @@ export default function AssignmentsPage() {
/>
<Select
allowClear
showSearch
placeholder="按标签筛选"
value={filterTag}
onChange={(v) => setFilterTag(v || undefined)}
filterOption={(input, option) =>
String(option?.label || '').toLowerCase().includes(input.trim().toLowerCase())
}
style={{ width: 150 }}
size="small"
options={allTags.map((t) => ({ value: t, label: t }))}