This commit is contained in:
X1627315083
2024-01-31 15:10:45 +08:00
parent c533acb450
commit c06f2b6f71
2 changed files with 5 additions and 2 deletions

View File

@@ -222,6 +222,9 @@ export default defineComponent({
getBloodBars(){
Https.axiosGet(Https.httpUrls.getBloodBars,{params:{userId:this?.userInfo?.userId}}).then((rv: any) => {
if (rv) {
if(rv <= 0){
rv = 0
}
this.bloodBars = rv*100
}
})