mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 15:36:49 +08:00
fix ui bug
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "moviepilot",
|
"name": "moviepilot",
|
||||||
"version": "1.3.5-1",
|
"version": "1.3.5-2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"bin": "dist/service.js",
|
"bin": "dist/service.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ const subscribeSeasonDialog = ref(false)
|
|||||||
const subscribeEditDialog = ref(false)
|
const subscribeEditDialog = ref(false)
|
||||||
|
|
||||||
// 订阅ID
|
// 订阅ID
|
||||||
const subscribeId = ref(0)
|
const subscribeId = ref<number>()
|
||||||
|
|
||||||
// 季详情
|
// 季详情
|
||||||
const seasonInfos = ref<TmdbSeason[]>([])
|
const seasonInfos = ref<TmdbSeason[]>([])
|
||||||
|
|||||||
@@ -205,8 +205,7 @@ const effectOptions = ref([
|
|||||||
},
|
},
|
||||||
])
|
])
|
||||||
|
|
||||||
// 初始化
|
watchEffect(() => {
|
||||||
onMounted(async () => {
|
|
||||||
if (props.subid) {
|
if (props.subid) {
|
||||||
getSiteList()
|
getSiteList()
|
||||||
getSubscribeInfo()
|
getSubscribeInfo()
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ const seasonsNotExisted = ref<{ [key: number]: number }>({})
|
|||||||
const seasonsSubscribed = ref<{ [key: number]: boolean }>({})
|
const seasonsSubscribed = ref<{ [key: number]: boolean }>({})
|
||||||
|
|
||||||
// 订阅编号
|
// 订阅编号
|
||||||
const subscribeId = ref(0)
|
const subscribeId = ref<number>()
|
||||||
|
|
||||||
// 调用API查询详情
|
// 调用API查询详情
|
||||||
async function getMediaDetail() {
|
async function getMediaDetail() {
|
||||||
|
|||||||
Reference in New Issue
Block a user