feat: 视频规则部分,添加不区分大小写的“包含”过滤 (#559)

This commit is contained in:
ᴀᴍᴛᴏᴀᴇʀ
2025-12-06 22:00:14 +08:00
committed by GitHub
parent f1703096fd
commit 3f047771cb
3 changed files with 5 additions and 0 deletions

View File

@@ -33,6 +33,7 @@
return [
{ value: 'equals', label: '等于' },
{ value: 'contains', label: '包含' },
{ value: 'icontains', label: '包含(不区分大小写)' },
{ value: 'prefix', label: '以...开头' },
{ value: 'suffix', label: '以...结尾' },
{ value: 'matchesRegex', label: '匹配正则' }