From 71bfa85aece42afa703e192d72a5ddece649dd15 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期二, 13 十一月 2018 10:42:31 +0800
Subject: [PATCH] 3335 api命名修改
---
System/Store/Logic/BuyGuardTip.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/System/Store/Logic/BuyGuardTip.cs b/System/Store/Logic/BuyGuardTip.cs
index 33fe5a2..3c3fe77 100644
--- a/System/Store/Logic/BuyGuardTip.cs
+++ b/System/Store/Logic/BuyGuardTip.cs
@@ -347,8 +347,8 @@
{
if (offset > 0)
{
- needPoinNum.text = UIHelper.GetTextColorByItemColor(TextColType.Red, StringUtility.Contact(needPoint, Language.Get("KnapS118", offset)));
- needPoinText.text = UIHelper.GetTextColorByItemColor(TextColType.Red, msg);
+ needPoinNum.text = UIHelper.AppendStringColor(TextColType.Red, StringUtility.Contact(needPoint, Language.Get("KnapS118", offset)));
+ needPoinText.text = UIHelper.AppendStringColor(TextColType.Red, msg);
}
else
{
@@ -455,11 +455,11 @@
if (!m_storeModel.MoneyIsEnough(buyItem.storeConfig.MoneyType, _price))
{
- buyPriceText.text = UIHelper.GetTextColorByItemColor(TextColType.Red, _price.ToString());
+ buyPriceText.text = UIHelper.AppendStringColor(TextColType.Red, _price.ToString());
}
else
{
- buyPriceText.text = UIHelper.GetTextColorByItemColor(TextColType.Green, _price.ToString());
+ buyPriceText.text = UIHelper.AppendStringColor(TextColType.Green, _price.ToString());
}
--
Gitblit v1.8.0