fix:1、修复bug
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user