fix:1、修复bug

This commit is contained in:
2026-07-13 14:16:20 +08:00
parent 6b2fb1b091
commit 1525921521
23 changed files with 941 additions and 13 deletions
+4 -2
View File
@@ -1818,14 +1818,16 @@ namespace RedHotRoast
public static string getChString(decimal ch)
{
var exchangeRateVo = GetExchangeRateVo();
ch = (decimal)exchangeRateVo.Multi * ch;
if (isRDExchangeMode() && IsGiftSwitch())
{
string str = "<img src='ui://o9974uc5m39de3q'/>";
return str + $"$ {ch:N}";
return str + $"{exchangeRateVo.Payicon}{ch:N}";
}
else
{
return $"${ch:N}";
return $"{exchangeRateVo.Currency}{ch:N}";
}
}
public static string getTrackEvenName()