修复委托单加载中

This commit is contained in:
dekun
2026-05-17 13:59:01 +08:00
parent f750f380eb
commit 86a6623806
2 changed files with 2 additions and 0 deletions
@@ -1681,6 +1681,7 @@ function refreshPriceSnapshotConditional(){
} }
const rrEl = document.getElementById(`order-rr-${o.id}`); const rrEl = document.getElementById(`order-rr-${o.id}`);
if(rrEl) rrEl.innerText = formatRrRatio(o.rr_ratio); if(rrEl) rrEl.innerText = formatRrRatio(o.rr_ratio);
paintExchangeTpslRow(o.id, o.exchange_tpsl || {});
}); });
} }
}).catch(()=>{}); }).catch(()=>{});
+1
View File
@@ -1696,6 +1696,7 @@ function refreshPriceSnapshotConditional(){
} }
const rrEl = document.getElementById(`order-rr-${o.id}`); const rrEl = document.getElementById(`order-rr-${o.id}`);
if(rrEl) rrEl.innerText = formatRrRatio(o.rr_ratio); if(rrEl) rrEl.innerText = formatRrRatio(o.rr_ratio);
paintExchangeTpslRow(o.id, o.exchange_tpsl || {});
}); });
} }
}).catch(()=>{}); }).catch(()=>{});