bug修复

This commit is contained in:
wuhongjian 2022-06-15 14:58:36 +08:00
parent 6be6ffae6a
commit e2b8c6a9bd
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@
getVideoList(params).then((res) => { getVideoList(params).then((res) => {
// //
if (res.data.data) { if (res.data.data) {
sjNum.value = res.data.data.total || 0 jcNum.value = res.data.data.total || 0
} }
}) })
} }
@ -98,7 +98,7 @@
} }
getRecord(obj).then((res) => { getRecord(obj).then((res) => {
if (res.data.data) { if (res.data.data) {
jcNum.value = res.data.data.total || 0 sjNum.value = res.data.data.total || 0
} }
}) })
} }