From 292a3e7421161aa52c4071f585b26cb30c60414a Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期五, 09 十一月 2018 10:07:58 +0800
Subject: [PATCH] 4651 【前端】【1.2】VIP界面优化

---
 Core/GameEngine/Model/Config/VIPAwardConfig.cs |   30 ++++++++++++++++++------------
 1 files changed, 18 insertions(+), 12 deletions(-)

diff --git a/Core/GameEngine/Model/Config/VIPAwardConfig.cs b/Core/GameEngine/Model/Config/VIPAwardConfig.cs
index c1ccdf3..bf4efc0 100644
--- a/Core/GameEngine/Model/Config/VIPAwardConfig.cs
+++ b/Core/GameEngine/Model/Config/VIPAwardConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:			绗簩涓栫晫
-//    [  Date ]:		   Thursday, July 05, 2018
+//    [  Date ]:		   Thursday, November 08, 2018
 //--------------------------------------------------------
 
 using UnityEngine;
@@ -9,22 +9,24 @@
 namespace TableConfig {
 
     
-	public partial class VIPAwardConfig : ConfigBase {
-
+	public partial class VIPAwardConfig : ConfigBase {
+
 		public int VIPLV { get ; private set ; }
 		public string VIPgift { get ; private set; } 
 		public int GiftPrice { get ; private set ; }
 		public int OldPrice { get ; private set ; }
 		public string specialGiftIcon { get ; private set; } 
+		public string privilegeIcon1 { get ; private set; } 
+		public string privilegeIcon2 { get ; private set; } 
 
-		public override string getKey()
-        {
-            return VIPLV.ToString();
+		public override string getKey()
+        {
+            return VIPLV.ToString();
         }
 
 		public override void Parse() {
-			try
-            {
+			try
+            {
                 VIPLV=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
 			
 				VIPgift = rawContents[1].Trim();
@@ -34,10 +36,14 @@
 				OldPrice=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0; 
 			
 				specialGiftIcon = rawContents[4].Trim();
-            }
-            catch (Exception ex)
-            {
-                DebugEx.Log(ex);
+			
+				privilegeIcon1 = rawContents[5].Trim();
+			
+				privilegeIcon2 = rawContents[6].Trim();
+            }
+            catch (Exception ex)
+            {
+                DebugEx.Log(ex);
             }
 		}
 	

--
Gitblit v1.8.0