diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
index b2d21944..b3dc7c79 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
@@ -2133,12 +2133,12 @@ function M:__refreshManager()
btn_partner.onClick:Set(
function()
--print("成员..........................................")
- if not self.mng_view3 then
- self.mng_view3 = GroupManagerView.new(self._root_view, self.curGroup.id, 5)
- self.mng_view3:SetCurrentGroupInfoViewIns(function()
- self:OnclickMember()
- end)
- end
+ -- if not self.mng_view3 then
+ self.mng_view3 = GroupManagerView.new(self._root_view, self.curGroup.id, 5)
+ self.mng_view3:SetCurrentGroupInfoViewIns(function()
+ self:OnclickMember()
+ end)
+ -- end
self.mng_view3:Show()
-- self:SetRoomListVisible(false)
end
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRoomStatView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRoomStatView.lua
index 6437144c..081a5dd1 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRoomStatView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngRoomStatView.lua
@@ -1,3 +1,5 @@
+local TimeSettingPanel = import(".TimeSettingPanelTog")
+
-- 开桌统计
local GroupMngRoomStatView = {}
@@ -26,10 +28,41 @@ end
function M:InitView()
self._view = UIPackage.CreateObjectFromURL("ui://NewGroup/View_GroupStat")
+ local group = DataManager.groups:get(self.group_id)
self.record_data = {} --回放数据
self.player_record_data = {} --指定玩家的回放数据
self.qid = 0 --查询玩家id
+ self.time_panel = TimeSettingPanel.new(self._view, self._view:GetChild("btn_date1"), self._view:GetChild("btn_date2"),
+ -308, 0, function()
+ self.record_data = {}
+ self.lst_record.numItems = 0
+
+ self.begin_time, self.end_time = self.time_panel:GetDate()
+ if self._view:GetController("search").selectedIndex == 0 then
+ self:GetRecordData(0)
+ else
+ local qid = self._view:GetChild("tex_id").text
+ local rtype = self._view:GetChild("cb_type").value
+ if (qid == "" and rtype == "1") or (string.len(qid) < 6 and rtype == "2") then
+ self._view:GetController("search").selectedIndex = 0
+ self:GetRecordData(0)
+ ViewUtil.ErrorTip(nil, "请输入正确的ID")
+ return
+ end
+ self.begin_time, self.end_time = self.time_panel:GetDate()
+ if rtype == "1" then
+ self.lst_player_record.numItems = 0
+ self.player_record_data = {}
+ self.qid = tonumber(qid)
+ self:GetRecordData(0, self.qid)
+ else
+ self:GetRecordByRoomid()
+ end
+ end
+ end, { showDay = group.lev < 3 and 30 or 7 })
+ self.begin_time, self.end_time = self.time_panel:GetDate()
+
self.lst_record_find = self._view:GetChild("lst_record_find")
self.lst_record_find:SetVirtual()
self.lst_record_find.itemRenderer = function(index, obj)
@@ -61,6 +94,7 @@ function M:InitView()
ViewUtil.ErrorTip(nil, "请输入正确的ID")
return
end
+ self.begin_time, self.end_time = self.time_panel:GetDate()
if rtype == "1" then
self.lst_player_record.numItems = 0
self.player_record_data = {}
@@ -83,42 +117,43 @@ function M:GetRecordData(index, qid)
ViewUtil.ShowModalWait()
local group = DataManager.groups:get(self.group_id)
local fgCtr = ControllerManager.GetController(NewGroupController)
- fgCtr:FG_GetGroupRecord(self.group_id, GetPlatform(), qid, index, 6, function(res)
- printlog("ccccccccccccccccccccccccccccccccccccc")
- pt(res)
- if self._is_destroy then
- return
- end
- ViewUtil.CloseModalWait()
- if res.ReturnCode ~= 0 then
- ViewUtil.ErrorTip(res.ReturnCode, "获取回放数据失败")
- else
- local ctr_search = self._view:GetController("search")
- local records = res.Data.records
- if qid == 0 then
- for i = 1, #records do
- self.record_data[#self.record_data + 1] = records[i]
- end
- self.lst_record.numItems = #self.record_data
- if ctr_search.selectedIndex ~= 0 then
- ctr_search.selectedIndex = 0
- end
+ fgCtr:FG_GetGroupRecordSpe(self.group_id, GetPlatform(), 0, qid, index, 6, self.begin_time, self.end_time, 0,
+ function(res)
+ printlog("ccccccccccccccccccccccccccccccccccccc")
+ pt(res)
+ if self._is_destroy then
+ return
+ end
+ ViewUtil.CloseModalWait()
+ if res.ReturnCode ~= 0 then
+ ViewUtil.ErrorTip(res.ReturnCode, "获取回放数据失败")
else
- if group.lev == 1 then
+ local ctr_search = self._view:GetController("search")
+ local records = res.Data.records
+ if qid == 0 then
for i = 1, #records do
- self.player_record_data[#self.player_record_data + 1] = self:deepcopy(records[i])
- self.player_record_data[#self.player_record_data + 1] = self:deepcopy(records[i])
+ self.record_data[#self.record_data + 1] = records[i]
+ end
+ self.lst_record.numItems = #self.record_data
+ if ctr_search.selectedIndex ~= 0 then
+ ctr_search.selectedIndex = 0
end
else
- for i = 1, #records do
- self.player_record_data[#self.player_record_data + 1] = records[i]
+ if group.lev == 1 then
+ for i = 1, #records do
+ self.player_record_data[#self.player_record_data + 1] = self:deepcopy(records[i])
+ self.player_record_data[#self.player_record_data + 1] = self:deepcopy(records[i])
+ end
+ else
+ for i = 1, #records do
+ self.player_record_data[#self.player_record_data + 1] = records[i]
+ end
end
+ self.lst_player_record.numItems = #self.player_record_data
+ ctr_search.selectedIndex = 2
end
- self.lst_player_record.numItems = #self.player_record_data
- ctr_search.selectedIndex = 2
end
- end
- end)
+ end)
end
function M:FillRecordItem(data, obj)
diff --git a/wb_new_ui/.objs/metas/1utjt0r2/ufu92i.info b/wb_new_ui/.objs/metas/1utjt0r2/ufu92i.info
index 0acf86ba..d04551a1 100644
--- a/wb_new_ui/.objs/metas/1utjt0r2/ufu92i.info
+++ b/wb_new_ui/.objs/metas/1utjt0r2/ufu92i.info
@@ -5,6 +5,9 @@
},
"n84_rbpg": {
"hidden": true
+ },
+ "n4_fux2": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/assets/Common/component/game/platform_btn_ready_1.png b/wb_new_ui/assets/Common/component/game/platform_btn_ready_1.png
index e74b5a6b..238f1a56 100644
Binary files a/wb_new_ui/assets/Common/component/game/platform_btn_ready_1.png and b/wb_new_ui/assets/Common/component/game/platform_btn_ready_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml
index a74921a0..da972ea0 100644
--- a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml
+++ b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml
@@ -6,8 +6,8 @@
-
-
+
+
@@ -24,10 +24,10 @@
-
+
-
-
+
+
@@ -103,7 +103,7 @@
-
+
@@ -124,13 +124,13 @@
-
-
+
+
-
-
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/result_zipai_main.xml b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/result_zipai_main.xml
index e3b7dfc4..d58368c0 100644
--- a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/result_zipai_main.xml
+++ b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/result_zipai_main.xml
@@ -23,22 +23,22 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -51,9 +51,9 @@
-
-
-
+
+
+
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/洗牌.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/洗牌.png
index 60743774..5ae7a785 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/洗牌.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/洗牌.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 643.png b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 643.png
index ea7d29de..238f1a56 100644
Binary files a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 643.png and b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 643.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 646.png b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 646.png
index 431ea053..5ae7a785 100644
Binary files a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 646.png and b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/Group 646.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/clearing.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/clearing.xml
index cbfdd5c1..f2dce769 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/clearing.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/clearing.xml
@@ -1,8 +1,8 @@
-
-
+
+
@@ -26,11 +26,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -76,15 +76,15 @@
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/result_main.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/result_main.xml
index beb2e5f7..1ada7b6c 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/result_main.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Result/result_main.xml
@@ -5,28 +5,28 @@
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
@@ -70,7 +70,7 @@
-
+
diff --git a/wb_new_ui/assets/Lobby/images/image 91.png b/wb_new_ui/assets/Lobby/images/image 91.png
index 00b896bc..f44401db 100644
Binary files a/wb_new_ui/assets/Lobby/images/image 91.png and b/wb_new_ui/assets/Lobby/images/image 91.png differ
diff --git a/wb_new_ui/assets/Main_Majiang/buttons/Group 646.png b/wb_new_ui/assets/Main_Majiang/buttons/Group 646.png
index 431ea053..5ae7a785 100644
Binary files a/wb_new_ui/assets/Main_Majiang/buttons/Group 646.png and b/wb_new_ui/assets/Main_Majiang/buttons/Group 646.png differ
diff --git a/wb_new_ui/assets/Main_Majiang/component/clearing/clearing2/result_main.xml b/wb_new_ui/assets/Main_Majiang/component/clearing/clearing2/result_main.xml
index f0f8f464..edf2b770 100644
--- a/wb_new_ui/assets/Main_Majiang/component/clearing/clearing2/result_main.xml
+++ b/wb_new_ui/assets/Main_Majiang/component/clearing/clearing2/result_main.xml
@@ -38,7 +38,7 @@
-
+
diff --git a/wb_new_ui/assets/Main_RunBeard/component/Main/images/xipai.png b/wb_new_ui/assets/Main_RunBeard/component/Main/images/xipai.png
index 431ea053..5ae7a785 100644
Binary files a/wb_new_ui/assets/Main_RunBeard/component/Main/images/xipai.png and b/wb_new_ui/assets/Main_RunBeard/component/Main/images/xipai.png differ
diff --git a/wb_new_ui/assets/Main_RunBeard/component/game/platform_btn_ready_1.png b/wb_new_ui/assets/Main_RunBeard/component/game/platform_btn_ready_1.png
index e74b5a6b..238f1a56 100644
Binary files a/wb_new_ui/assets/Main_RunBeard/component/game/platform_btn_ready_1.png and b/wb_new_ui/assets/Main_RunBeard/component/game/platform_btn_ready_1.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml
index ed437827..eaf607c8 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml
@@ -1,11 +1,15 @@
-
+
+
+
+
+
@@ -23,7 +27,7 @@
-
+
@@ -42,7 +46,7 @@
-
+
@@ -52,7 +56,7 @@
-
+
@@ -62,14 +66,14 @@
-
+
-
+
-
+
@@ -78,10 +82,17 @@
-
+
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png
index 0b08fb83..fe308ae8 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png
index 5892c3be..f2c33a15 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png
index ba0730ce..c6cfb660 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png
index 7c662dbf..a8ae2338 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_3.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png
index a8ae2338..a914962b 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_4.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png
index b1ce0211..d97c463e 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_5.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png
index 8ede012f..9079bf83 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_6.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png
index f7063a7a..09f0b3ad 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png and b/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_7.png differ
diff --git a/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes b/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes
index eb11fdf0..6de5ae5e 100644
Binary files a/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes and b/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_33.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_33.png
index a60c7529..ea7b2c48 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_33.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_33.png differ
diff --git a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png
index 1bb234ed..bcce46a0 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes
index afe01c3b..a203e2af 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes and b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png
index 91c025e4..01498ba9 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png and b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png
index c162b3e0..b17eab21 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png and b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png
index 5ee580ed..7c7e6071 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_4.png b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_4.png
index 05596b85..3dfaff96 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_4.png and b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_4.png differ
diff --git a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes
index 0b9a4ba0..506603b9 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes and b/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes
index fa780996..175451b5 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes and b/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png
index 6d310187..03fb3387 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes
index 0a0a79d6..b09406d6 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_atlas0_1.png b/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_atlas0_1.png
index 2b58620a..3a57bdca 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_atlas0_1.png and b/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_fui.bytes b/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_fui.bytes
index 5284a434..636a54b5 100644
Binary files a/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_fui.bytes and b/wb_unity_pro/Assets/ART/extend/zipai/fanpaofa/ui/Extend_Poker_FanPaoFa_fui.bytes differ