提交
This commit is contained in:
@@ -7,6 +7,7 @@ using DG.Tweening;
|
||||
using FairyGUI;
|
||||
using FGUI.ACommon;
|
||||
using FGUI.bkg_jilu;
|
||||
using NSubstitute.ReturnsExtensions;
|
||||
using UnityEngine;
|
||||
|
||||
namespace BingoBrain
|
||||
@@ -129,7 +130,19 @@ namespace BingoBrain
|
||||
string[] values = ctrl.model.recordList[index].Split('-');
|
||||
|
||||
item.name.text = values[0];
|
||||
|
||||
item.num.text = GameHelper.getChString(decimal.Parse(values[1]));
|
||||
|
||||
if (GameHelper.isRDExchangeMode())
|
||||
{
|
||||
string str = "<img src='ui://pmf3wbjidz5jpj6'/>";
|
||||
item.num.text = str + $" {decimal.Parse(values[1]):N}";
|
||||
}
|
||||
else
|
||||
{
|
||||
item.num.text = $"${decimal.Parse(values[1]):N}";
|
||||
|
||||
}
|
||||
string[] parts = values[2].Split(" ");
|
||||
item.time.text = parts[0];
|
||||
item.lab_claim.text = GameHelper.getDesByKey("ww");
|
||||
|
||||
Reference in New Issue
Block a user