mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 15:36:49 +08:00
feat RSS地址维护
This commit is contained in:
@@ -840,55 +840,6 @@ export interface Setting {
|
|||||||
DOWNLOAD_PATH: string
|
DOWNLOAD_PATH: string
|
||||||
}
|
}
|
||||||
|
|
||||||
// 自定义订阅
|
|
||||||
export interface Rss {
|
|
||||||
id?: number
|
|
||||||
// 名称
|
|
||||||
name?: string
|
|
||||||
// RSS地址
|
|
||||||
url?: string
|
|
||||||
// 类型
|
|
||||||
type?: string
|
|
||||||
// 标题
|
|
||||||
title?: string
|
|
||||||
// 年份
|
|
||||||
year?: string
|
|
||||||
// TMDBID
|
|
||||||
tmdbid?: number
|
|
||||||
// 季号
|
|
||||||
season?: number
|
|
||||||
// 海报
|
|
||||||
poster?: string
|
|
||||||
// 背景图
|
|
||||||
backdrop?: string
|
|
||||||
// 评分
|
|
||||||
vote?: number
|
|
||||||
// 简介
|
|
||||||
description?: string
|
|
||||||
// 总集数
|
|
||||||
total_episode?: number
|
|
||||||
// 包含
|
|
||||||
include?: string
|
|
||||||
// 排除
|
|
||||||
exclude?: string
|
|
||||||
// 洗版
|
|
||||||
best_version?: number
|
|
||||||
// 是否使用代理服务器
|
|
||||||
proxy?: number
|
|
||||||
// 是否使用过滤规则
|
|
||||||
filter?: boolean
|
|
||||||
// 保存路径
|
|
||||||
save_path?: string
|
|
||||||
// 已处理数量
|
|
||||||
processed?: number
|
|
||||||
// 附加信息
|
|
||||||
note?: string
|
|
||||||
// 最后更新时间
|
|
||||||
last_update?: string
|
|
||||||
// 状态 0-停用,1-启用
|
|
||||||
state?: number
|
|
||||||
}
|
|
||||||
|
|
||||||
// 文件浏览接口
|
// 文件浏览接口
|
||||||
export interface EndPoints {
|
export interface EndPoints {
|
||||||
list: any
|
list: any
|
||||||
|
|||||||
@@ -72,9 +72,6 @@ const resourceTotalItems = ref(0)
|
|||||||
// 每页条数
|
// 每页条数
|
||||||
const resourceItemsPerPage = ref(25)
|
const resourceItemsPerPage = ref(25)
|
||||||
|
|
||||||
// 当前页码
|
|
||||||
const resourceCurrentPage = ref(0)
|
|
||||||
|
|
||||||
// 用户名密码表单
|
// 用户名密码表单
|
||||||
const userPwForm = ref({
|
const userPwForm = ref({
|
||||||
username: '',
|
username: '',
|
||||||
@@ -474,6 +471,12 @@ onMounted(() => {
|
|||||||
</VCol>
|
</VCol>
|
||||||
</VRow>
|
</VRow>
|
||||||
<VRow>
|
<VRow>
|
||||||
|
<VCol cols="12">
|
||||||
|
<VTextField
|
||||||
|
v-model="siteForm.rss"
|
||||||
|
label="RSS地址"
|
||||||
|
/>
|
||||||
|
</VCol>
|
||||||
<VCol cols="12">
|
<VCol cols="12">
|
||||||
<VTextarea
|
<VTextarea
|
||||||
v-model="siteForm.cookie"
|
v-model="siteForm.cookie"
|
||||||
|
|||||||
@@ -149,6 +149,7 @@ onBeforeMount(fetchData)
|
|||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<VCard title="新增站点">
|
<VCard title="新增站点">
|
||||||
|
<DialogCloseBtn @click="siteAddDialog = false" />
|
||||||
<VCardText class="pt-2">
|
<VCardText class="pt-2">
|
||||||
<VForm @submit.prevent="() => {}">
|
<VForm @submit.prevent="() => {}">
|
||||||
<VRow>
|
<VRow>
|
||||||
@@ -185,6 +186,12 @@ onBeforeMount(fetchData)
|
|||||||
</VCol>
|
</VCol>
|
||||||
</VRow>
|
</VRow>
|
||||||
<VRow>
|
<VRow>
|
||||||
|
<VCol cols="12">
|
||||||
|
<VTextField
|
||||||
|
v-model="siteForm.rss"
|
||||||
|
label="RSS地址"
|
||||||
|
/>
|
||||||
|
</VCol>
|
||||||
<VCol cols="12">
|
<VCol cols="12">
|
||||||
<VTextarea
|
<VTextarea
|
||||||
v-model="siteForm.cookie"
|
v-model="siteForm.cookie"
|
||||||
|
|||||||
Reference in New Issue
Block a user