ios
This commit is contained in:
Binary file not shown.
@@ -998,6 +998,89 @@ public class Reporter : MonoBehaviour
|
|||||||
if (GUILayout.Button(clearContent, barStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
if (GUILayout.Button(clearContent, barStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (GUILayout.Button(closeContent, barStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2)))
|
||||||
|
{
|
||||||
|
show = false;
|
||||||
|
ReporterGUI gui = gameObject.GetComponent<ReporterGUI>();
|
||||||
|
DestroyImmediate(gui);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
gameObject.SendMessage("OnHideReporter");
|
||||||
|
}
|
||||||
|
catch (System.Exception e)
|
||||||
|
{
|
||||||
|
Debug.LogException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
string logsText = " ";
|
||||||
|
if (collapse)
|
||||||
|
{
|
||||||
|
logsText += numOfCollapsedLogs;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logsText += numOfLogs;
|
||||||
|
}
|
||||||
|
string logsWarningText = " ";
|
||||||
|
if (collapse)
|
||||||
|
{
|
||||||
|
logsWarningText += numOfCollapsedLogsWarning;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logsWarningText += numOfLogsWarning;
|
||||||
|
}
|
||||||
|
string logsErrorText = " ";
|
||||||
|
if (collapse)
|
||||||
|
{
|
||||||
|
logsErrorText += numOfCollapsedLogsError;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logsErrorText += numOfLogsError;
|
||||||
|
}
|
||||||
|
|
||||||
|
GUILayout.BeginHorizontal((showError) ? buttonActiveStyle : nonStyle);
|
||||||
|
if (GUILayout.Button(errorContent, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2)))
|
||||||
|
{
|
||||||
|
showError = !showError;
|
||||||
|
calculateCurrentLog();
|
||||||
|
}
|
||||||
|
if (GUILayout.Button(logsErrorText, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2)))
|
||||||
|
{
|
||||||
|
showError = !showError;
|
||||||
|
calculateCurrentLog();
|
||||||
|
}
|
||||||
|
GUILayout.EndHorizontal();
|
||||||
|
GUILayout.BeginHorizontal((showLog) ? buttonActiveStyle : barStyle);
|
||||||
|
if (GUILayout.Button(logContent, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2)))
|
||||||
|
{
|
||||||
|
showLog = !showLog;
|
||||||
|
calculateCurrentLog();
|
||||||
|
}
|
||||||
|
if (GUILayout.Button(logsText, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2)))
|
||||||
|
{
|
||||||
|
showLog = !showLog;
|
||||||
|
calculateCurrentLog();
|
||||||
|
}
|
||||||
|
GUILayout.EndHorizontal();
|
||||||
|
GUILayout.BeginHorizontal((showWarning) ? buttonActiveStyle : barStyle);
|
||||||
|
if (GUILayout.Button(warningContent, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2)))
|
||||||
|
{
|
||||||
|
showWarning = !showWarning;
|
||||||
|
calculateCurrentLog();
|
||||||
|
}
|
||||||
|
if (GUILayout.Button(logsWarningText, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2)))
|
||||||
|
{
|
||||||
|
showWarning = !showWarning;
|
||||||
|
calculateCurrentLog();
|
||||||
|
}
|
||||||
|
GUILayout.EndHorizontal();
|
||||||
|
|
||||||
|
|
||||||
if (GUILayout.Button(collapseContent, (collapse) ? buttonActiveStyle : barStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
if (GUILayout.Button(collapseContent, (collapse) ? buttonActiveStyle : barStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
||||||
collapse = !collapse;
|
collapse = !collapse;
|
||||||
calculateCurrentLog();
|
calculateCurrentLog();
|
||||||
@@ -1058,72 +1141,6 @@ public class Reporter : MonoBehaviour
|
|||||||
GUILayout.FlexibleSpace();
|
GUILayout.FlexibleSpace();
|
||||||
|
|
||||||
|
|
||||||
string logsText = " ";
|
|
||||||
if (collapse) {
|
|
||||||
logsText += numOfCollapsedLogs;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
logsText += numOfLogs;
|
|
||||||
}
|
|
||||||
string logsWarningText = " ";
|
|
||||||
if (collapse) {
|
|
||||||
logsWarningText += numOfCollapsedLogsWarning;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
logsWarningText += numOfLogsWarning;
|
|
||||||
}
|
|
||||||
string logsErrorText = " ";
|
|
||||||
if (collapse) {
|
|
||||||
logsErrorText += numOfCollapsedLogsError;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
logsErrorText += numOfLogsError;
|
|
||||||
}
|
|
||||||
|
|
||||||
GUILayout.BeginHorizontal((showLog) ? buttonActiveStyle : barStyle);
|
|
||||||
if (GUILayout.Button(logContent, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
|
||||||
showLog = !showLog;
|
|
||||||
calculateCurrentLog();
|
|
||||||
}
|
|
||||||
if (GUILayout.Button(logsText, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
|
||||||
showLog = !showLog;
|
|
||||||
calculateCurrentLog();
|
|
||||||
}
|
|
||||||
GUILayout.EndHorizontal();
|
|
||||||
GUILayout.BeginHorizontal((showWarning) ? buttonActiveStyle : barStyle);
|
|
||||||
if (GUILayout.Button(warningContent, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
|
||||||
showWarning = !showWarning;
|
|
||||||
calculateCurrentLog();
|
|
||||||
}
|
|
||||||
if (GUILayout.Button(logsWarningText, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
|
||||||
showWarning = !showWarning;
|
|
||||||
calculateCurrentLog();
|
|
||||||
}
|
|
||||||
GUILayout.EndHorizontal();
|
|
||||||
GUILayout.BeginHorizontal((showError) ? buttonActiveStyle : nonStyle);
|
|
||||||
if (GUILayout.Button(errorContent, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
|
||||||
showError = !showError;
|
|
||||||
calculateCurrentLog();
|
|
||||||
}
|
|
||||||
if (GUILayout.Button(logsErrorText, nonStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
|
||||||
showError = !showError;
|
|
||||||
calculateCurrentLog();
|
|
||||||
}
|
|
||||||
GUILayout.EndHorizontal();
|
|
||||||
|
|
||||||
if (GUILayout.Button(closeContent, barStyle, GUILayout.Width(size.x * 2), GUILayout.Height(size.y * 2))) {
|
|
||||||
show = false;
|
|
||||||
ReporterGUI gui = gameObject.GetComponent<ReporterGUI>();
|
|
||||||
DestroyImmediate(gui);
|
|
||||||
|
|
||||||
try {
|
|
||||||
gameObject.SendMessage("OnHideReporter");
|
|
||||||
}
|
|
||||||
catch (System.Exception e) {
|
|
||||||
Debug.LogException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
GUILayout.EndHorizontal();
|
GUILayout.EndHorizontal();
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
tBchannelMapr?generalp'FmBuildLocation@iosBuildDmProductNameD添添办公CisThirdExitJmBundleVersionCode
|
tBchannelMapr?generalp'FmBuildLocation@iosBuildDmProductNameD添添办公CisThirdExitJmBundleVersionCode
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -17,6 +17,7 @@ trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/icon-right2.unity3d,50aa822057ea4c2f0779fe31b5496b49
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
|
||||||
@@ -130,6 +131,8 @@ trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/img-icon.unity3d,63488ca2eaa5ef8bd10326b88c7644e9
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/wenjian-icon.unity3d,2e900aec0e6716f6d6575ddbb184b8dd
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
|
||||||
@@ -141,8 +144,9 @@ trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed7
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/xiazai-icon.unity3d,e04e394db38f26656ef1494166265f04
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/yuyue.unity3d,266cd2ffefcb8ded9f59a00a66ad87a7
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/yuyue.unity3d,266cd2ffefcb8ded9f59a00a66ad87a7
|
||||||
trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,0eba4690ff6ebf692a3dddf38f835405
|
trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,a723ba7e1e089dc0262596b958293958
|
||||||
trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
|
trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,03e0034303243936aec483752bdecfc9
|
trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,03e0034303243936aec483752bdecfc9
|
||||||
trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
|
trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
|
||||||
@@ -153,20 +157,20 @@ trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d6
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
|
trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
|
||||||
trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
|
trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBCust.lua,273bb2a70bb044a204392904889b074f
|
trCRM/upgradeRes4Publish/priority/lua/db/DBCust.lua,273bb2a70bb044a204392904889b074f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBMessage.lua,a80d8448cfdaebb072b3d7ec5f40bb60
|
trCRM/upgradeRes4Publish/priority/lua/db/DBMessage.lua,77841c7eda6d675c5b3f8f8cec7c65ba
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBOrder.lua,7f2087299796c187eb9866c14f4afcf8
|
trCRM/upgradeRes4Publish/priority/lua/db/DBOrder.lua,7f2087299796c187eb9866c14f4afcf8
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBRoot.lua,3b2f7f6d066a93d94754334c6b0b8ba3
|
trCRM/upgradeRes4Publish/priority/lua/db/DBRoot.lua,8acbe310f1c8202777ddc31620d51837
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBStatistics.lua,1f1fe6971f4702b5879e30715fb349e6
|
trCRM/upgradeRes4Publish/priority/lua/db/DBStatistics.lua,1f1fe6971f4702b5879e30715fb349e6
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBTextures.lua,55ddfb8bcb4af790b9da55626412e92a
|
trCRM/upgradeRes4Publish/priority/lua/db/DBTextures.lua,04bdb80ff340ec3bfef1b1ded0b6f082
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBUser.lua,4b287e00da702dc06ba1acb5206f5e0a
|
trCRM/upgradeRes4Publish/priority/lua/db/DBUser.lua,d0084b481f8e9cb189354e710a2ad71f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
|
trCRM/upgradeRes4Publish/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
|
||||||
trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
|
trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
|
||||||
trCRM/upgradeRes4Publish/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
|
trCRM/upgradeRes4Publish/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
|
||||||
trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,947abdf2c019f44a26211acf6f31e2dd
|
trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,947abdf2c019f44a26211acf6f31e2dd
|
||||||
trCRM/upgradeRes4Publish/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
|
trCRM/upgradeRes4Publish/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
|
||||||
trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,f000f7d25ec91a2208d2c18493fec81a
|
trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,dfc4b9ec86516424d5e5ccc8e694ac48
|
||||||
trCRM/upgradeRes4Publish/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
|
trCRM/upgradeRes4Publish/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
|
||||||
trCRM/upgradeRes4Publish/priority/lua/public/CLLInclude.lua,a83b770e54fae3e1a7e682f30b41ecbe
|
trCRM/upgradeRes4Publish/priority/lua/public/CLLInclude.lua,af45b105b52b82742084034a122dbad6
|
||||||
trCRM/upgradeRes4Publish/priority/lua/public/CLLIncludeBase.lua,4820cbe7f1f16ec63ed1dd8426533483
|
trCRM/upgradeRes4Publish/priority/lua/public/CLLIncludeBase.lua,4820cbe7f1f16ec63ed1dd8426533483
|
||||||
trCRM/upgradeRes4Publish/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
|
trCRM/upgradeRes4Publish/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
|
||||||
trCRM/upgradeRes4Publish/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
|
trCRM/upgradeRes4Publish/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
|
||||||
@@ -179,7 +183,7 @@ trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7c
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,85784ec79aefde29be3ef308e7b5203b
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,85784ec79aefde29be3ef308e7b5203b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,cde8ec272382f95abe0320714201b387
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,cde8ec272382f95abe0320714201b387
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,cff73cd564d54caaa97d74ac808e2d07
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,661bd1ff5cd143da76e37927bddce1dd
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
|
||||||
@@ -192,20 +196,20 @@ trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderMonth.lua,a0528f4babd
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPopTime.lua,04eda18a177de8ef755cbade62b61097
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPopTime.lua,04eda18a177de8ef755cbade62b61097
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLToastRoot.lua,5809bbdd4b059a64e8129c55b146b514
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLToastRoot.lua,5809bbdd4b059a64e8129c55b146b514
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CSCellBottomBtn.lua,f6b401c59ed10b8b0d2d72e5eb056227
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellAttachment.lua,a2a2646b04e3de80a094bdb73ba1d3bc
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellAttachment.lua,2eda8bbcfc7c1bceee855963602f973d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilterGroup.lua,8c33f89953c402f43b47022a71064cde
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilterGroup.lua,8c33f89953c402f43b47022a71064cde
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,035626bac75e16f15bc825f6e0ded212
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,4621e1261426a172e72820f105c43122
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellEmptySpace.lua,a009d0f2c20eb5239f430d2b30ecef40
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellEmptySpace.lua,a009d0f2c20eb5239f430d2b30ecef40
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendField.lua,dba644a81c6214e4804eaebc0931382f
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendField.lua,ad36b1df99250176f457b3cf9be575f5
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,0b73bcac6356a8a632785e860e684878
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,f0cedde396b52618d99ef95760a077e1
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellFollowList.lua,0cfc64444ddae6d47e4e07a76a0fcbaf
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellFollowList.lua,e5cc27c8def2b9a255e47f3b707d8426
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellImage.lua,edeb733a40a67f9e0431e448b3356d95
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellImage.lua,edeb733a40a67f9e0431e448b3356d95
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
|
||||||
@@ -220,25 +224,25 @@ trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform1.lua,3b291f386375
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform2.lua,e62a82bcc9fb817a4460e82b6351e18f
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform2.lua,e62a82bcc9fb817a4460e82b6351e18f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,8f055265d33f40a2278e159a8ebf2b56
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,8f055265d33f40a2278e159a8ebf2b56
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellTaskList.lua,d51c12f9e5de1f5db917d82a63585b85
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellTaskList.lua,55dc0892227d9f6f5092548293cdc9d8
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,06ea21012958c4b42ca8122d1515ed1f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,06ea21012958c4b42ca8122d1515ed1f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,27c2b4190bfba1c611ca682605b54d86
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,17086f0c2296f83f5f407385fe15980c
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopTime.lua,0e26b4cf8f9bfde695d5fcd64009c06a
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopTime.lua,ffdeaf9996a4aa6dda8f025faccbbe1e
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSplash.lua,6418723ac66fc8ab625db8d61cd2c07d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSplash.lua,6418723ac66fc8ab625db8d61cd2c07d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,2b1cfdf95c65071b1f480d8015615c78
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,edb08aadfb350845c99e74978da9f7a9
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,093deec807e28be04df4d593bcff9e38
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,29c95ef46d9adeb7d310ac073ca4ef26
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,277b9350b6eeced2c333ac9876acc888
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMine.lua,0be1d92322048e7747b85f824bda77ec
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMine.lua,0be1d92322048e7747b85f824bda77ec
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,07126517955d022169bbd02def384ade
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,54cb072f797503f7840dbf735852894f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,006f377723dc559415eeb80a4987eb3f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,a6dc405916d51c97422bf1862f3a8f5b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRBasePanel.lua,26b71aa4ebe7db385c5f159902022b6a
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPAbout.lua,dae2d1afc8a5e2d7c996c6056aa42dc4
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPAbout.lua,dae2d1afc8a5e2d7c996c6056aa42dc4
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPBatchGetCusts.lua,824f77c2486687108fa391a8fb08a405
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPBatchGetCusts.lua,824f77c2486687108fa391a8fb08a405
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPBindPhone.lua,c7ad2d414659e2aeecff5bba7f9f758d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPBindPhone.lua,c7ad2d414659e2aeecff5bba7f9f758d
|
||||||
@@ -246,51 +250,51 @@ trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPComFilter.lua,522e60b5e11321ef
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConfirm2.lua,bd0ea9f50708dedd598b517c1dfc739f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConfirm2.lua,bd0ea9f50708dedd598b517c1dfc739f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,24712c363be3eef2c7e32413cc9f146d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,24712c363be3eef2c7e32413cc9f146d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,152602fd1be6119a10e28e488090baa7
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,3787ca23b6d800304dc72ab8921b8428
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetailSimple.lua,7528caabcee343a09a3bb7a67a56010f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetailSimple.lua,b9363451fb74058d9a2948ae79a9b32f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,450e7e75ebfe83bb65d59beb3ce60782
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,450e7e75ebfe83bb65d59beb3ce60782
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,bcebb5a35d387e2bb40771169017f69a
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,4eef1bd538b1da25830187ce5be22300
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,5173a3a248c9989a58e6097a409a94e7
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,5173a3a248c9989a58e6097a409a94e7
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPEditPrice.lua,ceb906ae12222324b9a61f4b83ec7e58
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPEditPrice.lua,ceb906ae12222324b9a61f4b83ec7e58
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowFilter.lua,f436c880f71e048db7b82de41e881b8f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowFilter.lua,f436c880f71e048db7b82de41e881b8f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowList.lua,1fed6ece17c84668a9a8ac23bdb6ce13
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowList.lua,5e57ae6031f9bd40070355f5a203315b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPLogin.lua,3cc9a59870684a589fbdb2567cff402d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPLogin.lua,3cc9a59870684a589fbdb2567cff402d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,d75b0e5651468028373c4f326937d460
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,d75b0e5651468028373c4f326937d460
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMyInfor.lua,630b2e9e9355cbd9106b36b35d20fd3d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMyInfor.lua,79d2f37fad75d5d3fe2db97db9009733
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,602888a7dd58a9fe98a61ee9c829aa84
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,acf91842bee1f35910a1a31ef9a20085
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollow.lua,44d27d9aa244dd7bb4d039d627a96ad7
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollow.lua,df42aa80a2f9232603d2a16e5d547574
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowSimple.lua,35ac4acdd74e7c09950bbb26fed5d010
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowSimple.lua,35ac4acdd74e7c09950bbb26fed5d010
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowTask.lua,32466ec1a4b799de26e447f17cabc760
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowTask.lua,4d6d237f3fc86b4fcf87eece0236c212
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewOrder.lua,6e2e45005c89570bae55b3df5a0148f7
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewOrder.lua,377b7e10166dfb91862f695664c56c4b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOceanList.lua,0e9abcbfdd89a4264c02d1b1fd94cd10
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOceanList.lua,bb341e8933f89c7551fb3bc2a8f19dd1
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderDetail.lua,d69a767e5d6a6a5cc33fce98464d3bc1
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderDetail.lua,a6f126d3075af9b1dfa62f31f9833c35
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderList.lua,dad09d99c3d896f7c1ce1c1c854073ea
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderList.lua,dad09d99c3d896f7c1ce1c1c854073ea
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPProductDetail.lua,3dc8162a924b39216912d011f05ee774
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPProductDetail.lua,8b349ca65d41e650ebff14c3358e468d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPProductList.lua,58bf1853609c6bd92a81fac50f5e1efc
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPProductList.lua,58bf1853609c6bd92a81fac50f5e1efc
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep1.lua,e60401c35bddbb36174a5dce4334213c
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep1.lua,e60401c35bddbb36174a5dce4334213c
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,23c1f8a0e9f8df7cc569803f3e553729
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,ab379cdeb2755f13e177fd14fbff3bde
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep3.lua,0d3be662e0a236b709d8f1f9d6b3321e
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep3.lua,0d3be662e0a236b709d8f1f9d6b3321e
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,28ca57d169af022ec621dece879bdcfc
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,28ca57d169af022ec621dece879bdcfc
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectProduct.lua,6f04603760bd1ceed90cba39d1207228
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectProduct.lua,73db544d3da38058ab3385f2c3e4f665
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectServer.lua,50a46489d0d704df26d61ae9a2f5d5fe
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectServer.lua,50a46489d0d704df26d61ae9a2f5d5fe
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSetting.lua,3f0976bdbc070d9cebc936e5c21735f1
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSetting.lua,2523412c3ec127c8fa249ccaf0131c5c
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgDetail.lua,fd4b28f1cdf003bb4207e7a3064cffb8
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgDetail.lua,fd4b28f1cdf003bb4207e7a3064cffb8
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgList.lua,64012de583f1cd85584903ce68a0c812
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgList.lua,121d472a9c63850e668a9eebbc6fc413
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPTaskList.lua,1798231882ed1ffee8ce2fe6492c7b36
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPTaskList.lua,736bec0210a27e91958dedfcbab1a42f
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/AlertRoot.unity3d,eebc730459217511668036a3271830cb
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/AlertRoot.unity3d,eebc730459217511668036a3271830cb
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/EmptySpace.unity3d,f31364f6bf0af550da34b54cbe567791
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/EmptySpace.unity3d,f31364f6bf0af550da34b54cbe567791
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame1.unity3d,d9bf0935b8e4359d4ef3fef28ee6979d
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputCheckboxs.unity3d,fe4c73b8a6322152fad7ad979437665b
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputCheckboxs.unity3d,2e6c05b0f3a0e82b40f0274896e04e09
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputDate.unity3d,5823a644a38f4cb6ae2c87c209eef17e
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputDate.unity3d,38c09da1a975dae720b4fe52b9381427
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputMultText.unity3d,8bb8af600595195deda1661f7bb4b3f6
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputMultText.unity3d,8bb8af600595195deda1661f7bb4b3f6
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,23d3e12b541d9eb26d0f83a29145e62f
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,5896577d1b5f891eb32697f0228568a0
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputText.unity3d,25f8a9252f35debc4d68444440c03fad
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputText.unity3d,bf55f1401bf4847790ab039678c83575
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputTime.unity3d,8033c91366ec43b1f7f0b89bc47bc58f
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputTime.unity3d,a9ba632fdf816d73426fb4f1e44c9742
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
|
||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform3.unity3d,8dc3cf02ca7be3b6dee2a9902437812f
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform3.unity3d,8dc3cf02ca7be3b6dee2a9902437812f
|
||||||
@@ -299,54 +303,56 @@ trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8
|
|||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBatchGetCusts.unity3d,1887b44254dd18694af21c73a0c433c5
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBatchGetCusts.unity3d,1887b44254dd18694af21c73a0c433c5
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBindPhone.unity3d,58f85410d5d614196793a0ce1eceb800
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBindPhone.unity3d,58f85410d5d614196793a0ce1eceb800
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCalender.unity3d,a0357a0f5d338ebfdd32c3f7ccfbdbbf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCalender.unity3d,a0357a0f5d338ebfdd32c3f7ccfbdbbf
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelComFilter.unity3d,9586725145cff5f55a9eca89065f5f12
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelComFilter.unity3d,640dcb617f51bb5600239c29298df3de
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,f9191300dcd87528fdd3631b751728e2
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,a0323e9497eca5b1e2ba3ae04ad0bb28
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm2.unity3d,ad24a77e6cd58b9d89fd442efdfa05e6
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm2.unity3d,ad24a77e6cd58b9d89fd442efdfa05e6
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConnect.unity3d,8b75761010993e44fabc270719df036e
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConnect.unity3d,8b75761010993e44fabc270719df036e
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetail.unity3d,e89b0adec50280b6160b8b36a8c0ad68
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetail.unity3d,fa04011530ff0e645fe1f5767668c8aa
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetailSimple.unity3d,5f706ca8a29db94a29193cc212fb2d9a
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetailSimple.unity3d,5f706ca8a29db94a29193cc212fb2d9a
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustList.unity3d,f245c5f6cbe6e928b73a436a302d65fe
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustList.unity3d,f245c5f6cbe6e928b73a436a302d65fe
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustListProc.unity3d,6d34a582e26398cc21b51fdee50c05c4
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustListProc.unity3d,6d34a582e26398cc21b51fdee50c05c4
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelEditPrice.unity3d,556928848822b2e59c2e1bd0e399281f
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelEditPrice.unity3d,556928848822b2e59c2e1bd0e399281f
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowFilter.unity3d,cc3fedaa66097cf230aaf9b3767e6766
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowFilter.unity3d,cc3fedaa66097cf230aaf9b3767e6766
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowList.unity3d,bdb65aa651377613c26ce1b1bf6671f2
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowList.unity3d,be6ed96ba7d2b4aeb775c9f9a312817e
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,3f36134f30994eb3c205eaa85f6bacaf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowList4Cust.unity3d,77ebadbe205a7ee7647eeed1b90c083a
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,df8e2af7c56b7911ab45f4d92ef35961
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,6372b11261e10690cba3226ae2a5507f
|
||||||
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,7e17f87c9fb6ee64e2c735452b309fdb
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelLogin.unity3d,68658d870bfd42c01e8ef7f0c5438644
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelLogin.unity3d,68658d870bfd42c01e8ef7f0c5438644
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,377a830527364388350bf0cb99031caf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,377a830527364388350bf0cb99031caf
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMine.unity3d,5cedc775762a1849f2e76767e92adbb2
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMine.unity3d,ba4918a94e3171978ffa1390fc192a1d
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,687e89480fdd9d074d1ae636b070951d
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,687e89480fdd9d074d1ae636b070951d
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,52958f3469055cfa60179175a07ca9fe
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,52958f3469055cfa60179175a07ca9fe
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,1184f5588d2c8b676323c2eeb70b788d
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,1184f5588d2c8b676323c2eeb70b788d
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMyInfor.unity3d,c6640ed473b69f3c72d9f4639cf66eb6
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMyInfor.unity3d,2fd6f8bcbb09a32b8e35d5b109eaeee6
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewCust.unity3d,dab39d6090cd685f97211dbdf1f36a7b
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewCust.unity3d,221382abc91df5b01826c9492cba51d8
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollow.unity3d,80fe716f1f5cd445cdc7092e4f3bf10b
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollow.unity3d,7ad8cbed6989a92632a9cd1cd7c618b2
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollowSimple.unity3d,ebb0f59d2e2f6422734b5588e9e0df08
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollowSimple.unity3d,ebb0f59d2e2f6422734b5588e9e0df08
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollowTask.unity3d,ea596f54f78cd1d64032701cc286e4bb
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollowTask.unity3d,e94868a66f4ca0fb77eff1136ceedcc1
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,2453a96b8c8782ebe965c57d202b79ec
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,95716c18d9372983e012b76e5445da2e
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOceanList.unity3d,ca10d10d7a0bfd527593b59ccca3cb0f
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOceanList.unity3d,ca10d10d7a0bfd527593b59ccca3cb0f
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOrderDetail.unity3d,a1731cc1271cfd808fc7e2471d0335fe
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOrderDetail.unity3d,543e380849d022963635e62dc562d959
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOrderList.unity3d,b6ad0bb8c86aff4c0ff48fffa58d153e
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOrderList.unity3d,b6ad0bb8c86aff4c0ff48fffa58d153e
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,58c4a9930f351265342a31a37b11c7a0
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,58c4a9930f351265342a31a37b11c7a0
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,eeb63a97df92c49a16d1cb8684f4d38f
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,eeb63a97df92c49a16d1cb8684f4d38f
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,c581aa0663d7621cf179161466b484f4
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,c581aa0663d7621cf179161466b484f4
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopTime.unity3d,5553153d40049512c43288414591218f
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopTime.unity3d,5553153d40049512c43288414591218f
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelProductDetail.unity3d,aeb96cb6c88cae10674923cb78088673
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelProductDetail.unity3d,8646f40fef9d61e1a8f97b2aaf89f07b
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelProductList.unity3d,07dbbf1f88c3e10e5dfca1fbea259b21
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelProductList.unity3d,9c64e24f2e52edd8c3004f0263a8f651
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,e489864498b4ce7ec4f8ecf392f5c7ae
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,e489864498b4ce7ec4f8ecf392f5c7ae
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,dae40fe55360bef3ff4f4c82832acdda
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,dae40fe55360bef3ff4f4c82832acdda
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,90d401a06b9b8c1957751551cad64c5e
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,90d401a06b9b8c1957751551cad64c5e
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectProduct.unity3d,43fe0b426e702a034c3641692fa12147
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectProduct.unity3d,e17121d8ea3679e9f9df7afff12a7b6a
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectServer.unity3d,ad1eb38eafa99ef0bd5298a55c11720e
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectServer.unity3d,ad1eb38eafa99ef0bd5298a55c11720e
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSetting.unity3d,dc3b37bba3b707fcd07fc446de7cca1f
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSetting.unity3d,1985781c0663e872fd4027138a2a0c65
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,f8ea95854ab994cc6e06e2166967c0b3
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,f8ea95854ab994cc6e06e2166967c0b3
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgList.unity3d,3d0a1fd9c4b5d05b268bb73d3c810127
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgList.unity3d,2c08d20f93c60d84818518cab811ed51
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTaskList.unity3d,179f04012a054bea4339cc2e36d39ece
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTaskList.unity3d,ae74577603f5f00454299a8041cf2ddf
|
||||||
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTaskList4Cust.unity3d,55a55d396499d77c93a8c5a06477426c
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTasks.unity3d,848c55fad144ffeda12f4882ca8793c0
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTasks.unity3d,848c55fad144ffeda12f4882ca8793c0
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWebView.unity3d,18c6bf9e3f56cfe57f6d0dece1b40843
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWebView.unity3d,18c6bf9e3f56cfe57f6d0dece1b40843
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgList.unity3d,2c08d20f93c60d84818518cab811ed51
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgList.unity3d,2c08d20f93c60d84818518cab811ed51
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendField.lua,ad36b1df99250176f457b3cf9be575f5
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendField.lua,ad36b1df99250176f457b3cf9be575f5
|
||||||
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPMoreProc4Cust.lua,d75b0e5651468028373c4f326937d460
|
||||||
trCRM/upgradeRes/priority/lua/public/CLLIncludeBase.lua,4820cbe7f1f16ec63ed1dd8426533483
|
trCRM/upgradeRes/priority/lua/public/CLLIncludeBase.lua,4820cbe7f1f16ec63ed1dd8426533483
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CSPMain.lua,277b9350b6eeced2c333ac9876acc888
|
trCRM/upgradeRes/priority/lua/ui/panel/CSPMain.lua,277b9350b6eeced2c333ac9876acc888
|
||||||
trCRM/upgradeRes/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
|
trCRM/upgradeRes/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
|
||||||
@@ -23,7 +24,7 @@ trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8
|
|||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelOceanList.unity3d,ca10d10d7a0bfd527593b59ccca3cb0f
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelOceanList.unity3d,ca10d10d7a0bfd527593b59ccca3cb0f
|
||||||
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
|
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelGuid.unity3d,3f36134f30994eb3c205eaa85f6bacaf
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelGuid.unity3d,6372b11261e10690cba3226ae2a5507f
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPCalender.lua,06ea21012958c4b42ca8122d1515ed1f
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPCalender.lua,06ea21012958c4b42ca8122d1515ed1f
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
|
||||||
@@ -33,7 +34,7 @@ trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,eeb63a97df92c49
|
|||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_data.unity3d,d2c0627b468f06867987c41b74c84dce
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_data.unity3d,d2c0627b468f06867987c41b74c84dce
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/icon-right2.unity3d,50aa822057ea4c2f0779fe31b5496b49
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/icon-right2.unity3d,50aa822057ea4c2f0779fe31b5496b49
|
||||||
trCRM/upgradeRes/priority/lua/toolkit/LuaUtl.lua,cde8ec272382f95abe0320714201b387
|
trCRM/upgradeRes/priority/lua/toolkit/LuaUtl.lua,cde8ec272382f95abe0320714201b387
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
|
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPopTime.lua,04eda18a177de8ef755cbade62b61097
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
|
||||||
trCRM/upgradeRes/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
|
trCRM/upgradeRes/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/ipt_bg.unity3d,b1698fd4a965642b0908672fbc283a64
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/ipt_bg.unity3d,b1698fd4a965642b0908672fbc283a64
|
||||||
@@ -51,6 +52,7 @@ trCRM/upgradeRes/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450c
|
|||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelLogin.unity3d,68658d870bfd42c01e8ef7f0c5438644
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelLogin.unity3d,68658d870bfd42c01e8ef7f0c5438644
|
||||||
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPSetting.lua,2523412c3ec127c8fa249ccaf0131c5c
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPSetting.lua,2523412c3ec127c8fa249ccaf0131c5c
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewOrder.lua,377b7e10166dfb91862f695664c56c4b
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewOrder.lua,377b7e10166dfb91862f695664c56c4b
|
||||||
@@ -64,6 +66,7 @@ trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustListProc.unity3d,6d34a582e26398c
|
|||||||
trCRM/upgradeRes/other/txt/IOS/serviceProto.unity3d,b4a711698317a7a9198dc4632fd3795a
|
trCRM/upgradeRes/other/txt/IOS/serviceProto.unity3d,b4a711698317a7a9198dc4632fd3795a
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelWebView.unity3d,18c6bf9e3f56cfe57f6d0dece1b40843
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelWebView.unity3d,18c6bf9e3f56cfe57f6d0dece1b40843
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
|
||||||
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/xiazai-icon.unity3d,e04e394db38f26656ef1494166265f04
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
|
||||||
trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
|
trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
|
||||||
@@ -72,8 +75,8 @@ trCRM/upgradeRes/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5
|
|||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectServer.lua,50a46489d0d704df26d61ae9a2f5d5fe
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectServer.lua,50a46489d0d704df26d61ae9a2f5d5fe
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMsg.unity3d,1184f5588d2c8b676323c2eeb70b788d
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMsg.unity3d,1184f5588d2c8b676323c2eeb70b788d
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewCust.lua,5a651af95e2e6131a56bdb2c18457072
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewCust.lua,acf91842bee1f35910a1a31ef9a20085
|
||||||
trCRM/upgradeRes/priority/atlas/IOS/atlasAllReal.unity3d,f3de43f2034ced0ebc21bac92cd29192
|
trCRM/upgradeRes/priority/atlas/IOS/atlasAllReal.unity3d,a723ba7e1e089dc0262596b958293958
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellProductList.lua,078920175f85f04660584bddb359b7ab
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellProductList.lua,078920175f85f04660584bddb359b7ab
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/phone.unity3d,61b2acb49d33054c9e9b88d0b4102d61
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/phone.unity3d,61b2acb49d33054c9e9b88d0b4102d61
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,52958f3469055cfa60179175a07ca9fe
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,52958f3469055cfa60179175a07ca9fe
|
||||||
@@ -82,24 +85,25 @@ trCRM/upgradeRes/priority/ui/panel/IOS/PanelSetting.unity3d,1985781c0663e872fd40
|
|||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPopTime.lua,04eda18a177de8ef755cbade62b61097
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
|
||||||
trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
|
trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
|
||||||
trCRM/upgradeRes/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
|
trCRM/upgradeRes/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelAbout.unity3d,5973617a53e87793dd18f06d5e9d47f7
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/img-icon.unity3d,63488ca2eaa5ef8bd10326b88c7644e9
|
||||||
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/upload.unity3d,595de11108017f12c98da808c51ce0fe
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewFollow.unity3d,7ad8cbed6989a92632a9cd1cd7c618b2
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewFollow.unity3d,7ad8cbed6989a92632a9cd1cd7c618b2
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellAttachment.lua,f154f14031a5880e25898ff927a27f5d
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellAttachment.lua,2eda8bbcfc7c1bceee855963602f973d
|
||||||
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderMonth.lua,a0528f4babd35af565034c810be1c101
|
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderMonth.lua,a0528f4babd35af565034c810be1c101
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
|
||||||
trCRM/upgradeRes/other/uiAtlas/logo/IOS/512.unity3d,5eb2ccd0ff5993c567417936bf584055
|
trCRM/upgradeRes/other/uiAtlas/logo/IOS/512.unity3d,5eb2ccd0ff5993c567417936bf584055
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewCust.unity3d,221382abc91df5b01826c9492cba51d8
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewCust.unity3d,221382abc91df5b01826c9492cba51d8
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetailSimple.lua,b9363451fb74058d9a2948ae79a9b32f
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetailSimple.lua,b9363451fb74058d9a2948ae79a9b32f
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectProduct.unity3d,e17121d8ea3679e9f9df7afff12a7b6a
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectProduct.unity3d,e17121d8ea3679e9f9df7afff12a7b6a
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellComFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustListProc.lua,5173a3a248c9989a58e6097a409a94e7
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustListProc.lua,5173a3a248c9989a58e6097a409a94e7
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
|
||||||
@@ -107,12 +111,12 @@ trCRM/upgradeRes/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc
|
|||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep1.lua,e60401c35bddbb36174a5dce4334213c
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep1.lua,e60401c35bddbb36174a5dce4334213c
|
||||||
trCRM/upgradeRes/priority/lua/db/DBOrder.lua,7f2087299796c187eb9866c14f4afcf8
|
trCRM/upgradeRes/priority/lua/db/DBOrder.lua,7f2087299796c187eb9866c14f4afcf8
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,f8ea95854ab994cc6e06e2166967c0b3
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,f8ea95854ab994cc6e06e2166967c0b3
|
||||||
trCRM/upgradeRes/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelTasks.unity3d,848c55fad144ffeda12f4882ca8793c0
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelTasks.unity3d,848c55fad144ffeda12f4882ca8793c0
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelHotWheel.unity3d,7e17f87c9fb6ee64e2c735452b309fdb
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelHotWheel.unity3d,7e17f87c9fb6ee64e2c735452b309fdb
|
||||||
trCRM/upgradeRes/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
|
trCRM/upgradeRes/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelOrderDetail.unity3d,e23e912075848862a1ae7155d86831a6
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelOrderDetail.unity3d,543e380849d022963635e62dc562d959
|
||||||
trCRM/upgradeRes/priority/lua/db/DBCust.lua,273bb2a70bb044a204392904889b074f
|
trCRM/upgradeRes/priority/lua/db/DBCust.lua,273bb2a70bb044a204392904889b074f
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,e489864498b4ce7ec4f8ecf392f5c7ae
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,e489864498b4ce7ec4f8ecf392f5c7ae
|
||||||
@@ -123,7 +127,7 @@ trCRM/upgradeRes/other/uiAtlas/mine/IOS/sms.unity3d,11c2ffdad77b187606435b0b2bc3
|
|||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/close.unity3d,2df0ed16f214398d78b972ee611a22df
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/close.unity3d,2df0ed16f214398d78b972ee611a22df
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPWebView.lua,29c95ef46d9adeb7d310ac073ca4ef26
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPWebView.lua,29c95ef46d9adeb7d310ac073ca4ef26
|
||||||
trCRM/upgradeRes/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
|
trCRM/upgradeRes/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelConfirm.unity3d,f9191300dcd87528fdd3631b751728e2
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelConfirm.unity3d,a0323e9497eca5b1e2ba3ae04ad0bb28
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/shut.unity3d,c0a7889daa173ba7eb4e0608d4147d2f
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/shut.unity3d,c0a7889daa173ba7eb4e0608d4147d2f
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellComFilterGroup.lua,8c33f89953c402f43b47022a71064cde
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellComFilterGroup.lua,8c33f89953c402f43b47022a71064cde
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform3.lua,8f055265d33f40a2278e159a8ebf2b56
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform3.lua,8f055265d33f40a2278e159a8ebf2b56
|
||||||
@@ -131,16 +135,17 @@ trCRM/upgradeRes/other/uiAtlas/order/IOS/system.unity3d,f5f16b0b52fb5f0c303a7b20
|
|||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/log_bg.unity3d,6e86477cb2815f29ab537aa085b88b85
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/log_bg.unity3d,6e86477cb2815f29ab537aa085b88b85
|
||||||
trCRM/upgradeRes/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
|
trCRM/upgradeRes/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectCompany.lua,28ca57d169af022ec621dece879bdcfc
|
||||||
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
|
||||||
trCRM/upgradeRes/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
|
trCRM/upgradeRes/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
||||||
trCRM/upgradeRes/priority/lua/db/DBTextures.lua,71acd79671664884eface47928cd8894
|
trCRM/upgradeRes/priority/lua/db/DBTextures.lua,04bdb80ff340ec3bfef1b1ded0b6f082
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPComFilter.lua,522e60b5e11321ef12cb2466b5b249d2
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPComFilter.lua,522e60b5e11321ef12cb2466b5b249d2
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CSPMine.lua,0be1d92322048e7747b85f824bda77ec
|
trCRM/upgradeRes/priority/lua/ui/panel/CSPMine.lua,0be1d92322048e7747b85f824bda77ec
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/ipt.unity3d,28f98d5b45b9bc1f5b9cfc4f1703ddfe
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/ipt.unity3d,28f98d5b45b9bc1f5b9cfc4f1703ddfe
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellFollowList.lua,0cfc64444ddae6d47e4e07a76a0fcbaf
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellFollowList.lua,e5cc27c8def2b9a255e47f3b707d8426
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMain.unity3d,377a830527364388350bf0cb99031caf
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMain.unity3d,377a830527364388350bf0cb99031caf
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,90d401a06b9b8c1957751551cad64c5e
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,90d401a06b9b8c1957751551cad64c5e
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollowSimple.lua,35ac4acdd74e7c09950bbb26fed5d010
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollowSimple.lua,35ac4acdd74e7c09950bbb26fed5d010
|
||||||
@@ -153,9 +158,9 @@ trCRM/upgradeRes/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f6125
|
|||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellOrderList.lua,d4a79966004672384a664700987d2533
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellOrderList.lua,d4a79966004672384a664700987d2533
|
||||||
trCRM/upgradeRes/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
|
trCRM/upgradeRes/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustList.unity3d,f245c5f6cbe6e928b73a436a302d65fe
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustList.unity3d,f245c5f6cbe6e928b73a436a302d65fe
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPFollowList.lua,91d8b656329579d0cc43e2170118ba21
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPFollowList.lua,5e57ae6031f9bd40070355f5a203315b
|
||||||
trCRM/upgradeRes/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
|
trCRM/upgradeRes/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep2.lua,23c1f8a0e9f8df7cc569803f3e553729
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep2.lua,ab379cdeb2755f13e177fd14fbff3bde
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CSPMsg.lua,54cb072f797503f7840dbf735852894f
|
trCRM/upgradeRes/priority/lua/ui/panel/CSPMsg.lua,54cb072f797503f7840dbf735852894f
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMine.unity3d,ba4918a94e3171978ffa1390fc192a1d
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelMine.unity3d,ba4918a94e3171978ffa1390fc192a1d
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
|
||||||
@@ -185,17 +190,15 @@ trCRM/upgradeRes/priority/ui/panel/IOS/PanelProductList.unity3d,9c64e24f2e52edd8
|
|||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelConnect.unity3d,8b75761010993e44fabc270719df036e
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelConnect.unity3d,8b75761010993e44fabc270719df036e
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPConfirm2.lua,bd0ea9f50708dedd598b517c1dfc739f
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPConfirm2.lua,bd0ea9f50708dedd598b517c1dfc739f
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPBindPhone.lua,c7ad2d414659e2aeecff5bba7f9f758d
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPBindPhone.lua,c7ad2d414659e2aeecff5bba7f9f758d
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelOrderList.unity3d,b6ad0bb8c86aff4c0ff48fffa58d153e
|
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/icon_6.unity3d,6ca952b69c2297e56f3d30d68ad88b28
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/icon_6.unity3d,6ca952b69c2297e56f3d30d68ad88b28
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRBasePanel.lua,26b71aa4ebe7db385c5f159902022b6a
|
trCRM/upgradeRes/priority/lua/ui/panel/TRBasePanel.lua,26b71aa4ebe7db385c5f159902022b6a
|
||||||
trCRM/upgradeRes/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
|
trCRM/upgradeRes/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
|
||||||
trCRM/upgradeRes/priority/ui/other/IOS/EmptySpace.unity3d,f31364f6bf0af550da34b54cbe567791
|
trCRM/upgradeRes/priority/ui/other/IOS/EmptySpace.unity3d,f31364f6bf0af550da34b54cbe567791
|
||||||
trCRM/upgradeRes/priority/ui/other/IOS/InputCheckboxs.unity3d,2e6c05b0f3a0e82b40f0274896e04e09
|
trCRM/upgradeRes/priority/ui/other/IOS/InputCheckboxs.unity3d,2e6c05b0f3a0e82b40f0274896e04e09
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
|
|
||||||
trCRM/upgradeRes/priority/ui/other/IOS/InputPoplist.unity3d,5896577d1b5f891eb32697f0228568a0
|
trCRM/upgradeRes/priority/ui/other/IOS/InputPoplist.unity3d,5896577d1b5f891eb32697f0228568a0
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelTaskList.unity3d,3d02a5feb815953e8381e6ca6eee574e
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellOceanList.lua,911d6edb241c34ee721815622ea707c3
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
|
||||||
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
|
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
|
||||||
trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
|
trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
|
||||||
@@ -203,15 +206,16 @@ trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work2.unity3d,8579e52d8aa949abce514
|
|||||||
trCRM/upgradeRes/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
|
trCRM/upgradeRes/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPProductList.lua,58bf1853609c6bd92a81fac50f5e1efc
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPProductList.lua,58bf1853609c6bd92a81fac50f5e1efc
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
|
||||||
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
|
||||||
trCRM/upgradeRes/priority/lua/db/DBUser.lua,d0084b481f8e9cb189354e710a2ad71f
|
trCRM/upgradeRes/priority/lua/db/DBUser.lua,d0084b481f8e9cb189354e710a2ad71f
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep3.lua,0d3be662e0a236b709d8f1f9d6b3321e
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep3.lua,0d3be662e0a236b709d8f1f9d6b3321e
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
|
trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
|
||||||
trCRM/upgradeRes/priority/lua/toolkit/MyUtl.lua,50494f2e0672f8a5232d6fbf6016d12d
|
trCRM/upgradeRes/priority/lua/toolkit/MyUtl.lua,661bd1ff5cd143da76e37927bddce1dd
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
|
||||||
trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
|
trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
|
||||||
trCRM/upgradeRes/priority/ui/other/IOS/InputMultText.unity3d,8bb8af600595195deda1661f7bb4b3f6
|
trCRM/upgradeRes/priority/ui/other/IOS/InputMultText.unity3d,8bb8af600595195deda1661f7bb4b3f6
|
||||||
@@ -220,7 +224,7 @@ trCRM/upgradeRes/priority/lua/ui/cell/TRCellEmptySpace.lua,a009d0f2c20eb5239f430
|
|||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollow.lua,2962cf4d3dcc8531fe333030f16ffb88
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollow.lua,df42aa80a2f9232603d2a16e5d547574
|
||||||
trCRM/upgradeRes/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
|
trCRM/upgradeRes/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
|
||||||
@@ -231,15 +235,15 @@ trCRM/upgradeRes/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694e
|
|||||||
trCRM/upgradeRes/priority/lua/ui/cell/CSCellBottomBtn.lua,f6b401c59ed10b8b0d2d72e5eb056227
|
trCRM/upgradeRes/priority/lua/ui/cell/CSCellBottomBtn.lua,f6b401c59ed10b8b0d2d72e5eb056227
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_fingerprint.unity3d,c8c718e4646589cb5c1e9fa92165ae98
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_fingerprint.unity3d,c8c718e4646589cb5c1e9fa92165ae98
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_enterprise.unity3d,a8b0984f1a0b1b8dd9ceb487cc7d1884
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_enterprise.unity3d,a8b0984f1a0b1b8dd9ceb487cc7d1884
|
||||||
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelAbout.unity3d,5973617a53e87793dd18f06d5e9d47f7
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelCalender.unity3d,a0357a0f5d338ebfdd32c3f7ccfbdbbf
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelCalender.unity3d,a0357a0f5d338ebfdd32c3f7ccfbdbbf
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform1.lua,3b291f38637590e0fca816cae521a4f0
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform1.lua,3b291f38637590e0fca816cae521a4f0
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CSPTasks.lua,a6dc405916d51c97422bf1862f3a8f5b
|
trCRM/upgradeRes/priority/lua/ui/panel/CSPTasks.lua,a6dc405916d51c97422bf1862f3a8f5b
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
|
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollowTask.lua,591672cab0a1e8e81ed68a1fb20f4d0c
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollowTask.lua,4d6d237f3fc86b4fcf87eece0236c212
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/upload.unity3d,595de11108017f12c98da808c51ce0fe
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPTaskList.lua,736bec0210a27e91958dedfcbab1a42f
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPTaskList.lua,1798231882ed1ffee8ce2fe6492c7b36
|
|
||||||
trCRM/upgradeRes/priority/lua/net/CLLNet.lua,947abdf2c019f44a26211acf6f31e2dd
|
trCRM/upgradeRes/priority/lua/net/CLLNet.lua,947abdf2c019f44a26211acf6f31e2dd
|
||||||
trCRM/upgradeRes/priority/lua/CLLMainLua.lua,03e0034303243936aec483752bdecfc9
|
trCRM/upgradeRes/priority/lua/CLLMainLua.lua,03e0034303243936aec483752bdecfc9
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,f0cedde396b52618d99ef95760a077e1
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,f0cedde396b52618d99ef95760a077e1
|
||||||
@@ -247,11 +251,13 @@ trCRM/upgradeRes/priority/lua/ui/panel/TRPCustFilter.lua,450e7e75ebfe83bb65d59be
|
|||||||
trCRM/upgradeRes/priority/ui/other/IOS/InputTime.unity3d,a9ba632fdf816d73426fb4f1e44c9742
|
trCRM/upgradeRes/priority/ui/other/IOS/InputTime.unity3d,a9ba632fdf816d73426fb4f1e44c9742
|
||||||
trCRM/upgradeRes/priority/lua/toolkit/KKLogListener.lua,85784ec79aefde29be3ef308e7b5203b
|
trCRM/upgradeRes/priority/lua/toolkit/KKLogListener.lua,85784ec79aefde29be3ef308e7b5203b
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
|
trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
|
||||||
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/wenjian-icon.unity3d,2e900aec0e6716f6d6575ddbb184b8dd
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustFilter.unity3d,feab38851af1648a9254df68957e776c
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustFilter.unity3d,feab38851af1648a9254df68957e776c
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectCompany.lua,28ca57d169af022ec621dece879bdcfc
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
|
||||||
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
|
||||||
trCRM/upgradeRes/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
|
trCRM/upgradeRes/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPConfirm.lua,27c2b4190bfba1c611ca682605b54d86
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
|
||||||
trCRM/upgradeRes/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
|
trCRM/upgradeRes/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
|
||||||
@@ -263,20 +269,19 @@ trCRM/upgradeRes/priority/lua/ui/panel/CLLPPopList.lua,17086f0c2296f83f5f407385f
|
|||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform2.lua,e62a82bcc9fb817a4460e82b6351e18f
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform2.lua,e62a82bcc9fb817a4460e82b6351e18f
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
|
||||||
trCRM/upgradeRes/priority/lua/net/NetProto.lua,3ce99787132055f59cc97974b5c6c467
|
trCRM/upgradeRes/priority/lua/net/NetProto.lua,47e1938ef981f31a389d99cc859b1df1
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/xuanze_bg.unity3d,6cef123588b571983c5169aec50fcd8a
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/xuanze_bg.unity3d,6cef123588b571983c5169aec50fcd8a
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
|
trCRM/upgradeRes/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewFollowTask.unity3d,b84afdc35c7652fd979e2cd02dc8e930
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewFollowTask.unity3d,e94868a66f4ca0fb77eff1136ceedcc1
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectServer.unity3d,ad1eb38eafa99ef0bd5298a55c11720e
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectServer.unity3d,ad1eb38eafa99ef0bd5298a55c11720e
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
|
|
||||||
trCRM/upgradeRes/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
|
trCRM/upgradeRes/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
|
||||||
trCRM/upgradeRes/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
|
trCRM/upgradeRes/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopList.unity3d,c581aa0663d7621cf179161466b484f4
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopList.unity3d,c581aa0663d7621cf179161466b484f4
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellProductSelected.lua,e7f4b1e06a54d5fa52cf9a4ed00f5233
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellProductSelected.lua,e7f4b1e06a54d5fa52cf9a4ed00f5233
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewOrder.unity3d,95716c18d9372983e012b76e5445da2e
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewOrder.unity3d,95716c18d9372983e012b76e5445da2e
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustList.lua,bcebb5a35d387e2bb40771169017f69a
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustList.lua,4eef1bd538b1da25830187ce5be22300
|
||||||
trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
|
trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
|
||||||
trCRM/upgradeRes/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
|
trCRM/upgradeRes/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
|
||||||
@@ -287,15 +292,14 @@ trCRM/upgradeRes/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531c
|
|||||||
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
|
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
|
||||||
trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
|
trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLLCellServer.lua,52979aedf684a79bc667bbe73b508aca
|
trCRM/upgradeRes/priority/lua/ui/cell/CLLCellServer.lua,52979aedf684a79bc667bbe73b508aca
|
||||||
trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
|
trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPOrderDetail.lua,71cf7998ad430b8f944a08578558a076
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPOrderDetail.lua,a6f126d3075af9b1dfa62f31f9833c35
|
||||||
trCRM/upgradeRes/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
|
trCRM/upgradeRes/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPEditPrice.lua,ceb906ae12222324b9a61f4b83ec7e58
|
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetail.lua,152602fd1be6119a10e28e488090baa7
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetail.lua,3787ca23b6d800304dc72ab8921b8428
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/icon_1.unity3d,e0bb2894cfbec37f0512353e65845fa7
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/icon_1.unity3d,e0bb2894cfbec37f0512353e65845fa7
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelModifyFiled.unity3d,687e89480fdd9d074d1ae636b070951d
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelModifyFiled.unity3d,687e89480fdd9d074d1ae636b070951d
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,dae40fe55360bef3ff4f4c82832acdda
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,dae40fe55360bef3ff4f4c82832acdda
|
||||||
@@ -309,12 +313,12 @@ trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_remind.unity3d,28b12417bc85c9ba865
|
|||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPProductDetail.lua,8b349ca65d41e650ebff14c3358e468d
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPProductDetail.lua,8b349ca65d41e650ebff14c3358e468d
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgList.lua,121d472a9c63850e668a9eebbc6fc413
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgList.lua,121d472a9c63850e668a9eebbc6fc413
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellTaskList.lua,d51c12f9e5de1f5db917d82a63585b85
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellTaskList.lua,55dc0892227d9f6f5092548293cdc9d8
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPMoreProc4Cust.lua,d75b0e5651468028373c4f326937d460
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPPopTime.lua,ffdeaf9996a4aa6dda8f025faccbbe1e
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPPopTime.lua,ffdeaf9996a4aa6dda8f025faccbbe1e
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/add.unity3d,76e45a9f49114ef76b198d59e3f9b124
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/add.unity3d,76e45a9f49114ef76b198d59e3f9b124
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/icon_5.unity3d,9a7f3f3e1fc304d60b0e0149d7d73ce4
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/icon_5.unity3d,9a7f3f3e1fc304d60b0e0149d7d73ce4
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellOceanList.lua,911d6edb241c34ee721815622ea707c3
|
trCRM/upgradeRes/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
|
||||||
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_customer.unity3d,eba6ba58a8149e369e8e02b8cac777c8
|
trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_customer.unity3d,eba6ba58a8149e369e8e02b8cac777c8
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
|
||||||
trCRM/upgradeRes/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
|
trCRM/upgradeRes/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
|
||||||
@@ -322,17 +326,18 @@ trCRM/upgradeRes/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc
|
|||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPBatchGetCusts.lua,824f77c2486687108fa391a8fb08a405
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPBatchGetCusts.lua,824f77c2486687108fa391a8fb08a405
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPConnect.lua,24712c363be3eef2c7e32413cc9f146d
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPConnect.lua,24712c363be3eef2c7e32413cc9f146d
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
|
trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelTaskList.unity3d,ae74577603f5f00454299a8041cf2ddf
|
||||||
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustList.lua,035626bac75e16f15bc825f6e0ded212
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustList.lua,4621e1261426a172e72820f105c43122
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelTaskList4Cust.unity3d,55a55d396499d77c93a8c5a06477426c
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/sort.unity3d,93ec07e5dd76e80c3b0708d28c4415e0
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/sort.unity3d,93ec07e5dd76e80c3b0708d28c4415e0
|
||||||
trCRM/upgradeRes/other/uiAtlas/order/IOS/xuanze.unity3d,dd97c2c26ce6ee06837604e4766645e6
|
trCRM/upgradeRes/other/uiAtlas/order/IOS/xuanze.unity3d,dd97c2c26ce6ee06837604e4766645e6
|
||||||
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
|
trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
|
||||||
trCRM/upgradeRes/priority/lua/public/CLLInclude.lua,a83b770e54fae3e1a7e682f30b41ecbe
|
trCRM/upgradeRes/priority/lua/public/CLLInclude.lua,af45b105b52b82742084034a122dbad6
|
||||||
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelFollowList4Cust.unity3d,77ebadbe205a7ee7647eeed1b90c083a
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
|
trCRM/upgradeRes/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelOrderList.unity3d,b6ad0bb8c86aff4c0ff48fffa58d153e
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
|
trCRM/upgradeRes/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
|
||||||
@@ -341,12 +346,12 @@ trCRM/upgradeRes/other/uiAtlas/work/IOS/yuyue.unity3d,266cd2ffefcb8ded9f59a00a66
|
|||||||
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
|
trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
|
||||||
trCRM/upgradeRes/priority/ui/other/IOS/InputText.unity3d,bf55f1401bf4847790ab039678c83575
|
trCRM/upgradeRes/priority/ui/other/IOS/InputText.unity3d,bf55f1401bf4847790ab039678c83575
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPOrderList.lua,dad09d99c3d896f7c1ce1c1c854073ea
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPOrderList.lua,dad09d99c3d896f7c1ce1c1c854073ea
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
|
trCRM/upgradeRes/priority/lua/ui/cell/TRCellComFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
||||||
trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
|
trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
|
||||||
trCRM/upgradeRes/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPEditPrice.lua,ceb906ae12222324b9a61f4b83ec7e58
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
|
||||||
trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
|
trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
|
||||||
trCRM/upgradeRes/priority/ui/panel/IOS/PanelFollowList.unity3d,b5a54934fe5d7983042225526b56534c
|
trCRM/upgradeRes/priority/ui/panel/IOS/PanelFollowList.unity3d,be6ed96ba7d2b4aeb775c9f9a312817e
|
||||||
trCRM/upgradeRes/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
|
trCRM/upgradeRes/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPFollowFilter.lua,f436c880f71e048db7b82de41e881b8f
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPFollowFilter.lua,f436c880f71e048db7b82de41e881b8f
|
||||||
trCRM/upgradeRes/priority/lua/ui/panel/TRPAbout.lua,dae2d1afc8a5e2d7c996c6056aa42dc4
|
trCRM/upgradeRes/priority/lua/ui/panel/TRPAbout.lua,dae2d1afc8a5e2d7c996c6056aa42dc4
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -24,7 +24,7 @@ trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOceanList.unity3d,ca10d10d7a0bfd527593b59ccca3cb0f
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOceanList.unity3d,ca10d10d7a0bfd527593b59ccca3cb0f
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
|
trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,3f36134f30994eb3c205eaa85f6bacaf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,6372b11261e10690cba3226ae2a5507f
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,06ea21012958c4b42ca8122d1515ed1f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,06ea21012958c4b42ca8122d1515ed1f
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
|
||||||
@@ -64,6 +64,7 @@ trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustListProc.unity3d,6d34a58
|
|||||||
trCRM/upgradeRes4Publish/other/txt/IOS/serviceProto.unity3d,b4a711698317a7a9198dc4632fd3795a
|
trCRM/upgradeRes4Publish/other/txt/IOS/serviceProto.unity3d,b4a711698317a7a9198dc4632fd3795a
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform1.lua,3b291f38637590e0fca816cae521a4f0
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform1.lua,3b291f38637590e0fca816cae521a4f0
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/xiazai-icon.unity3d,e04e394db38f26656ef1494166265f04
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
|
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,52958f3469055cfa60179175a07ca9fe
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,52958f3469055cfa60179175a07ca9fe
|
||||||
@@ -73,8 +74,8 @@ trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectServer.lua,50a46489d0d704df26d61ae9a2f5d5fe
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectServer.lua,50a46489d0d704df26d61ae9a2f5d5fe
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,dae40fe55360bef3ff4f4c82832acdda
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,dae40fe55360bef3ff4f4c82832acdda
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,5a651af95e2e6131a56bdb2c18457072
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,acf91842bee1f35910a1a31ef9a20085
|
||||||
trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,f3de43f2034ced0ebc21bac92cd29192
|
trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,a723ba7e1e089dc0262596b958293958
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellProductList.lua,078920175f85f04660584bddb359b7ab
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellProductList.lua,078920175f85f04660584bddb359b7ab
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/phone.unity3d,61b2acb49d33054c9e9b88d0b4102d61
|
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/phone.unity3d,61b2acb49d33054c9e9b88d0b4102d61
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,24712c363be3eef2c7e32413cc9f146d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,24712c363be3eef2c7e32413cc9f146d
|
||||||
@@ -83,7 +84,7 @@ trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSetting.unity3d,1985781c0663
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,c581aa0663d7621cf179161466b484f4
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,c581aa0663d7621cf179161466b484f4
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollowTask.unity3d,b84afdc35c7652fd979e2cd02dc8e930
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollowTask.unity3d,e94868a66f4ca0fb77eff1136ceedcc1
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
|
||||||
@@ -93,15 +94,17 @@ trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc5
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/img-icon.unity3d,63488ca2eaa5ef8bd10326b88c7644e9
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelAbout.unity3d,5973617a53e87793dd18f06d5e9d47f7
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelAbout.unity3d,5973617a53e87793dd18f06d5e9d47f7
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollow.unity3d,7ad8cbed6989a92632a9cd1cd7c618b2
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollow.unity3d,7ad8cbed6989a92632a9cd1cd7c618b2
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellAttachment.lua,f154f14031a5880e25898ff927a27f5d
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellAttachment.lua,2eda8bbcfc7c1bceee855963602f973d
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,e489864498b4ce7ec4f8ecf392f5c7ae
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,e489864498b4ce7ec4f8ecf392f5c7ae
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderMonth.lua,a0528f4babd35af565034c810be1c101
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderMonth.lua,a0528f4babd35af565034c810be1c101
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/512.unity3d,5eb2ccd0ff5993c567417936bf584055
|
trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/512.unity3d,5eb2ccd0ff5993c567417936bf584055
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBTextures.lua,71acd79671664884eface47928cd8894
|
trCRM/upgradeRes4Publish/priority/lua/db/DBTextures.lua,04bdb80ff340ec3bfef1b1ded0b6f082
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetailSimple.lua,b9363451fb74058d9a2948ae79a9b32f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetailSimple.lua,b9363451fb74058d9a2948ae79a9b32f
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectProduct.unity3d,e17121d8ea3679e9f9df7afff12a7b6a
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectProduct.unity3d,e17121d8ea3679e9f9df7afff12a7b6a
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,5173a3a248c9989a58e6097a409a94e7
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,5173a3a248c9989a58e6097a409a94e7
|
||||||
@@ -116,7 +119,7 @@ trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTasks.unity3d,848c55fad144ff
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,7e17f87c9fb6ee64e2c735452b309fdb
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,7e17f87c9fb6ee64e2c735452b309fdb
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
|
trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOrderDetail.unity3d,e23e912075848862a1ae7155d86831a6
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelOrderDetail.unity3d,543e380849d022963635e62dc562d959
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBCust.lua,273bb2a70bb044a204392904889b074f
|
trCRM/upgradeRes4Publish/priority/lua/db/DBCust.lua,273bb2a70bb044a204392904889b074f
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/close.unity3d,2df0ed16f214398d78b972ee611a22df
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/close.unity3d,2df0ed16f214398d78b972ee611a22df
|
||||||
@@ -125,7 +128,7 @@ trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
|
trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/sms.unity3d,11c2ffdad77b187606435b0b2bc37ffa
|
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/sms.unity3d,11c2ffdad77b187606435b0b2bc37ffa
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,f9191300dcd87528fdd3631b751728e2
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,a0323e9497eca5b1e2ba3ae04ad0bb28
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/shut.unity3d,c0a7889daa173ba7eb4e0608d4147d2f
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/shut.unity3d,c0a7889daa173ba7eb4e0608d4147d2f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilterGroup.lua,8c33f89953c402f43b47022a71064cde
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilterGroup.lua,8c33f89953c402f43b47022a71064cde
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,8f055265d33f40a2278e159a8ebf2b56
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,8f055265d33f40a2278e159a8ebf2b56
|
||||||
@@ -145,7 +148,7 @@ trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPComFilter.lua,522e60b5e11321ef
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMine.lua,0be1d92322048e7747b85f824bda77ec
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMine.lua,0be1d92322048e7747b85f824bda77ec
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/ipt.unity3d,28f98d5b45b9bc1f5b9cfc4f1703ddfe
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/ipt.unity3d,28f98d5b45b9bc1f5b9cfc4f1703ddfe
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellFollowList.lua,0cfc64444ddae6d47e4e07a76a0fcbaf
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellFollowList.lua,e5cc27c8def2b9a255e47f3b707d8426
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,377a830527364388350bf0cb99031caf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,377a830527364388350bf0cb99031caf
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,90d401a06b9b8c1957751551cad64c5e
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,90d401a06b9b8c1957751551cad64c5e
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowSimple.lua,35ac4acdd74e7c09950bbb26fed5d010
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowSimple.lua,35ac4acdd74e7c09950bbb26fed5d010
|
||||||
@@ -158,7 +161,7 @@ trCRM/upgradeRes4Publish/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellOrderList.lua,d4a79966004672384a664700987d2533
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellOrderList.lua,d4a79966004672384a664700987d2533
|
||||||
trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
|
trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustList.unity3d,f245c5f6cbe6e928b73a436a302d65fe
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustList.unity3d,f245c5f6cbe6e928b73a436a302d65fe
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowList.lua,91d8b656329579d0cc43e2170118ba21
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowList.lua,5e57ae6031f9bd40070355f5a203315b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
|
trCRM/upgradeRes4Publish/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
|
||||||
trCRM/upgradeRes4Publish/priority/lua/db/DBOrder.lua,7f2087299796c187eb9866c14f4afcf8
|
trCRM/upgradeRes4Publish/priority/lua/db/DBOrder.lua,7f2087299796c187eb9866c14f4afcf8
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,54cb072f797503f7840dbf735852894f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,54cb072f797503f7840dbf735852894f
|
||||||
@@ -199,7 +202,7 @@ trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputCheckboxs.unity3d,2e6c05b0f3
|
|||||||
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,5896577d1b5f891eb32697f0228568a0
|
trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,5896577d1b5f891eb32697f0228568a0
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTaskList.unity3d,3d02a5feb815953e8381e6ca6eee574e
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTaskList.unity3d,ae74577603f5f00454299a8041cf2ddf
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellOceanList.lua,911d6edb241c34ee721815622ea707c3
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellOceanList.lua,911d6edb241c34ee721815622ea707c3
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
|
trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
|
||||||
@@ -214,16 +217,17 @@ trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,50494f2e0672f8a5232d6fbf6016d12d
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,661bd1ff5cd143da76e37927bddce1dd
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_check.unity3d,f1b1be17d8aa2d7065a0724334dc3893
|
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_check.unity3d,f1b1be17d8aa2d7065a0724334dc3893
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellEmptySpace.lua,a009d0f2c20eb5239f430d2b30ecef40
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellEmptySpace.lua,a009d0f2c20eb5239f430d2b30ecef40
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
|
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
|
trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollow.lua,2962cf4d3dcc8531fe333030f16ffb88
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollow.lua,df42aa80a2f9232603d2a16e5d547574
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
|
trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
|
||||||
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTaskList4Cust.unity3d,55a55d396499d77c93a8c5a06477426c
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellComFilter.lua,2fb22f9248e4af86ab42482151a5b141
|
||||||
@@ -238,22 +242,23 @@ trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep3.lua,0d3be66
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
|
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,a6dc405916d51c97422bf1862f3a8f5b
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,a6dc405916d51c97422bf1862f3a8f5b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,23c1f8a0e9f8df7cc569803f3e553729
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,ab379cdeb2755f13e177fd14fbff3bde
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowTask.lua,591672cab0a1e8e81ed68a1fb20f4d0c
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollowTask.lua,4d6d237f3fc86b4fcf87eece0236c212
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/upload.unity3d,595de11108017f12c98da808c51ce0fe
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/upload.unity3d,595de11108017f12c98da808c51ce0fe
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelProductList.unity3d,9c64e24f2e52edd8c3004f0263a8f651
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelProductList.unity3d,9c64e24f2e52edd8c3004f0263a8f651
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPTaskList.lua,1798231882ed1ffee8ce2fe6492c7b36
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPTaskList.lua,736bec0210a27e91958dedfcbab1a42f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,947abdf2c019f44a26211acf6f31e2dd
|
trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,947abdf2c019f44a26211acf6f31e2dd
|
||||||
trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,03e0034303243936aec483752bdecfc9
|
trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,03e0034303243936aec483752bdecfc9
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,f0cedde396b52618d99ef95760a077e1
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,f0cedde396b52618d99ef95760a077e1
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,450e7e75ebfe83bb65d59beb3ce60782
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,450e7e75ebfe83bb65d59beb3ce60782
|
||||||
trCRM/upgradeRes4Publish/priority/lua/public/CLLInclude.lua,a83b770e54fae3e1a7e682f30b41ecbe
|
trCRM/upgradeRes4Publish/priority/lua/public/CLLInclude.lua,af45b105b52b82742084034a122dbad6
|
||||||
trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,85784ec79aefde29be3ef308e7b5203b
|
trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,85784ec79aefde29be3ef308e7b5203b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
|
||||||
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/wenjian-icon.unity3d,2e900aec0e6716f6d6575ddbb184b8dd
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,28ca57d169af022ec621dece879bdcfc
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,28ca57d169af022ec621dece879bdcfc
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
|
trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
|
||||||
trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
|
trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,27c2b4190bfba1c611ca682605b54d86
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
|
||||||
trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
|
trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
|
||||||
@@ -265,7 +270,7 @@ trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,17086f0c2296f83f5
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform2.lua,e62a82bcc9fb817a4460e82b6351e18f
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform2.lua,e62a82bcc9fb817a4460e82b6351e18f
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
|
||||||
trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,3ce99787132055f59cc97974b5c6c467
|
trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,47e1938ef981f31a389d99cc859b1df1
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/xuanze_bg.unity3d,6cef123588b571983c5169aec50fcd8a
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/xuanze_bg.unity3d,6cef123588b571983c5169aec50fcd8a
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
|
||||||
@@ -277,7 +282,7 @@ trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a
|
|||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,1184f5588d2c8b676323c2eeb70b788d
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,1184f5588d2c8b676323c2eeb70b788d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellProductSelected.lua,e7f4b1e06a54d5fa52cf9a4ed00f5233
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellProductSelected.lua,e7f4b1e06a54d5fa52cf9a4ed00f5233
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,95716c18d9372983e012b76e5445da2e
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,95716c18d9372983e012b76e5445da2e
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,bcebb5a35d387e2bb40771169017f69a
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,4eef1bd538b1da25830187ce5be22300
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
|
trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/ToastRoot.unity3d,f0660c39395e81fccc4c3862779d66aa
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/ToastRoot.unity3d,f0660c39395e81fccc4c3862779d66aa
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
|
||||||
@@ -294,11 +299,10 @@ trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellServer.lua,52979aedf684a79bc667bbe73b508aca
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellServer.lua,52979aedf684a79bc667bbe73b508aca
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
|
trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderDetail.lua,71cf7998ad430b8f944a08578558a076
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderDetail.lua,a6f126d3075af9b1dfa62f31f9833c35
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
|
trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPEditPrice.lua,ceb906ae12222324b9a61f4b83ec7e58
|
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,152602fd1be6119a10e28e488090baa7
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,3787ca23b6d800304dc72ab8921b8428
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/icon_1.unity3d,e0bb2894cfbec37f0512353e65845fa7
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/icon_1.unity3d,e0bb2894cfbec37f0512353e65845fa7
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,687e89480fdd9d074d1ae636b070951d
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,687e89480fdd9d074d1ae636b070951d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,29c95ef46d9adeb7d310ac073ca4ef26
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,29c95ef46d9adeb7d310ac073ca4ef26
|
||||||
@@ -312,7 +316,7 @@ trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_remind.unity3d,28b12417bc8
|
|||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPProductDetail.lua,8b349ca65d41e650ebff14c3358e468d
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPProductDetail.lua,8b349ca65d41e650ebff14c3358e468d
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgList.lua,121d472a9c63850e668a9eebbc6fc413
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgList.lua,121d472a9c63850e668a9eebbc6fc413
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellTaskList.lua,d51c12f9e5de1f5db917d82a63585b85
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellTaskList.lua,55dc0892227d9f6f5092548293cdc9d8
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,d75b0e5651468028373c4f326937d460
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,d75b0e5651468028373c4f326937d460
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopTime.lua,ffdeaf9996a4aa6dda8f025faccbbe1e
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopTime.lua,ffdeaf9996a4aa6dda8f025faccbbe1e
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/icon_5.unity3d,9a7f3f3e1fc304d60b0e0149d7d73ce4
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/icon_5.unity3d,9a7f3f3e1fc304d60b0e0149d7d73ce4
|
||||||
@@ -324,12 +328,13 @@ trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPBatchGetCusts.lua,824f77c2486687108fa391a8fb08a405
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPBatchGetCusts.lua,824f77c2486687108fa391a8fb08a405
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,035626bac75e16f15bc825f6e0ded212
|
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,4621e1261426a172e72820f105c43122
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/sort.unity3d,93ec07e5dd76e80c3b0708d28c4415e0
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/sort.unity3d,93ec07e5dd76e80c3b0708d28c4415e0
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/xuanze.unity3d,dd97c2c26ce6ee06837604e4766645e6
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/xuanze.unity3d,dd97c2c26ce6ee06837604e4766645e6
|
||||||
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowList4Cust.unity3d,77ebadbe205a7ee7647eeed1b90c083a
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
|
||||||
@@ -342,10 +347,10 @@ trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputText.unity3d,bf55f1401bf4847
|
|||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderList.lua,dad09d99c3d896f7c1ce1c1c854073ea
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPOrderList.lua,dad09d99c3d896f7c1ce1c1c854073ea
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
|
trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
|
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPEditPrice.lua,ceb906ae12222324b9a61f4b83ec7e58
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
|
trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
|
trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
|
||||||
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowList.unity3d,b5a54934fe5d7983042225526b56534c
|
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelFollowList.unity3d,be6ed96ba7d2b4aeb775c9f9a312817e
|
||||||
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/icon_3.unity3d,4ba8140bcf5996c22461673f7bb40b8b
|
trCRM/upgradeRes4Publish/other/uiAtlas/order/IOS/icon_3.unity3d,4ba8140bcf5996c22461673f7bb40b8b
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowFilter.lua,f436c880f71e048db7b82de41e881b8f
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPFollowFilter.lua,f436c880f71e048db7b82de41e881b8f
|
||||||
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPAbout.lua,dae2d1afc8a5e2d7c996c6056aa42dc4
|
trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPAbout.lua,dae2d1afc8a5e2d7c996c6056aa42dc4
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{"2020158":{"2":{"id":"2", "host":"app.ttf-cti.com", "name":"\u6d4b\u8bd5\u670d\u52a1\u5668", "iosVer":"548ff6dfae5542ce8141633822af86f3", "port":29006, "androidVer":"b1dd5a258abaa65e62c6e70070379eca", "isDev":1}, "3":{"id":"3", "host":"192.168.1.11", "name":"\u672c\u5730\u6d4b\u8bd5", "iosVer":"548ff6dfae5542ce8141633822af86f3", "port":29000, "androidVer":"b1dd5a258abaa65e62c6e70070379eca", "isDev":1}, "1":{"id":"1", "host":"app.ttf-cti.com", "name":"\u6b63\u5f0f\u670d\u52a1\u5668", "iosVer":"548ff6dfae5542ce8141633822af86f3", "port":29004, "androidVer":"b1dd5a258abaa65e62c6e70070379eca", "isDev":0}}}
|
{"2020158":{"2":{"id":"2", "host":"app.ttf-cti.com", "name":"\u6d4b\u8bd5\u670d\u52a1\u5668", "iosVer":"b0fe536cc62b96acaca5e7dfc643fc79", "port":29006, "androidVer":"b1dd5a258abaa65e62c6e70070379eca", "isDev":1}, "3":{"id":"3", "host":"192.168.1.11", "name":"\u672c\u5730\u6d4b\u8bd5", "iosVer":"b0fe536cc62b96acaca5e7dfc643fc79", "port":29000, "androidVer":"b1dd5a258abaa65e62c6e70070379eca", "isDev":1}, "1":{"id":"1", "host":"app.ttf-cti.com", "name":"\u6b63\u5f0f\u670d\u52a1\u5668", "iosVer":"b0fe536cc62b96acaca5e7dfc643fc79", "port":29004, "androidVer":"b1dd5a258abaa65e62c6e70070379eca", "isDev":0}}}
|
||||||
@@ -114,7 +114,9 @@ end
|
|||||||
|
|
||||||
-- 上传头像
|
-- 上传头像
|
||||||
NetProto.uploadUserHeadIcon = function(path, finishCallback)
|
NetProto.uploadUserHeadIcon = function(path, finishCallback)
|
||||||
NetProto._uploadFile("updateUserImg", path, "", MyUtl.CompressImage(path, 512), finishCallback)
|
-- 把文件名转成jpg
|
||||||
|
local _path = joinStr( Path.GetPathRoot(path), Path.GetFileNameWithoutExtension(path), ".jpg")
|
||||||
|
NetProto._uploadFile("updateUserImg", _path, "", MyUtl.CompressImage(path, 512), finishCallback)
|
||||||
end
|
end
|
||||||
|
|
||||||
NetProto.uploadFile = function(path, uploadPath, finishCallback)
|
NetProto.uploadFile = function(path, uploadPath, finishCallback)
|
||||||
|
|||||||
Binary file not shown.
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ab18867489b07411cb1a18bf4eef8ce8
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6c198727306ed4c4790a549f8f9b3be8
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: adb7e7a582e114e6389379300d263ae8
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 837df485e3f3541ef83aaf05a20c3e87
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 78bf8a08cfc194b93b571b02210d829e
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -1 +1 @@
|
|||||||
r8 $trCRM/resVer/IOS/VerCtl/priority.ver8,b31a730784bbbfa610688be4a5098d028 !trCRM/resVer/IOS/VerCtl/other.ver8,2efa8efe3ddf6e5b86622aa228dcbbbc
|
r8 $trCRM/resVer/IOS/VerCtl/priority.ver8,09df1180d27a5f77bfd97db244b61fda8 !trCRM/resVer/IOS/VerCtl/other.ver8,62728fec0546980ac4d5f4ec9806a711
|
||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user