From fcb5f9465646584f25861ddacc27f7b903748303 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Thu, 7 Dec 2023 13:57:03 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20=E4=BF=AE=E6=AD=A3=20vod.i?= =?UTF-8?q?d=20=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/post/tp-vod.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/post/tp-vod.vue b/src/components/post/tp-vod.vue index 7ad982f7..fbd6bc32 100644 --- a/src/components/post/tp-vod.vue +++ b/src/components/post/tp-vod.vue @@ -21,7 +21,7 @@ import { onMounted, ref, toRaw } from "vue"; interface TpVod { insert: { vod: { - id: number; + id: string; duration: number; cover: string; resolutions: Array<{ @@ -52,7 +52,7 @@ console.log("tpVod", props.data.insert.vod.id, toRaw(props.data).insert.vod); onMounted(async () => { const option: Option = { - id: props.data.insert.vod.id.toString(), + id: props.data.insert.vod.id, container: `#tp-vod-${props.data.insert.vod.id}`, url: "", poster: props.data.insert.vod.cover,