fix persistent-hint

This commit is contained in:
jxxghp
2024-06-03 10:14:03 +08:00
parent 4882cc0417
commit 4579e00283
7 changed files with 162 additions and 85 deletions

View File

@@ -338,7 +338,8 @@ onMounted(() => {
v-model="selectedSubscribeMode"
:items="subscribeModeItems"
label="订阅模式"
hint="自动:系统自动爬取站点首页资源;站点RSS使用站点RSS订阅资源站点RSS会自动获取也可手动在站点管理中补全"
hint="自动:自动爬取站点首页站点RSS通过站点RSS链接订阅"
persistent-hint
/>
</VCol>
<VCol cols="12" md="6">
@@ -346,7 +347,8 @@ onMounted(() => {
v-model="selectedRssInterval"
:items="rssIntervalItems"
label="站点RSS周期"
hint="设置站点RSS运行周期在订阅模式为站点RSS时生效"
hint="设置站点RSS运行周期在订阅模式为`站点RSS`时生效"
persistent-hint
/>
</VCol>
</VRow>
@@ -355,7 +357,8 @@ onMounted(() => {
<VSwitch
v-model="enableIntervalSearch"
label="开启订阅定时搜索"
hint="开启后系统每隔24小时将按名称搜索全站补全订阅可能漏掉的资源"
hint="每隔24小时全站搜索补全订阅可能漏掉的资源"
persistent-hint
/>
</VCol>
</VRow>
@@ -490,7 +493,8 @@ onMounted(() => {
v-model="defaultFilterRules.include"
type="text"
label="包含(关键字、正则式)"
hint="支持正式表达式,多个关键字用 | 分隔表示或"
hint="包含规则,支持正式表达式,多个关键字用 | 分隔表示或"
persistent-hint
/>
</VCol>
<VCol cols="12" md="6">
@@ -498,7 +502,8 @@ onMounted(() => {
v-model="defaultFilterRules.exclude"
type="text"
label="排除(关键字、正则式)"
hint="支持正式表达式,多个关键字用 | 分隔表示或"
hint="排除规则,支持正式表达式,多个关键字用 | 分隔表示或"
persistent-hint
/>
</VCol>
<VCol cols="12" md="6">
@@ -507,7 +512,8 @@ onMounted(() => {
type="text"
label="电影文件大小GB"
placeholder="0-30"
hint="格式0-30表示030GB之间的资源"
hint="文件大小范围,格式0-30表示0-30GB之间的资源"
persistent-hint
/>
</VCol>
<VCol cols="12" md="6">
@@ -516,7 +522,8 @@ onMounted(() => {
type="text"
label="剧集单集文件大小GB"
placeholder="0-10"
hint="格式0-10表示010GB之间的资源"
hint="单集文件大小范围,格式0-10表示0-10GB之间的资源"
persistent-hint
/>
</VCol>
<VCol cols="12" md="6">
@@ -526,15 +533,17 @@ onMounted(() => {
label="最小做种数"
placeholder="0"
hint="小于该值的资源将被过滤掉0表示不过滤"
persistent-hint
/>
</VCol>
<VCol cols="12" md="6">
<VTextField
v-model="defaultFilterRules.min_seeders_time"
type="text"
label="最少做种数生效发布时间(分钟)"
label="最少做种数生效发布时间(分钟)"
placeholder="0"
hint="发布时间距现在大于该值的资源将生效最小做种数规则0表示不生效"
hint="发布时间距当前时间大于该值的资源将生效最小做种数规则0表示不生效"
persistent-hint
/>
</VCol>
</VRow>