Merge pull request #117 from thsrite/main

fix 搜索默认规则支持最小做种数
This commit is contained in:
jxxghp
2024-04-25 16:21:52 +08:00
committed by GitHub

View File

@@ -30,6 +30,7 @@ const selectedSites = ref<number[]>([])
const defaultFilterRules = ref({
include: '',
exclude: '',
min_seeders: 0
})
// 导入代码弹窗
@@ -401,6 +402,15 @@ onMounted(() => {
hint="支持正式表达式,多个关键字用 | 分隔表示或"
/>
</VCol>
<VCol cols="12" md="6">
<VTextField
v-model="defaultFilterRules.min_seeders"
type="text"
label="最小做种数"
placeholder="0"
hint="小于该值的资源将被过滤掉0表示不过滤"
/>
</VCol>
</VRow>
</VForm>
</VCardText>