修复了原因

This commit is contained in:
2020-11-11 09:43:03 +08:00
parent 5590866254
commit 9f03f3b3cc

View File

@@ -233,6 +233,7 @@ interface VideoDetail{
share: number;
watch: number;
score: string;
statusdesc: string;
}
export async function videodetail(data?: any,ifupdate?: number) {
@@ -264,8 +265,8 @@ export async function videodetail(data?: any,ifupdate?: number) {
updatedAt: res.data.updated_at,
watch: res.data.watch,
share: res.data.share,
score: res.data.score
score: res.data.score,
statusdesc: res.data.statusdesc
}
}