This commit is contained in:
qingjiao 2025-12-31 18:10:33 +08:00
parent 9b8c8841d2
commit 32ae56a93c
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ class WebSocketManager {
} }
else if(json.Key === "DownProgress"){ else if(json.Key === "DownProgress"){
if(json.Value !== undefined){ if(json.Value !== undefined){
Config.DownValue = json.Value; Config.DownValue = formatFloat(json.Value,2);
} }
} }
else if(json.Key === "stopUpgrade"){ else if(json.Key === "stopUpgrade"){

View File

@ -63,7 +63,7 @@
style="border-radius: 1px;" style="border-radius: 1px;"
> >
<el-row <el-row
style="height: 25px;" style="height: 25px;text-align: center;"
> >
<span v-if="Config.UpDateIndex === 1"> <span v-if="Config.UpDateIndex === 1">
下载进度: {{ Config.DownValue }}% 下载进度: {{ Config.DownValue }}%