修复币安交易记录

This commit is contained in:
dekun
2026-05-19 18:31:30 +08:00
parent a95ee401bc
commit 8c05b2921d
3 changed files with 68 additions and 17 deletions
+1 -1
View File
@@ -1009,7 +1009,7 @@ function syncExchangePnl(force){
body: JSON.stringify({limit: 200, force: !!force})
}).then(r=>r.json()).then(data=>{
if(data.ok){
alert("已同步 " + (data.synced||0) + " / " + (data.candidates||0) + " 条记录,页面将刷新");
alert(data.msg || ("已同步 " + (data.synced||0) + " / " + (data.candidates||0) + " 条记录,页面将刷新"));
window.location.reload();
} else {
alert(data.msg || "同步失败");