1
This commit is contained in:
parent
34fb44cbae
commit
5708896d68
@ -196,7 +196,7 @@
|
|||||||
}
|
}
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.one = res.total
|
this.one = res.total || 0
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
request({
|
request({
|
||||||
@ -210,7 +210,7 @@
|
|||||||
}
|
}
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.two = res.total
|
this.two = res.total || 0
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
@ -174,7 +174,7 @@
|
|||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
|
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.one = res.total
|
this.one = res.total || 0
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
@ -190,7 +190,7 @@
|
|||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
|
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.two = res.total
|
this.two = res.total || 0
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
@ -206,7 +206,7 @@
|
|||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
|
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.three = res.total
|
this.three = res.total || 0
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user