This commit is contained in:
Rewrite0
2023-05-12 21:47:07 +08:00
parent c969cffcc0
commit 9bc64941e0
3 changed files with 5 additions and 5 deletions

View File

@@ -2,8 +2,8 @@
import {
form,
rssParserLang,
rssParserType,
rssParserMethodType,
rssParserType,
tfOptions,
} from '../form-data';
@@ -60,7 +60,7 @@ watch(filter, (nv) => {
<ConfigFormCol label="解析类型">
<el-select v-model="rssParser.parser_type" flex-1>
<el-option
v-for="(opt, index) in rssParserMethodType"
v-for="opt in rssParserMethodType"
:key="opt"
:value="opt"
></el-option>

View File

@@ -5,8 +5,8 @@ import type {
ProxyType,
RenameMethod,
RssParserLang,
RssParserType,
RssParserMethodType,
RssParserType,
} from '#/config';
export const form = reactive<Config>({

View File

@@ -1,4 +1,4 @@
export type BangumiItem = {
export interface BangumiItem {
id: number;
official_title: string;
year: string | null;
@@ -15,4 +15,4 @@ export type BangumiItem = {
rss_link: string[];
poster_link: string;
added: boolean;
};
}