Selaa lähdekoodia

screen adjust

master
chenbin 4 vuotta sitten
vanhempi
commit
f563839566

+ 47
- 17
Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/NGUITools.cs Näytä tiedosto

@@ -1727,19 +1727,22 @@ static public class NGUITools
1727 1727
 				mGameSize = (Vector2)s_GetSizeOfMainGameView.Invoke (null, null);
1728 1728
 			}
1729 1729
 			return mGameSize;
1730
+
1730 1731
 		}
1731 1732
 	}
1732
-	#else
1733
+
1734
+#else
1733 1735
 	/// <summary>
1734 1736
 	/// Size of the game view cannot be retrieved from Screen.width and Screen.height when the game view is hidden.
1735 1737
 	/// </summary>
1736
-
1738
+	
1737 1739
 	static public Vector2 screenSize { get { return new Vector2(Screen.width, Screen.height); } }
1740
+	//static public Vector2 screenSize { get { return new Vector2(Screen.safeArea.width, Screen.safeArea.height); } }
1738 1741
 #endif
1739 1742
 
1740
-	#region add by chenbin
1743
+    #region add by chenbin
1741 1744
 
1742
-	public static void updateAll (Transform tr)
1745
+    public static void updateAll (Transform tr)
1743 1746
 	{
1744 1747
 		UILabel label = tr.GetComponent<UILabel> ();
1745 1748
 		if (label != null) {
@@ -1813,22 +1816,49 @@ static public class NGUITools
1813 1816
 		}
1814 1817
 	}
1815 1818
 
1816
-	public static Rect wrapRect4IphoneX(Rect rect) {
1817
-		return wrapRect4Fringe (rect);
1818
-	}
1819
+	public static Vector4 _offsetRect;
1820
+	public static Vector4 offsetRect
1821
+    {
1822
+		get
1823
+		{
1824
+			if (_offsetRect == null)
1825
+			{
1826
+				float left = Screen.safeArea.x;
1827
+				float right = Screen.width - Screen.safeArea.width - left;
1828
+				float top = Screen.safeArea.y;
1829
+				float bottom = Screen.height - Screen.safeArea.height - top;
1819 1830
 
1820
-	public static Rect wrapRect4Fringe(Rect rect) {
1821
-		if (isFringe) {
1822
-			if (rect.width > rect.height) {
1823
-				float offsetWidth = rect.width * (1 - rateFringe);
1824
-				return new Rect ((int)(offsetWidth / 2), 0, rect.width - offsetWidth, rect.height);
1825
-			} else {
1826
-				float offsetHight = rect.height * (1 - rateFringe);
1827
-				return new Rect (0, (int)(offsetHight / 2), rect.width, rect.height - offsetHight);
1831
+				_offsetRect = new Vector4(left/Screen.width, top / Screen.height, right / Screen.width, bottom / Screen.height);
1828 1832
 			}
1829
-		} else {
1830
-			return rect;
1833
+			return _offsetRect;
1831 1834
 		}
1835
+		set{
1836
+			_offsetRect = value;
1837
+        }
1838
+    }
1839
+
1840
+	public static Rect wrapRect4Fringe(GameObject go, Rect rect) {
1841
+		//if (isFringe) {
1842
+		//	if (rect.width > rect.height) {
1843
+		//		float offsetWidth = rect.width * (1 - rateFringe);
1844
+		//		return new Rect ((int)(offsetWidth / 2), 0, rect.width - offsetWidth, rect.height);
1845
+		//	} else {
1846
+		//		float offsetHight = rect.height * (1 - rateFringe);
1847
+		//		return new Rect (0, (int)(offsetHight / 2), rect.width, rect.height - offsetHight);
1848
+		//	}
1849
+		//} else {
1850
+		//	return rect;
1851
+		//}
1852
+		Vector4 offset = offsetRect;
1853
+		float left = rect.width * offset.x;
1854
+		float right = rect.width * offset.z;
1855
+		float top = rect.height * offset.y;
1856
+		float bottom = rect.height * offset.w;
1857
+		rect.x += left;
1858
+        rect.width -= (left + right);
1859
+        rect.y += bottom;
1860
+        rect.height -= (top + bottom);
1861
+        return rect;
1832 1862
 	}
1833 1863
 	#endregion
1834 1864
 }

+ 98
- 18
Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/UIWidget.cs Näytä tiedosto

@@ -1120,29 +1120,52 @@ public class UIWidget : UIRect
1120 1120
 		Vector3 pos = trans.localPosition;
1121 1121
 		Vector2 pvt = pivotOffset;
1122 1122
 
1123
+		float sizeAdjust = UIRoot.GetPixelSizeAdjustment(gameObject);
1124
+		#region add by chenbin
1125
+		Vector4 offsetRect = NGUITools.offsetRect;
1126
+		float leftOffset = offsetRect.x;
1127
+		float rightOffset = offsetRect.z;
1128
+		float topOffset = offsetRect.y;
1129
+		UIPanel panel = null;
1130
+		#endregion
1131
+
1132
+
1123 1133
 		// Attempt to fast-path if all anchors match
1124 1134
 		if (leftAnchor.target == bottomAnchor.target &&
1125 1135
 			leftAnchor.target == rightAnchor.target &&
1126 1136
 			leftAnchor.target == topAnchor.target)
1127 1137
 		{
1128
-			Vector3[] sides = leftAnchor.GetSides(parent);
1138
+			//add by chenbin
1139
+			panel = leftAnchor.target.GetComponent<UIPanel>();
1140
+			if (panel != null)
1141
+            {
1142
+                leftOffset *= panel.width;
1143
+				rightOffset *= panel.width;
1144
+				topOffset *= panel.height;
1145
+			} else
1146
+            {
1147
+				leftOffset = 0;
1148
+				rightOffset = 0;
1149
+				topOffset = 0;
1150
+			}
1151
+            Vector3[] sides = leftAnchor.GetSides(parent);
1129 1152
 
1130 1153
 			if (sides != null)
1131 1154
 			{
1132
-				lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute;
1133
-				rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute;
1134
-				bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute;
1135
-				tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute;
1155
+				lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute + leftOffset;
1156
+				rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute - rightOffset;
1157
+				bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute - topOffset;
1158
+				tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute - topOffset;
1136 1159
 				mIsInFront = true;
1137 1160
 			}
1138 1161
 			else
1139 1162
 			{
1140 1163
 				// Anchored to a single transform
1141 1164
 				Vector3 lp = GetLocalPos(leftAnchor, parent);
1142
-				lt = lp.x + leftAnchor.absolute;
1143
-				bt = lp.y + bottomAnchor.absolute;
1144
-				rt = lp.x + rightAnchor.absolute;
1145
-				tt = lp.y + topAnchor.absolute;
1165
+				lt = lp.x + leftAnchor.absolute + leftOffset;
1166
+				bt = lp.y + bottomAnchor.absolute - topOffset;
1167
+				rt = lp.x + rightAnchor.absolute - rightOffset;
1168
+				tt = lp.y + topAnchor.absolute - topOffset;
1146 1169
 				mIsInFront = (!hideIfOffScreen || lp.z >= 0f);
1147 1170
 			}
1148 1171
 		}
@@ -1153,15 +1176,29 @@ public class UIWidget : UIRect
1153 1176
 			// Left anchor point
1154 1177
 			if (leftAnchor.target)
1155 1178
 			{
1179
+				//add by chenbin
1180
+				panel = leftAnchor.target.GetComponent<UIPanel>();
1181
+				if (panel != null)
1182
+				{
1183
+					leftOffset *= panel.width;
1184
+					rightOffset *= panel.width;
1185
+					topOffset *= panel.height;
1186
+				}
1187
+				else
1188
+				{
1189
+					leftOffset = 0;
1190
+					rightOffset = 0;
1191
+					topOffset = 0;
1192
+				}
1156 1193
 				Vector3[] sides = leftAnchor.GetSides(parent);
1157 1194
 
1158 1195
 				if (sides != null)
1159 1196
 				{
1160
-					lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute;
1197
+					lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute + leftOffset;
1161 1198
 				}
1162 1199
 				else
1163 1200
 				{
1164
-					lt = GetLocalPos(leftAnchor, parent).x + leftAnchor.absolute;
1201
+					lt = GetLocalPos(leftAnchor, parent).x + leftAnchor.absolute + leftOffset;
1165 1202
 				}
1166 1203
 			}
1167 1204
 			else lt = pos.x - pvt.x * mWidth;
@@ -1169,15 +1206,29 @@ public class UIWidget : UIRect
1169 1206
 			// Right anchor point
1170 1207
 			if (rightAnchor.target)
1171 1208
 			{
1209
+				//add by chenbin
1210
+				panel = rightAnchor.target.GetComponent<UIPanel>();
1211
+				if (panel != null)
1212
+				{
1213
+					leftOffset *= panel.width;
1214
+					rightOffset *= panel.width;
1215
+					topOffset *= panel.height;
1216
+				}
1217
+				else
1218
+				{
1219
+					leftOffset = 0;
1220
+					rightOffset = 0;
1221
+					topOffset = 0;
1222
+				}
1172 1223
 				Vector3[] sides = rightAnchor.GetSides(parent);
1173 1224
 
1174 1225
 				if (sides != null)
1175 1226
 				{
1176
-					rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute;
1227
+					rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute - rightOffset;
1177 1228
 				}
1178 1229
 				else
1179 1230
 				{
1180
-					rt = GetLocalPos(rightAnchor, parent).x + rightAnchor.absolute;
1231
+					rt = GetLocalPos(rightAnchor, parent).x + rightAnchor.absolute - rightOffset;
1181 1232
 				}
1182 1233
 			}
1183 1234
 			else rt = pos.x - pvt.x * mWidth + mWidth;
@@ -1185,15 +1236,29 @@ public class UIWidget : UIRect
1185 1236
 			// Bottom anchor point
1186 1237
 			if (bottomAnchor.target)
1187 1238
 			{
1239
+				//add by chenbin
1240
+				panel = bottomAnchor.target.GetComponent<UIPanel>();
1241
+				if (panel != null)
1242
+				{
1243
+					leftOffset *= panel.width;
1244
+					rightOffset *= panel.width;
1245
+					topOffset *= panel.height;
1246
+				}
1247
+				else
1248
+				{
1249
+					leftOffset = 0;
1250
+					rightOffset = 0;
1251
+					topOffset = 0;
1252
+				}
1188 1253
 				Vector3[] sides = bottomAnchor.GetSides(parent);
1189 1254
 
1190 1255
 				if (sides != null)
1191 1256
 				{
1192
-					bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute;
1257
+					bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute - topOffset;
1193 1258
 				}
1194 1259
 				else
1195 1260
 				{
1196
-					bt = GetLocalPos(bottomAnchor, parent).y + bottomAnchor.absolute;
1261
+					bt = GetLocalPos(bottomAnchor, parent).y + bottomAnchor.absolute - topOffset;
1197 1262
 				}
1198 1263
 			}
1199 1264
 			else bt = pos.y - pvt.y * mHeight;
@@ -1201,26 +1266,41 @@ public class UIWidget : UIRect
1201 1266
 			// Top anchor point
1202 1267
 			if (topAnchor.target)
1203 1268
 			{
1269
+				//add by chenbin
1270
+				panel = topAnchor.target.GetComponent<UIPanel>();
1271
+				if (panel != null)
1272
+				{
1273
+					leftOffset *= panel.width;
1274
+					rightOffset *= panel.width;
1275
+					topOffset *= panel.height;
1276
+				}
1277
+				else
1278
+				{
1279
+					leftOffset = 0;
1280
+					rightOffset = 0;
1281
+					topOffset = 0;
1282
+				}
1204 1283
 				Vector3[] sides = topAnchor.GetSides(parent);
1205 1284
 
1206 1285
 				if (sides != null)
1207 1286
 				{
1208
-					tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute;
1287
+					tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute - topOffset;
1209 1288
 				}
1210 1289
 				else
1211 1290
 				{
1212
-					tt = GetLocalPos(topAnchor, parent).y + topAnchor.absolute;
1291
+					tt = GetLocalPos(topAnchor, parent).y + topAnchor.absolute - topOffset;
1213 1292
 				}
1214 1293
 			}
1215 1294
 			else tt = pos.y - pvt.y * mHeight + mHeight;
1216 1295
 		}
1217 1296
 
1297
+
1218 1298
 		// Calculate the new position, width and height
1219 1299
 		Vector3 newPos = new Vector3(Mathf.Lerp(lt, rt, pvt.x), Mathf.Lerp(bt, tt, pvt.y), pos.z);
1220 1300
 		newPos.x = Mathf.Round(newPos.x);
1221 1301
 		newPos.y = Mathf.Round(newPos.y);
1222 1302
 
1223
-		int w = Mathf.FloorToInt(rt - lt + 0.5f);
1303
+        int w = Mathf.FloorToInt(rt - lt + 0.5f);
1224 1304
 		int h = Mathf.FloorToInt(tt - bt + 0.5f);
1225 1305
 
1226 1306
 		// Maintain the aspect ratio if requested and possible

+ 1
- 1
Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/UI/UIAnchor.cs Näytä tiedosto

@@ -175,7 +175,7 @@ public class UIAnchor : MonoBehaviour
175 175
 		else return;
176 176
 
177 177
 		#region add by chenbin
178
-		mRect = NGUITools.wrapRect4Fringe(mRect);
178
+		mRect = NGUITools.wrapRect4Fringe(gameObject, mRect);
179 179
 		#endregion
180 180
 
181 181
 		float cx = (mRect.xMin + mRect.xMax) * 0.5f;

+ 7
- 1
Assets/CoolapeFrame/Scripts/ui/NguiExtend/CLUIScrollViewWithEvent.cs Näytä tiedosto

@@ -97,7 +97,13 @@ public class CLUIScrollViewWithEvent : UIScrollView
97 97
                 else
98 98
                 {
99 99
                     Utl.doCallback(hideRefreshFlag);
100
-                    ResetPosition();
100
+                    if (movement == Movement.Vertical && totalDelta.y <= 0)
101
+                    {
102
+                        ResetPosition();
103
+                    } else if (movement == Movement.Horizontal && totalDelta.x >= 0)
104
+                    {
105
+
106
+                    }
101 107
                 }
102 108
             }
103 109
             else

+ 5
- 5
Assets/CoolapeFrameData/verControl/.resModifyDate.v Näytä tiedosto

@@ -274,12 +274,12 @@
274 274
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua.meta,132289129810000000
275 275
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/ui.meta,132289129800000000
276 276
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/www.meta,132352746190000000
277
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/atlas/atlasAllReal.prefab,132388653190000000
277
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/atlas/atlasAllReal.prefab,132389094810000000
278 278
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/atlas/atlasAllReal.prefab.meta,132289129810000000
279 279
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/localization/Chinese.txt,132385110800000000
280 280
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/localization/Chinese.txt.meta,132289129810000000
281 281
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/.DS_Store,132289129800000000
282
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/CLLMainLua.lua,132387273060000000
282
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/CLLMainLua.lua,132388695560000000
283 283
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/CLLMainLua.lua.meta,132289129800000000
284 284
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/battle.meta,132289129800000000
285 285
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/bio.meta,132289129800000000
@@ -354,9 +354,9 @@
354 354
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/CLLVerManager.lua.meta,132289129810000000
355 355
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/KKLogListener.lua,132300176910000000
356 356
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/KKLogListener.lua.meta,132371159480000000
357
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/LuaUtl.lua,132386936760000000
357
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/LuaUtl.lua,132388693580000000
358 358
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/LuaUtl.lua.meta,132289129810000000
359
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua,132388652660000000
359
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua,132389091550000000
360 360
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua.meta,132289221090000000
361 361
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/curve-families.png,132289129810000000
362 362
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/curve-families.png.meta,132289129810000000
@@ -431,7 +431,7 @@
431 431
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPSceneManager.lua.meta,132289129800000000
432 432
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPSplash.lua,132387276090000000
433 433
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPSplash.lua.meta,132289129800000000
434
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPStart.lua,132388322350000000
434
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPStart.lua,132388696910000000
435 435
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPStart.lua.meta,132289129800000000
436 436
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPWWWProgress.lua,132289129800000000
437 437
 /Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPWWWProgress.lua.meta,132289129800000000

BIN
Assets/CoolapeFrameData/verControl/IOS/ver4DevelopeMd5.v Näytä tiedosto


+ 4
- 4
Assets/CoolapeFrameData/verControl/IOS/ver4Publish.v Näytä tiedosto

@@ -123,7 +123,7 @@ trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea
123 123
 trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
124 124
 trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,5318be1a09feeb3aa3ccb1e7fb86dbd2
125 125
 trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
126
-trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,398a77c0c9146b949b3d0a6f60c6c4ed
126
+trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,71dd99dc998927bca633feb259d164a8
127 127
 trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
128 128
 trCRM/upgradeRes4Publish/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
129 129
 trCRM/upgradeRes4Publish/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
@@ -155,8 +155,8 @@ trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa55337
155 155
 trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
156 156
 trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
157 157
 trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
158
-trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,83992e86489ace88d35f10262e72d9fb
159
-trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,ae583c24f79ea1ae44112100bc494ffa
158
+trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,d9a3b772a44fc11d3407de3194f06d51
159
+trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,ce4513130e34ef66da98f9c3b1ec8299
160 160
 trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
161 161
 trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
162 162
 trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
@@ -194,7 +194,7 @@ trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8
194 194
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
195 195
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
196 196
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
197
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,e7aa381e49a9c5aed143b69db6aad352
197
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,f90028f3e667f9e4df2a7f4aefefa701
198 198
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
199 199
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
200 200
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1

+ 246
- 228
Assets/CoolapeFrameData/verControl/IOS/ver4Upgrade.v Näytä tiedosto

@@ -1,256 +1,274 @@
1
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
2
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
3
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
4
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
5
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
6
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa
7
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
8
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
9
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
10
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
11
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
12
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
13
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
14
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
1
+trCRM/upgradeRes/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
2
+trCRM/upgradeRes/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
3
+trCRM/upgradeRes/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
4
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
5
+trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
6
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
7
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_set2.unity3d,bca882d59188e7765fb55f9cf11f477e
8
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
9
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMine.unity3d,df795a0e3ea6e916db2a444c10717689
10
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
11
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
12
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
13
+trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
14
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
15
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_enterprise.unity3d,a8b0984f1a0b1b8dd9ceb487cc7d1884
15 16
 trCRM/upgradeRes/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
16
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
17 17
 trCRM/upgradeRes/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
18
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
19
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
20
+trCRM/upgradeRes/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
18 21
 trCRM/upgradeRes/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
19
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
20
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
21
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
22
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
23
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
24
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
25
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
26
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
27
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
28
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
29
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
30
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
31
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
32
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
33
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
34
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
35
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
36
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
37
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
38
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
39
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
40
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
41
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
42
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
43
-trCRM/upgradeRes/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
44
-trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
45
-trCRM/upgradeRes/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
46
-trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
47 22
 trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
48
-trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
49
-trCRM/upgradeRes/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
23
+trCRM/upgradeRes/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
50 24
 trCRM/upgradeRes/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
51
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
52
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
53
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_no.unity3d,e167bfde724e7a2c40bec51945931877
54
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_password.unity3d,1dd1c1396c668d0a4dad1228ca0ec903
55
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
56
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
25
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
26
+trCRM/upgradeRes/priority/lua/CLLMainLua.lua,71dd99dc998927bca633feb259d164a8
27
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
28
+trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
29
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
30
+trCRM/upgradeRes/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
31
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
32
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
33
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
34
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelLogin.unity3d,46bb818a908357037e63bede9cd2369d
35
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
36
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
37
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
38
+trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
39
+trCRM/upgradeRes/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
40
+trCRM/upgradeRes/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
41
+trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
42
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
43
+trCRM/upgradeRes/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
44
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
45
+trCRM/upgradeRes/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
57 46
 trCRM/upgradeRes/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
58
-trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
59
-trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
47
+trCRM/upgradeRes/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
48
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
49
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
50
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
51
+trCRM/upgradeRes/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
52
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
53
+trCRM/upgradeRes/priority/lua/toolkit/MyUtl.lua,ce4513130e34ef66da98f9c3b1ec8299
54
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
55
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_no.unity3d,e167bfde724e7a2c40bec51945931877
56
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
57
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
58
+trCRM/upgradeRes/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
59
+trCRM/upgradeRes/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
60 60
 trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
61
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
62
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
63
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
64
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
61
+trCRM/upgradeRes/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
62
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_data.unity3d,d2c0627b468f06867987c41b74c84dce
63
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
64
+trCRM/upgradeRes/priority/ui/panel/IOS/ToastRoot.unity3d,202053ab489839884b0569f173796cfe
65
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,63cc509261ff856e2833689b5c5391a0
66
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
67
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_password.unity3d,1dd1c1396c668d0a4dad1228ca0ec903
68
+trCRM/upgradeRes/priority/lua/ui/panel/CSPMine.lua,3038704955b89cc61befb0fee37b14f3
69
+trCRM/upgradeRes/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
70
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
71
+trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
72
+trCRM/upgradeRes/priority/ui/other/IOS/AlertRoot.unity3d,eebc730459217511668036a3271830cb
73
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
74
+trCRM/upgradeRes/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
75
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
76
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
77
+trCRM/upgradeRes/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
78
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
79
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
65 80
 trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work2.unity3d,8579e52d8aa949abce514ec4682d95e5
66
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
67
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
68
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
69
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
70
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
71
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
72
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
73
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
74
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
81
+trCRM/upgradeRes/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
75 82
 trCRM/upgradeRes/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
76
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
77
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
78
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
79
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
80
-trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
81
-trCRM/upgradeRes/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
82
-trCRM/upgradeRes/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
83
-trCRM/upgradeRes/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
84
-trCRM/upgradeRes/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
85
-trCRM/upgradeRes/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
86
-trCRM/upgradeRes/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
87
-trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
88
-trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
89
-trCRM/upgradeRes/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
90
-trCRM/upgradeRes/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
91
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
92
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
93
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
94
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
95
-trCRM/upgradeRes/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
96
-trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
97
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
98
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
99
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
100
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
101
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
102
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
103
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
104
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
105
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
106
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
107 83
 trCRM/upgradeRes/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
108
-trCRM/upgradeRes/priority/atlas/IOS/atlasAllReal.unity3d,3bc71bdc9c1acc1af9950b31d8a92568
109
-trCRM/upgradeRes/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
110
-trCRM/upgradeRes/priority/lua/CLLMainLua.lua,398a77c0c9146b949b3d0a6f60c6c4ed
111
-trCRM/upgradeRes/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
84
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
85
+trCRM/upgradeRes/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
86
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
87
+trCRM/upgradeRes/priority/ui/other/IOS/InputMultText.unity3d,22cbe869950c1b472550b5e3502ae5ca
88
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
89
+trCRM/upgradeRes/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
90
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
91
+trCRM/upgradeRes/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
92
+trCRM/upgradeRes/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
93
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
94
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
95
+trCRM/upgradeRes/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
96
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
97
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
98
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewFollow.unity3d,eaf41d7480e0f36f8beb37aa4442b6e1
99
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
100
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
112 101
 trCRM/upgradeRes/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
113
-trCRM/upgradeRes/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
114
-trCRM/upgradeRes/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
115
-trCRM/upgradeRes/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
116
-trCRM/upgradeRes/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
117
-trCRM/upgradeRes/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
102
+trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
103
+trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
104
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
105
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
106
+trCRM/upgradeRes/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
107
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_check.unity3d,c374b4c94e874e2602d8c2293981c22e
108
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
109
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
110
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_fingerprint.unity3d,c8c718e4646589cb5c1e9fa92165ae98
111
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
112
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
118 113
 trCRM/upgradeRes/priority/lua/db/DBCust.lua,8e970152224262213e454e36f3dd19a8
119
-trCRM/upgradeRes/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
120
-trCRM/upgradeRes/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
121
-trCRM/upgradeRes/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
114
+trCRM/upgradeRes/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
115
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
116
+trCRM/upgradeRes/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
117
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
118
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
119
+trCRM/upgradeRes/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
122 120
 trCRM/upgradeRes/priority/lua/db/DBUser.lua,d01c1b88bed8d5d777f76eca559b5b46
123
-trCRM/upgradeRes/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
124
-trCRM/upgradeRes/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
125
-trCRM/upgradeRes/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
121
+trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
122
+trCRM/upgradeRes/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
123
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
124
+trCRM/upgradeRes/priority/atlas/IOS/atlasAllReal.unity3d,5318be1a09feeb3aa3ccb1e7fb86dbd2
125
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
126
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
127
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
128
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
129
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform2.lua,47ac1164b1ffb27397953ccb032fd2d7
130
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
131
+trCRM/upgradeRes/priority/lua/ui/panel/TRPNewOrder.lua,70495458e067e8b8970097651dd253e1
132
+trCRM/upgradeRes/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
133
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
126 134
 trCRM/upgradeRes/priority/lua/net/CLLNet.lua,df3108c65b288722530f80bb73893062
127
-trCRM/upgradeRes/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
128
-trCRM/upgradeRes/priority/lua/net/NetProto.lua,c2a5eef306bbbbd5b186599bad616677
129
-trCRM/upgradeRes/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
130
-trCRM/upgradeRes/priority/lua/public/CLLInclude.lua,476b749169d54c4b08e8749743983d92
131
-trCRM/upgradeRes/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
132
-trCRM/upgradeRes/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
133
-trCRM/upgradeRes/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
134
-trCRM/upgradeRes/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
135
-trCRM/upgradeRes/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
136
-trCRM/upgradeRes/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
137
-trCRM/upgradeRes/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
138
-trCRM/upgradeRes/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
139
-trCRM/upgradeRes/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
140
-trCRM/upgradeRes/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
141
-trCRM/upgradeRes/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
142
-trCRM/upgradeRes/priority/lua/toolkit/LuaUtl.lua,83992e86489ace88d35f10262e72d9fb
143
-trCRM/upgradeRes/priority/lua/toolkit/MyUtl.lua,3f6a80d9a6a96cf66a201e26fc39aa1f
144
-trCRM/upgradeRes/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
145
-trCRM/upgradeRes/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
146
-trCRM/upgradeRes/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
135
+trCRM/upgradeRes/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
136
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
137
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
138
+trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollow.lua,ef981e78f783343271b8c655f358084c
139
+trCRM/upgradeRes/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
140
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
141
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
142
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
147 143
 trCRM/upgradeRes/priority/lua/ui/cell/CLLCellServer.lua,1e9de9f0b4bbc703296808c1ba179c29
148
-trCRM/upgradeRes/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
149
-trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
150
-trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
144
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
145
+trCRM/upgradeRes/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
151 146
 trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
152
-trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
153
-trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
154
-trCRM/upgradeRes/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
155
-trCRM/upgradeRes/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
156
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
157
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
158
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
159
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
160
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
161
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
147
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_opinion.unity3d,a6972381cca3a2e78a7e6ffd2b6f2748
148
+trCRM/upgradeRes/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
149
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
162 150
 trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendField.lua,3178958635719c8c324791371ebf968a
163
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,9b2875e44fc9597805067fbbec8e75eb
164
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
165
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
166
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
167
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
168
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
169
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform2.lua,47ac1164b1ffb27397953ccb032fd2d7
170
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
171
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
172
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
173
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
174
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
175
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
176
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
177
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
178
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
179
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
151
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
152
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
153
+trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
154
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
155
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
156
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
157
+trCRM/upgradeRes/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
158
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
159
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
160
+trCRM/upgradeRes/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
161
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
162
+trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
163
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
164
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
165
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
166
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_check.unity3d,f1b1be17d8aa2d7065a0724334dc3893
167
+trCRM/upgradeRes/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
168
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
169
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
180 170
 trCRM/upgradeRes/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
181
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPStart.lua,e7aa381e49a9c5aed143b69db6aad352
182
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
183
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
184
-trCRM/upgradeRes/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
185
-trCRM/upgradeRes/priority/lua/ui/panel/CSPMine.lua,3038704955b89cc61befb0fee37b14f3
186
-trCRM/upgradeRes/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
187
-trCRM/upgradeRes/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
188
-trCRM/upgradeRes/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
189
-trCRM/upgradeRes/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
171
+trCRM/upgradeRes/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
172
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
173
+trCRM/upgradeRes/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
174
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
175
+trCRM/upgradeRes/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
176
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
177
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
178
+trCRM/upgradeRes/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
179
+trCRM/upgradeRes/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
180
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
181
+trCRM/upgradeRes/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
182
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
190 183
 trCRM/upgradeRes/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
191
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
184
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
185
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
186
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
187
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
188
+trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgList.lua,518461e7bf8f3b3420fa9377a23db86a
189
+trCRM/upgradeRes/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
190
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
191
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
192
+trCRM/upgradeRes/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
193
+trCRM/upgradeRes/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
194
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/log_bg.unity3d,6e86477cb2815f29ab537aa085b88b85
192 195
 trCRM/upgradeRes/priority/lua/ui/panel/TRPCustFilter.lua,0725109e55276b5158f6ce642d28dfa6
193
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
194
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
195
-trCRM/upgradeRes/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
196
-trCRM/upgradeRes/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
197
-trCRM/upgradeRes/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
198
-trCRM/upgradeRes/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
199
-trCRM/upgradeRes/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
200
-trCRM/upgradeRes/priority/lua/ui/panel/TRPNewOrder.lua,953cc6b4afbe01b33bfb6d6078f7daf4
201
-trCRM/upgradeRes/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
202
-trCRM/upgradeRes/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
196
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
197
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_password.unity3d,614c3d4d72ec9ac573a471868326945f
198
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_customer.unity3d,eba6ba58a8149e369e8e02b8cac777c8
199
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
200
+trCRM/upgradeRes/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
201
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
202
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
203
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
204
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
205
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
206
+trCRM/upgradeRes/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
207
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
208
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
209
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
210
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
211
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
212
+trCRM/upgradeRes/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
213
+trCRM/upgradeRes/priority/ui/other/IOS/InputDate.unity3d,c022ba4a5bf2ac56dcc6ef39c0977840
214
+trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
215
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
216
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
217
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
218
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_clean_up.unity3d,7350d7ed4886070c5c0b79f3dcd5fe26
219
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCalender.unity3d,2b45d569d212c3431f2351e10d1cc07e
203 220
 trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep1.lua,cc912be0fe9c81e228a057e2697e29e5
204
-trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
205
-trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
206
-trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
207
-trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
208
-trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgList.lua,518461e7bf8f3b3420fa9377a23db86a
209
-trCRM/upgradeRes/priority/ui/other/IOS/AlertRoot.unity3d,527993b4e82d8f6bab7d0b1e0fdfd8d4
210
-trCRM/upgradeRes/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
211 221
 trCRM/upgradeRes/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
212
-trCRM/upgradeRes/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
213
-trCRM/upgradeRes/priority/ui/other/IOS/InputDate.unity3d,c022ba4a5bf2ac56dcc6ef39c0977840
214
-trCRM/upgradeRes/priority/ui/other/IOS/InputMultText.unity3d,b45382abca99dc92ea2808884c91a4ab
215
-trCRM/upgradeRes/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
222
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
223
+trCRM/upgradeRes/priority/lua/toolkit/LuaUtl.lua,d9a3b772a44fc11d3407de3194f06d51
224
+trCRM/upgradeRes/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
225
+trCRM/upgradeRes/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
226
+trCRM/upgradeRes/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
227
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
228
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
229
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
230
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
231
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
232
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
233
+trCRM/upgradeRes/priority/lua/public/CLLInclude.lua,476b749169d54c4b08e8749743983d92
234
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
216 235
 trCRM/upgradeRes/priority/ui/other/IOS/InputText.unity3d,9594db6593af82ab5eb5cb4b87984bb5
217
-trCRM/upgradeRes/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
218
-trCRM/upgradeRes/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
219
-trCRM/upgradeRes/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
220
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
221
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCalender.unity3d,2b45d569d212c3431f2351e10d1cc07e
222
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
236
+trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
237
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelTasks.unity3d,f4519bf810eaaae4b4addf5092426953
238
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPStart.lua,f90028f3e667f9e4df2a7f4aefefa701
239
+trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
240
+trCRM/upgradeRes/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
241
+trCRM/upgradeRes/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
242
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
243
+trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
244
+trCRM/upgradeRes/priority/lua/net/NetProto.lua,2b1dafe00efd5be052d2cdd3dcabef71
245
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
246
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
247
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
248
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
249
+trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
250
+trCRM/upgradeRes/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
223 251
 trCRM/upgradeRes/priority/ui/panel/IOS/PanelConnect.unity3d,060bc89717ae9afd7f2097a67d21147a
224
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
225
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
226
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustList.unity3d,ffbc461fe8fd19d6b822d00b1fbafaa7
227
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
228
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
229
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
230
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelLogin.unity3d,e9a42160345ab8acba8ebaea740474bb
231
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
232
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
233
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMine.unity3d,f2a9c55d2610cd1134326b0d54fd7b62
234
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
235
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
236
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
252
+trCRM/upgradeRes/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
253
+trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
254
+trCRM/upgradeRes/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
255
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
256
+trCRM/upgradeRes/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
257
+trCRM/upgradeRes/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
237 258
 trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewCust.unity3d,da583f7f3ae74b735739055610dc0b98
238
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
239
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
240
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
241
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
242
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
243
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
244
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
245
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
246
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
247
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
248
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
249
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
250 259
 trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,b72c64d0d79d3f270f3df3620ef758ac
260
+trCRM/upgradeRes/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
261
+trCRM/upgradeRes/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
262
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
263
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustList.unity3d,ffbc461fe8fd19d6b822d00b1fbafaa7
264
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
265
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
266
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
251 267
 trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgList.unity3d,3d0a1fd9c4b5d05b268bb73d3c810127
252
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelTasks.unity3d,f4519bf810eaaae4b4addf5092426953
253
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
268
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
269
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_remind.unity3d,28b12417bc85c9ba865a36339c5df145
254 270
 trCRM/upgradeRes/priority/ui/panel/IOS/PanelWebView.unity3d,7b212b719fe9f766101c137f9a89640a
255
-trCRM/upgradeRes/priority/ui/panel/IOS/ToastRoot.unity3d,202053ab489839884b0569f173796cfe
256
-trCRM/upgradeRes/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
271
+trCRM/upgradeRes/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
272
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
273
+trCRM/upgradeRes/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
274
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa

+ 1
- 0
Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v Näytä tiedosto

@@ -0,0 +1 @@
1
+[{"md5":"7cea40769130dc5038fe89c11a8a93b4", "name":"2020_07_10_22_48_57", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"8d20a2ebc95c3de0326c2268cd0a5b3e", "name":"2020_07_10_23_32_42", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"f4a725f0bda3498aacbbad2c8a62b085", "name":"2020_07_10_23_40_12", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"b30346bad7f0a7817ec446846d9448f7", "name":"2020_07_10_23_42_46", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"9b0766ddc30e9eb0c3fb26346ec2c09d", "name":"2020_07_10_23_46_04", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"95b27778bfd5966abe00749d5c0cc698", "name":"2020_07_10_23_48_21", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"82545003cc15d2908472019870d6e65c", "name":"2020_07_11_10_51_04", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}]

+ 7
- 0
Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v.meta Näytä tiedosto

@@ -0,0 +1,7 @@
1
+fileFormatVersion: 2
2
+guid: 7a6d80e453a254239a65773767dba727
3
+DefaultImporter:
4
+  externalObjects: {}
5
+  userData: 
6
+  assetBundleName: 
7
+  assetBundleVariant: 

+ 243
- 225
Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeMd5.v Näytä tiedosto

@@ -1,256 +1,274 @@
1
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
2
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
3
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
4
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
5
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
6
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa
7
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
8
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
9
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
10
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
11
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
12
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
13
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
14
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
1
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
2
+trCRM/upgradeRes4Publish/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
3
+trCRM/upgradeRes4Publish/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
4
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
5
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
6
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
7
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_set2.unity3d,bca882d59188e7765fb55f9cf11f477e
8
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
9
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMine.unity3d,df795a0e3ea6e916db2a444c10717689
10
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
11
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_remind.unity3d,28b12417bc85c9ba865a36339c5df145
12
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
13
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
14
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
15
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
16
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_enterprise.unity3d,a8b0984f1a0b1b8dd9ceb487cc7d1884
15 17
 trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
16
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
17 18
 trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
19
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
20
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
21
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
18 22
 trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
19
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
20
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
21
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
22
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
23
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
24
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
25
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
26
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
27
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
28
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
29
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
30
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
31
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
23
+trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
24
+trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
25
+trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
26
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
27
+trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,71dd99dc998927bca633feb259d164a8
28
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
29
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
30
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
31
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelLogin.unity3d,46bb818a908357037e63bede9cd2369d
32
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
33
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
34
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
32 35
 trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
33
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
34
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
35
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
36
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
37
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
38
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
39
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
40
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
41
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
42
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
43
-trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
44
-trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
45
-trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
36
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
37
+trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
38
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
39
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
40
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
46 41
 trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
47
-trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
42
+trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
43
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
44
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
45
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
46
+trCRM/upgradeRes4Publish/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
47
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
48
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
49
+trCRM/upgradeRes4Publish/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
50
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
51
+trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
52
+trCRM/upgradeRes4Publish/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
53
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
54
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
55
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
48 56
 trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
49
-trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
50
-trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
51
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
52
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
57
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
58
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
59
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
60
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
53 61
 trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_no.unity3d,e167bfde724e7a2c40bec51945931877
62
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
63
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
64
+trCRM/upgradeRes4Publish/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
65
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
66
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
67
+trCRM/upgradeRes4Publish/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
68
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
69
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/ToastRoot.unity3d,202053ab489839884b0569f173796cfe
70
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,63cc509261ff856e2833689b5c5391a0
71
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
54 72
 trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_password.unity3d,1dd1c1396c668d0a4dad1228ca0ec903
55
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
56
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
57
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
58
-trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
59 73
 trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
60
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
61
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
62
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
63
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
64
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
74
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
75
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
76
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
77
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollow.lua,ef981e78f783343271b8c655f358084c
78
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/AlertRoot.unity3d,eebc730459217511668036a3271830cb
79
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
80
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
81
+trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,ce4513130e34ef66da98f9c3b1ec8299
82
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
83
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
84
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
85
+trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
86
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
87
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
65 88
 trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work2.unity3d,8579e52d8aa949abce514ec4682d95e5
66
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
67
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
68
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
69
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
70
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
71
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
72
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
73
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
74
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
89
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
75 90
 trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
76
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
77
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
78
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
79
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
80
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
81
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
82
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
83
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
84
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
85
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
86
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
87
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
88
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
89
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
90
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
91
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
92
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
93
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
94
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
95
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
96
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
97
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
98
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
99
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
100
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
101
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
102
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
103
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
104
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
105
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
106
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
107 91
 trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
108
-trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,3bc71bdc9c1acc1af9950b31d8a92568
109
-trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
110
-trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,398a77c0c9146b949b3d0a6f60c6c4ed
111
-trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
92
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
93
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
94
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
95
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputMultText.unity3d,22cbe869950c1b472550b5e3502ae5ca
96
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
97
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
98
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
99
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
100
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
101
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
102
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
103
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
104
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
105
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
106
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollow.unity3d,eaf41d7480e0f36f8beb37aa4442b6e1
107
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
112 108
 trCRM/upgradeRes4Publish/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
113
-trCRM/upgradeRes4Publish/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
114
-trCRM/upgradeRes4Publish/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
115
-trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
116
-trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
117
-trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
109
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
110
+trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
111
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
112
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
113
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
114
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_check.unity3d,c374b4c94e874e2602d8c2293981c22e
115
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
116
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
117
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_fingerprint.unity3d,c8c718e4646589cb5c1e9fa92165ae98
118
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
119
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
120
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
118 121
 trCRM/upgradeRes4Publish/priority/lua/db/DBCust.lua,8e970152224262213e454e36f3dd19a8
119
-trCRM/upgradeRes4Publish/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
120
-trCRM/upgradeRes4Publish/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
121
-trCRM/upgradeRes4Publish/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
122
-trCRM/upgradeRes4Publish/priority/lua/db/DBUser.lua,d01c1b88bed8d5d777f76eca559b5b46
123
-trCRM/upgradeRes4Publish/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
124
-trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
125
-trCRM/upgradeRes4Publish/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
126
-trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,df3108c65b288722530f80bb73893062
127
-trCRM/upgradeRes4Publish/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
128
-trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,c2a5eef306bbbbd5b186599bad616677
122
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
123
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
124
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
125
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
129 126
 trCRM/upgradeRes4Publish/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
130 127
 trCRM/upgradeRes4Publish/priority/lua/public/CLLInclude.lua,476b749169d54c4b08e8749743983d92
131
-trCRM/upgradeRes4Publish/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
132
-trCRM/upgradeRes4Publish/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
133
-trCRM/upgradeRes4Publish/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
134
-trCRM/upgradeRes4Publish/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
135
-trCRM/upgradeRes4Publish/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
136
-trCRM/upgradeRes4Publish/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
137
-trCRM/upgradeRes4Publish/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
138
-trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
139
-trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
140
-trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
141
-trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
142
-trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,83992e86489ace88d35f10262e72d9fb
143
-trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,3f6a80d9a6a96cf66a201e26fc39aa1f
128
+trCRM/upgradeRes4Publish/priority/lua/db/DBUser.lua,d01c1b88bed8d5d777f76eca559b5b46
129
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
130
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
131
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
132
+trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,5318be1a09feeb3aa3ccb1e7fb86dbd2
133
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
134
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
135
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
136
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform2.lua,47ac1164b1ffb27397953ccb032fd2d7
137
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
138
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMine.lua,3038704955b89cc61befb0fee37b14f3
139
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewOrder.lua,70495458e067e8b8970097651dd253e1
140
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
141
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
144 142
 trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
145
-trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
146
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
143
+trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,df3108c65b288722530f80bb73893062
144
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
145
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
146
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
147
+trCRM/upgradeRes4Publish/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
148
+trCRM/upgradeRes4Publish/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
149
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
150
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
151
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
147 152
 trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellServer.lua,1e9de9f0b4bbc703296808c1ba179c29
148
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
149
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
150
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
153
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
154
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
155
+trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
151 156
 trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
152
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
153
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
154
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
155
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
156
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
157
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
158
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
159
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
160
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
161
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
157
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
158
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
162 159
 trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendField.lua,3178958635719c8c324791371ebf968a
163
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,9b2875e44fc9597805067fbbec8e75eb
164
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
165
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
166
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
167
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
168
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
169
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform2.lua,47ac1164b1ffb27397953ccb032fd2d7
170
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
171
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
172
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
173
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
174
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
175
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
176
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
177
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
178
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
179
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
160
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
161
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
162
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
163
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
164
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
165
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
166
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
167
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
168
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_password.unity3d,614c3d4d72ec9ac573a471868326945f
169
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
170
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
171
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
172
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_check.unity3d,f1b1be17d8aa2d7065a0724334dc3893
173
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
174
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
175
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
180 176
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
181
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,e7aa381e49a9c5aed143b69db6aad352
182
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
183
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
184
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
185
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMine.lua,3038704955b89cc61befb0fee37b14f3
186
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
187
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
188
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
189
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
190
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
191
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
192
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,0725109e55276b5158f6ce642d28dfa6
193
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
194
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
195
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
196
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
197 177
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
198
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
199
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
200
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewOrder.lua,953cc6b4afbe01b33bfb6d6078f7daf4
201
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
202
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
203
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep1.lua,cc912be0fe9c81e228a057e2697e29e5
204
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
205
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
206
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
207
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
178
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_data.unity3d,d2c0627b468f06867987c41b74c84dce
179
+trCRM/upgradeRes4Publish/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
180
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
181
+trCRM/upgradeRes4Publish/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
182
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
183
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
184
+trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
185
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
186
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
187
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
188
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
189
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
190
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
191
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
192
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
193
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConnect.unity3d,060bc89717ae9afd7f2097a67d21147a
194
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
208 195
 trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgList.lua,518461e7bf8f3b3420fa9377a23db86a
209
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/AlertRoot.unity3d,527993b4e82d8f6bab7d0b1e0fdfd8d4
210
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
211
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
212
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
196
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
197
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
198
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
199
+trCRM/upgradeRes4Publish/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
200
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/log_bg.unity3d,6e86477cb2815f29ab537aa085b88b85
201
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,0725109e55276b5158f6ce642d28dfa6
202
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
203
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_customer.unity3d,eba6ba58a8149e369e8e02b8cac777c8
204
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
205
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
206
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
207
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
208
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
209
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
210
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
211
+trCRM/upgradeRes4Publish/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
212
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
213
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
214
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
215
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
216
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
217
+trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
213 218
 trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputDate.unity3d,c022ba4a5bf2ac56dcc6ef39c0977840
214
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputMultText.unity3d,b45382abca99dc92ea2808884c91a4ab
215
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
216
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputText.unity3d,9594db6593af82ab5eb5cb4b87984bb5
219
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
217 220
 trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
218
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
219
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
220
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
221
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
222
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
223
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
221 224
 trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCalender.unity3d,2b45d569d212c3431f2351e10d1cc07e
222
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
223
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConnect.unity3d,060bc89717ae9afd7f2097a67d21147a
224
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
225
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
225
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep1.lua,cc912be0fe9c81e228a057e2697e29e5
226
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
227
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
228
+trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,d9a3b772a44fc11d3407de3194f06d51
229
+trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
230
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
231
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
232
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
233
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
234
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
235
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
236
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
237
+trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
238
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
239
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
240
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputText.unity3d,9594db6593af82ab5eb5cb4b87984bb5
241
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
242
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTasks.unity3d,f4519bf810eaaae4b4addf5092426953
243
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,f90028f3e667f9e4df2a7f4aefefa701
244
+trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
245
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
246
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_opinion.unity3d,a6972381cca3a2e78a7e6ffd2b6f2748
247
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
248
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
249
+trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,2b1dafe00efd5be052d2cdd3dcabef71
250
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
251
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
252
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
253
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
254
+trCRM/upgradeRes4Publish/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
255
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
256
+trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
257
+trCRM/upgradeRes4Publish/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
226 258
 trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustList.unity3d,ffbc461fe8fd19d6b822d00b1fbafaa7
227
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
228
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
229
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
230
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelLogin.unity3d,e9a42160345ab8acba8ebaea740474bb
231
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
232
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
233
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMine.unity3d,f2a9c55d2610cd1134326b0d54fd7b62
234
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
235
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
236
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
259
+trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
260
+trCRM/upgradeRes4Publish/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
237 261
 trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewCust.unity3d,da583f7f3ae74b735739055610dc0b98
238
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
239
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
240
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
241
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
242
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
243
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
244
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
245
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
246
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
247
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
248
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
249
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
250 262
 trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,b72c64d0d79d3f270f3df3620ef758ac
263
+trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
264
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_clean_up.unity3d,7350d7ed4886070c5c0b79f3dcd5fe26
265
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
266
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
267
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
251 268
 trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgList.unity3d,3d0a1fd9c4b5d05b268bb73d3c810127
252
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTasks.unity3d,f4519bf810eaaae4b4addf5092426953
253
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
269
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
254 270
 trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWebView.unity3d,7b212b719fe9f766101c137f9a89640a
255
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/ToastRoot.unity3d,202053ab489839884b0569f173796cfe
256
-trCRM/upgradeRes4Publish/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
271
+trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
272
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
273
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
274
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa

+ 1
- 1
Assets/StreamingAssets/channels.json Näytä tiedosto

@@ -1 +1 @@
1
-{"1000":true}
1
+{"1000":true,"2000":true}

+ 7
- 3
Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua Näytä tiedosto

@@ -12,12 +12,16 @@ MyUtl.getUIContent = function(panel, top, bottom, forceCal)
12 12
     -- if _ContentRect and (not forceCal) then
13 13
     --     return _ContentRect
14 14
     -- end
15
+    local sizeAdjust = UIRoot.GetPixelSizeAdjustment(panel.gameObject)
16
+    local height = Screen.height * sizeAdjust
15 17
     top = top or _TopHeight_
16 18
     bottom = bottom or _BottomHeight_
17
-    local sizeAdjust = UIRoot.GetPixelSizeAdjustment(panel.gameObject)
19
+    local offsetRect = NGUITools.offsetRect
20
+    top = top + offsetRect.y * height
21
+    bottom = bottom + offsetRect.w * height
22
+
18 23
     _sizeAdjust = sizeAdjust
19
-    _ContentRect =
20
-        Vector4(0, (bottom - top) / 2, Screen.width * sizeAdjust, Screen.height * sizeAdjust - (bottom + top))
24
+    _ContentRect = Vector4(0, (bottom - top) / 2, Screen.width * sizeAdjust, height - (bottom + top))
21 25
     return _ContentRect
22 26
 end
23 27
 

BIN
Assets/trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua Näytä tiedosto


BIN
Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua Näytä tiedosto


BIN
Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua Näytä tiedosto


BIN
Assets/trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua Näytä tiedosto


+ 1
- 1
Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl.ver Näytä tiedosto

@@ -1 +1 @@
1
-r8	!trCRM/resVer/IOS/VerCtl/other.ver8,3a5c78cf709d4f90cdf928c353e70b5d8	$trCRM/resVer/IOS/VerCtl/priority.ver8,28e93b115966a7060ac16df962d0105d
1
+r8	$trCRM/resVer/IOS/VerCtl/priority.ver8,2e44df0897bb7c1047865bfe9db57cf98	!trCRM/resVer/IOS/VerCtl/other.ver8,7a09ad6b904ba91bb4fe22525a5a7217

+ 1
- 1
Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl/other.ver
File diff suppressed because it is too large
Näytä tiedosto


BIN
Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl/priority.ver Näytä tiedosto


Loading…
Peruuta
Tallenna