fix:1、添加跳链接的webview的插件。2、修复bug

This commit is contained in:
2026-07-14 16:12:11 +08:00
parent 110660f299
commit bb84cea894
79 changed files with 4455 additions and 512 deletions
+5 -1
View File
@@ -63,7 +63,9 @@ public class SaveingPotClass
// }
// else
// {
return $"{amount:N}";
var exchangeRateVo = GameHelper.GetExchangeRateVo();
var cash = exchangeRateVo.Multi * amount;
return $"{cash:N}";
//}
}
@@ -172,6 +174,8 @@ public class SaveingPotHelper
}
public static string getChNumber(float cash)
{
var exchangeRateVo = GameHelper.GetExchangeRateVo();
cash = exchangeRateVo.Multi * cash;
return $"{cash:N}";
}