This commit is contained in:
nyoung 2024-08-24 09:44:45 +08:00
parent 34fb44cbae
commit 5708896d68
2 changed files with 5 additions and 5 deletions

View File

@ -196,7 +196,7 @@
}
}).then((res) => {
if (res.code == 200) {
this.one = res.total
this.one = res.total || 0
}
})
request({
@ -210,7 +210,7 @@
}
}).then((res) => {
if (res.code == 200) {
this.two = res.total
this.two = res.total || 0
}
})

View File

@ -174,7 +174,7 @@
}).then((res) => {
if (res.code == 200) {
this.one = res.total
this.one = res.total || 0
}
})
@ -190,7 +190,7 @@
}).then((res) => {
if (res.code == 200) {
this.two = res.total
this.two = res.total || 0
}
})
@ -206,7 +206,7 @@
}).then((res) => {
if (res.code == 200) {
this.three = res.total
this.three = res.total || 0
}
})