diff --git a/fk101/lua_probject/base_project/Game/View/Common/BaseWindow.lua b/fk101/lua_probject/base_project/Game/View/Common/BaseWindow.lua
index 611e2468..3d7fc801 100644
--- a/fk101/lua_probject/base_project/Game/View/Common/BaseWindow.lua
+++ b/fk101/lua_probject/base_project/Game/View/Common/BaseWindow.lua
@@ -151,7 +151,7 @@ function M:Show()
if self._queue and not _inQueue then
WindowQueue[#WindowQueue + 1] = self
end
- AddPanel(self._root_view)
+ AddPanelCenter(self._root_view)
if self._full then
local offset = get_offset(self._full_offset)
self._contentPane:MakeFullScreen()
diff --git a/fk101/lua_probject/base_project/Game/View/NewGroup/MngView/GroupPartnerStatMember.lua b/fk101/lua_probject/base_project/Game/View/NewGroup/MngView/GroupPartnerStatMember.lua
index 5020d606..c9ddc1b1 100644
--- a/fk101/lua_probject/base_project/Game/View/NewGroup/MngView/GroupPartnerStatMember.lua
+++ b/fk101/lua_probject/base_project/Game/View/NewGroup/MngView/GroupPartnerStatMember.lua
@@ -1,7 +1,7 @@
local GroupPartnerStatPlay = import(".GroupPartnerStatPlay")
local GroupRecordView = require "Game/View/NewGroup/GroupRecordView"
local GroupPartnerStatMember = {}
-
+local GroupSetMemberInfoDiaoduView=import('.GroupSetMemberInfoDiaoduView')
local M = GroupPartnerStatMember
function GroupPartnerStatMember.new(group_id, uid, time_type, begin_time, end_time)
@@ -177,6 +177,23 @@ function M:OnRenderItem(index, obj)
self:getRewardsLog(0)
end)
+
+ local btn_detail_tiaoduzjM = obj:GetChild("btn_detail_tiaoduzjM")
+ btn_detail_tiaoduzjM.onClick:Set(function()
+ ViewUtil.ShowModalWait()
+ ControllerManager.GetController(NewGroupController):FG_GetBanMemberHB(self.group_id, data.uid, function(res)
+ ViewUtil.CloseModalWait()
+ --pt(res)
+ if res.ReturnCode == 0 then
+ local diaoduView=GroupSetMemberInfoDiaoduView.new(self.group_id, data.uid)
+ diaoduView:SetCurrentState(res.Data.group_black+1,res.Data)
+ else
+ ViewUtil.ErrorTip(res.ReturnCode,"获取整组调度失败!")
+ end
+
+ end)
+ end)
+
local btn_member_detail = obj:GetChild("btn_member_detail")
btn_member_detail.onClick:Set(function()
self.uids[#self.uids + 1] = data.uid
diff --git a/fk101/lua_probject/base_project/Game/View/ResultView.lua b/fk101/lua_probject/base_project/Game/View/ResultView.lua
index 9a81c37f..a2b4f92c 100644
--- a/fk101/lua_probject/base_project/Game/View/ResultView.lua
+++ b/fk101/lua_probject/base_project/Game/View/ResultView.lua
@@ -403,8 +403,8 @@ function M:InitBigResult(room, fontsize)
item:GetController('self').selectedIndex = 0
end
- if item:GetChild('head') and item:GetChild('head')._iconObject then
- ImageLoad.Load(player_info.head_url, item:GetChild('head')._iconObject)
+ if item:GetChild('btn_head') and item:GetChild('btn_head')._iconObject then
+ ImageLoad.Load(player_info.head_url, item:GetChild('btn_head')._iconObject)
end
end
diff --git a/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXGameController.lua b/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXGameController.lua
index a2de4c84..39460c30 100644
--- a/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXGameController.lua
+++ b/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXGameController.lua
@@ -69,12 +69,12 @@ function M:OnEventXiPaiAnim(evt_data)
local p = self._room:GetPlayerById(playeridList[i])
if p== self._room.self_player then
my_isXiPai=true
+
else
other_isXiPai=true
end
end
end
-
self._cacheEvent:Enqueue(function()
DispatchEvent(self._dispatcher,TX_GameEvent.EventXiPai,my_isXiPai,other_isXiPai)
end)
diff --git a/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXMainView.lua b/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXMainView.lua
index 013d7d11..1873bcbd 100644
--- a/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXMainView.lua
+++ b/fk101/lua_probject/extend_project/extend/majiang/zhuanzhuan/EXMainView.lua
@@ -80,7 +80,7 @@ function M:EventInit()
_gamectr:AddEventListener(TX_GameEvent.EventXiPai,function( ... )
local arg = {...}
- local currentPlayer=arg[1]
+ local currentPlayer1=arg[1]
local currentPlayer2=arg[2]
self._popEvent = false
if ( currentPlayer1 ) then
diff --git a/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/RunBeard_ResultView.lua b/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/RunBeard_ResultView.lua
index c709555b..e07482a3 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/RunBeard_ResultView.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/RunBeard_ResultView.lua
@@ -7,6 +7,7 @@ local M = RunBeard_ResultView
function RunBeard_ResultView.new(blur_view, index)
setmetatable(M, {__index = ResultView})
local self = setmetatable({}, {__index = M})
+ self._full=true
self.class = 'RunBeard_ResultView'
self._currenIndex = 0
if index ~= 1 then
@@ -21,6 +22,7 @@ end
function M:init(url)
ResultView.init(self, url)
+
local btn_share = self._view:GetChild('btn_share')
btn_share.onClick:Set(
function()
diff --git a/fk101/lua_probject/extend_project/extend/zipai/fulushou/RunBeard_ResultView.lua b/fk101/lua_probject/extend_project/extend/zipai/fulushou/RunBeard_ResultView.lua
index d5b16fa4..1759a8ad 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/fulushou/RunBeard_ResultView.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/fulushou/RunBeard_ResultView.lua
@@ -7,6 +7,7 @@ local M = RunBeard_ResultView
function RunBeard_ResultView.new(blur_view, index)
setmetatable(M, {__index = ResultView})
local self = setmetatable({}, {__index = M})
+ self._full=true
self.class = 'RunBeard_ResultView'
self._currenIndex = 0
if index ~= 1 then
diff --git a/fk101/lua_probject/extend_project/extend/zipai/hsrunbeard/RunBeard_ResultView.lua b/fk101/lua_probject/extend_project/extend/zipai/hsrunbeard/RunBeard_ResultView.lua
index bd11f47e..ba258bce 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/hsrunbeard/RunBeard_ResultView.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/hsrunbeard/RunBeard_ResultView.lua
@@ -7,6 +7,7 @@ local M = RunBeard_ResultView
function RunBeard_ResultView.new(blur_view, index)
setmetatable(M, {__index = ResultView})
local self = setmetatable({}, {__index = M})
+ self._full=true
self.class = 'RunBeard_ResultView'
self._currenIndex = 0
if index ~= 1 then
diff --git a/fk101/lua_probject/extend_project/extend/zipai/runbeard/RunBeard_ResultView.lua b/fk101/lua_probject/extend_project/extend/zipai/runbeard/RunBeard_ResultView.lua
index 9cfd5a91..e7c8a659 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/runbeard/RunBeard_ResultView.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/runbeard/RunBeard_ResultView.lua
@@ -7,6 +7,7 @@ local M = RunBeard_ResultView
function RunBeard_ResultView.new(blur_view, index)
setmetatable(M, {__index = ResultView})
local self = setmetatable({}, {__index = M})
+ self._full=true
self.class = 'RunBeard_ResultView'
self._currenIndex = 0
if index ~= 1 then
diff --git a/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/RunBeard_ResultView.lua b/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/RunBeard_ResultView.lua
index 9f58e592..7f2f66bc 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/RunBeard_ResultView.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/RunBeard_ResultView.lua
@@ -7,6 +7,7 @@ local M = RunBeard_ResultView
function RunBeard_ResultView.new(blur_view, index)
setmetatable(M, {__index = ResultView})
local self = setmetatable({}, {__index = M})
+ self._full=true
self.class = 'RunBeard_ResultView'
self._currenIndex = 0
if index ~= 1 then
diff --git a/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi_bak/RunBeard_ResultView.lua b/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi_bak/RunBeard_ResultView.lua
index 5312e8e3..9ff97556 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi_bak/RunBeard_ResultView.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi_bak/RunBeard_ResultView.lua
@@ -7,6 +7,7 @@ local M = RunBeard_ResultView
function RunBeard_ResultView.new(blur_view, index)
setmetatable(M, {__index = ResultView})
local self = setmetatable({}, {__index = M})
+ self._full=true
self.class = 'RunBeard_ResultView'
self._currenIndex = 0
if index ~= 1 then
diff --git a/fk101/wb_new_ui/.objs/metas/egnzysm7/ffp36a.info b/fk101/wb_new_ui/.objs/metas/egnzysm7/ffp36a.info
index fd649129..56d2e4c5 100644
--- a/fk101/wb_new_ui/.objs/metas/egnzysm7/ffp36a.info
+++ b/fk101/wb_new_ui/.objs/metas/egnzysm7/ffp36a.info
@@ -39,9 +39,6 @@
"n17_pt1r": {
"hidden": true
},
- "n70_dunj": {
- "collapsed": true
- },
"n51_fmkv": {
"collapsed": true
},
diff --git a/fk101/wb_new_ui/.objs/metas/ypulwxjh/l9mn14.info b/fk101/wb_new_ui/.objs/metas/ypulwxjh/l9mn14.info
index 25d67bb8..69ee2b10 100644
--- a/fk101/wb_new_ui/.objs/metas/ypulwxjh/l9mn14.info
+++ b/fk101/wb_new_ui/.objs/metas/ypulwxjh/l9mn14.info
@@ -1,13 +1,99 @@
{
"objectStatus": {
- "n4_fux2": {
+ "n84_loe7": {
+ "locked": true
+ },
+ "n49_g8y2": {
+ "locked": true,
+ "hidden": true
+ },
+ "n19_pt1r": {
+ "locked": true,
+ "hidden": true
+ },
+ "n46_n1ry": {
+ "locked": true,
"hidden": true
},
"n73_p9qe": {
"hidden": true
},
+ "n58_fnpw": {
+ "locked": true,
+ "hidden": true
+ },
+ "n12_nrno": {
+ "locked": true,
+ "hidden": true
+ },
+ "n77_p9qe": {
+ "locked": true,
+ "hidden": true
+ },
+ "n15_pt1r": {
+ "hidden": true
+ },
+ "n17_pt1r": {
+ "hidden": true
+ },
+ "n33_n1ry": {
+ "locked": true,
+ "hidden": true
+ },
+ "n4_fux2": {
+ "hidden": true
+ },
+ "n37_n1ry": {
+ "locked": true,
+ "hidden": true
+ },
+ "n52_rx2e": {
+ "hidden": true
+ },
+ "n68_w06x": {
+ "hidden": true
+ },
+ "n85_loe7": {
+ "locked": true
+ },
+ "n43_n1ry": {
+ "locked": true,
+ "hidden": true
+ },
+ "n62_fnpw": {
+ "locked": true,
+ "hidden": true
+ },
"n39_n1ry": {
"hidden": true
+ },
+ "n31_n1ry": {
+ "locked": true,
+ "hidden": true
+ },
+ "n14_pt1r": {
+ "hidden": true
+ },
+ "n32_n1ry": {
+ "locked": true,
+ "hidden": true
+ },
+ "n16_pt1r": {
+ "hidden": true
+ },
+ "n56_fnpw": {
+ "locked": true,
+ "hidden": true
+ },
+ "n54_rx2e": {
+ "hidden": true
+ },
+ "n67_w06x": {
+ "hidden": true
+ },
+ "n35_n1ry": {
+ "locked": true,
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/fk101/wb_new_ui/.objs/metas/yzaioi79/aen81b0.info b/fk101/wb_new_ui/.objs/metas/yzaioi79/aen81b0.info
index ec2d85bf..45089b2f 100644
--- a/fk101/wb_new_ui/.objs/metas/yzaioi79/aen81b0.info
+++ b/fk101/wb_new_ui/.objs/metas/yzaioi79/aen81b0.info
@@ -1,13 +1,48 @@
{
"objectStatus": {
- "n4_tjnv": {
- "collapsed": true
- },
"n11_tjnv": {
- "collapsed": true
+ "hidden": true
},
- "n7_tjnv": {
- "collapsed": true
+ "n34_aen8": {
+ "hidden": true
+ },
+ "n15_tjnv": {
+ "hidden": true
+ },
+ "n29_tjnv": {
+ "hidden": true
+ },
+ "n6_tjnv": {
+ "locked": true,
+ "hidden": true
+ },
+ "n3_tjnv": {
+ "locked": true,
+ "hidden": true
+ },
+ "n10_tjnv": {
+ "hidden": true
+ },
+ "n36_aen8": {
+ "hidden": true
+ },
+ "n5_tjnv": {
+ "locked": true,
+ "hidden": true
+ },
+ "n28_tjnv": {
+ "locked": true,
+ "hidden": true
+ },
+ "n2_tjnv": {
+ "locked": true,
+ "hidden": true
+ },
+ "n27_tjnv": {
+ "hidden": true
+ },
+ "n9_tjnv": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/fk101/wb_new_ui/.objs/workspace.json b/fk101/wb_new_ui/.objs/workspace.json
index 2df9670b..c12563bd 100644
--- a/fk101/wb_new_ui/.objs/workspace.json
+++ b/fk101/wb_new_ui/.objs/workspace.json
@@ -2,26 +2,79 @@
"libview.firstColumnWidth": 356,
"libview.iconScale": 0,
"doc.openedDocs": [
- "ui://27vd145bhxjc7i4q",
- "ui://kplym8mus9wxa",
- "ui://fnuxqeflnrnod",
- "ui://c7j2rnvqtpf02f",
- "ui://y8prev1ms9wx7",
+ "ui://m7iejg46jgh8hwv",
+ "ui://m7iejg46f6brhww",
+ "ui://m7iejg46nwgkhx0",
+ "ui://m7iejg46nwgkhx1",
+ "ui://m7iejg46jr1l7i3c",
+ "ui://27vd145bhei77i2g",
"ui://3z9lj55vjokmft",
- "ui://4skil1l6piv91ny",
- "ui://niy3ldiwl9mny",
- "ui://niy3ldiwl9mn19",
- "ui://9n9stu2eprgzei",
- "ui://9n9stu2eprgzef"
+ "ui://3z9lj55vjokmet",
+ "ui://3z9lj55vjokm7l",
+ "ui://27vd145bg8mhce4",
+ "ui://27vd145bloe77il6",
+ "ui://27vd145bloe77il5",
+ "ui://27vd145bvg2c4",
+ "ui://c7j2rnvqtpf02f",
+ "ui://egnzysm7ffp36a",
+ "ui://ypulwxjhl9mn14",
+ "ui://ypulwxjhl9mny",
+ "ui://ypulwxjhl9mn19",
+ "ui://ypulwxjhl9mn10",
+ "ui://k15boclkl9mn14",
+ "ui://m7iejg46csp47i42",
+ "ui://m7iejg46hsbhhjn",
+ "ui://27vd145beeqmcgp",
+ "ui://m7iejg46wbjh7ica"
],
"auxline1": true,
"canvasColor": 10066329,
"auxline2": true,
- "doc.activeDoc": "ui://9n9stu2eprgzef",
+ "doc.activeDoc": "ui://27vd145bhei77i2g",
"libview.twoColumn": false,
"libview.expandedNodes": [
"27vd145b",
- "/"
+ "/",
+ "27vd145b",
+ "/buttons/",
+ "27vd145b",
+ "/component/",
+ "27vd145b",
+ "/component/hand/",
+ "27vd145b",
+ "/component/hand/majiangHand/",
+ "27vd145b",
+ "/conMui/",
+ "27vd145b",
+ "/font/",
+ "27vd145b",
+ "/font/images/",
+ "27vd145b",
+ "/images/",
+ "egnzysm7",
+ "/",
+ "egnzysm7",
+ "/component/",
+ "egnzysm7",
+ "/component/clearing/",
+ "ypulwxjh",
+ "/",
+ "ypulwxjh",
+ "/component/",
+ "ypulwxjh",
+ "/component/EPFLSMui/",
+ "m7iejg46",
+ "/",
+ "m7iejg46",
+ "/mgr/",
+ "m7iejg46",
+ "/mgr/Mui/",
+ "m7iejg46",
+ "/mgr/component/",
+ "m7iejg46",
+ "/mgr/component/member/",
+ "m7iejg46",
+ "/mgr/component/member/partner/"
],
"snapToGrid": true,
"backgroundColor": 6710886,
diff --git a/fk101/wb_new_ui/assets/Common/buttons/Btn_Yellow.xml b/fk101/wb_new_ui/assets/Common/buttons/Btn_Yellow.xml
index 80e8b90e..593b4478 100644
--- a/fk101/wb_new_ui/assets/Common/buttons/Btn_Yellow.xml
+++ b/fk101/wb_new_ui/assets/Common/buttons/Btn_Yellow.xml
@@ -5,5 +5,5 @@
-
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Common/buttons/Btn_close.xml b/fk101/wb_new_ui/assets/Common/buttons/Btn_close.xml
index 5eaf8bfe..65b104dc 100644
--- a/fk101/wb_new_ui/assets/Common/buttons/Btn_close.xml
+++ b/fk101/wb_new_ui/assets/Common/buttons/Btn_close.xml
@@ -1,9 +1,9 @@
-
+
-
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Common/buttons/Btn_closeMm.xml b/fk101/wb_new_ui/assets/Common/buttons/Btn_closeMm.xml
new file mode 100644
index 00000000..0821d649
--- /dev/null
+++ b/fk101/wb_new_ui/assets/Common/buttons/Btn_closeMm.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Common/buttons/Btn_closeMm1.xml b/fk101/wb_new_ui/assets/Common/buttons/Btn_closeMm1.xml
new file mode 100644
index 00000000..d013d3e7
--- /dev/null
+++ b/fk101/wb_new_ui/assets/Common/buttons/Btn_closeMm1.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Common/component/tuoguan/com_tuoguan_self.xml b/fk101/wb_new_ui/assets/Common/component/tuoguan/com_tuoguan_self.xml
index 439aa7f3..0158a84f 100644
--- a/fk101/wb_new_ui/assets/Common/component/tuoguan/com_tuoguan_self.xml
+++ b/fk101/wb_new_ui/assets/Common/component/tuoguan/com_tuoguan_self.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/fk101/wb_new_ui/assets/Common/conMui/Group 518.png b/fk101/wb_new_ui/assets/Common/conMui/Group 518.png
new file mode 100644
index 00000000..3119a173
Binary files /dev/null and b/fk101/wb_new_ui/assets/Common/conMui/Group 518.png differ
diff --git a/fk101/wb_new_ui/assets/Common/package.xml b/fk101/wb_new_ui/assets/Common/package.xml
index d052d3f7..57e9d691 100644
--- a/fk101/wb_new_ui/assets/Common/package.xml
+++ b/fk101/wb_new_ui/assets/Common/package.xml
@@ -1141,6 +1141,9 @@
+
+
+
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1240.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1240.png
new file mode 100644
index 00000000..7e012faf
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1240.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1241.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1241.png
new file mode 100644
index 00000000..32bf17b2
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1241.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1243.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1243.png
new file mode 100644
index 00000000..d8ea07cb
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1243.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 12431.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 12431.png
new file mode 100644
index 00000000..80ed2603
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 12431.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1248.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1248.png
new file mode 100644
index 00000000..3ba83430
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 1248.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 787.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 787.png
new file mode 100644
index 00000000..6077b3ee
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 787.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 958.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 958.png
new file mode 100644
index 00000000..225cc12e
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Frame 958.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 518.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 518.png
new file mode 100644
index 00000000..3119a173
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 518.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 5201.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 5201.png
new file mode 100644
index 00000000..5df9b025
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 5201.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 52011.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 52011.png
new file mode 100644
index 00000000..8923473e
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 52011.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 521.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 521.png
new file mode 100644
index 00000000..9bd9df76
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Group 521.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 303.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 303.png
new file mode 100644
index 00000000..3f3f9fb8
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 303.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 306.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 306.png
new file mode 100644
index 00000000..288bf609
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 306.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 333.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 333.png
new file mode 100644
index 00000000..3f35983e
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/Rectangle 333.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/btn_close.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/btn_close.png
new file mode 100644
index 00000000..363779c7
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/btn_close.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/总成绩.png b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/总成绩.png
new file mode 100644
index 00000000..2e6678af
Binary files /dev/null and b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/EPFLSMui/总成绩.png differ
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing.xml b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing.xml
index f8f1da19..8933fa13 100644
--- a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing.xml
+++ b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing.xml
@@ -1,53 +1,55 @@
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
+
+
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
-
+
+
+
-
-
-
+
+
+
@@ -55,15 +57,15 @@
-
+
-
-
-
+
+
+
@@ -72,37 +74,37 @@
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -111,7 +113,7 @@
-
+
@@ -120,7 +122,7 @@
-
+
@@ -129,8 +131,8 @@
-
-
+
+
@@ -139,47 +141,47 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing_1_item.xml b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing_1_item.xml
index e61e9d07..8d316cb9 100644
--- a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing_1_item.xml
+++ b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/component/clearing/clearing_1_item.xml
@@ -1,24 +1,24 @@
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/package.xml b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/package.xml
index eae24f33..2b34f3c1 100644
--- a/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/package.xml
+++ b/fk101/wb_new_ui/assets/Extend_Poker_FuLuShou/package.xml
@@ -140,6 +140,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_1.xml b/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_1.xml
index 16dc1ea0..64ef6450 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_1.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_1.xml
@@ -1,18 +1,18 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -77,10 +77,10 @@
-
-
-
-
+
+
+
+
diff --git a/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_2.xml b/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_2.xml
index 539d1495..28cbcd3c 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_2.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeard/component/Main/component/PlayerHead_2.xml
@@ -1,17 +1,17 @@
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
@@ -77,10 +77,10 @@
-
-
-
-
+
+
+
+
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_1.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_1.xml
index 8a68683b..f097fa68 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_1.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_1.xml
@@ -2,19 +2,19 @@
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
@@ -63,10 +63,10 @@
-
-
-
-
+
+
+
+
@@ -94,10 +94,10 @@
-
-
-
-
+
+
+
+
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_2.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_2.xml
index d03bb781..62893703 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_2.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/Main/component/PlayerHead_2.xml
@@ -2,12 +2,12 @@
-
+
-
+
@@ -68,10 +68,10 @@
-
-
-
-
+
+
+
+
@@ -92,10 +92,10 @@
-
-
-
-
+
+
+
+
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/big_zipai_result_item.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/big_zipai_result_item.xml
index 23d7ed48..08c99750 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/big_zipai_result_item.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/big_zipai_result_item.xml
@@ -1,27 +1,28 @@
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
+
-
-
-
+
+
+
-
-
+
+
@@ -29,23 +30,23 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/btn_result_close.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/btn_result_close.xml
index 7be869df..fa62dbe1 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/btn_result_close.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/btn_result_close.xml
@@ -1,6 +1,6 @@
-
+
-
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/descript_item_zipai.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/descript_item_zipai.xml
index 8ae3a5e7..2d5d2e2a 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/descript_item_zipai.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/descript_item_zipai.xml
@@ -1,7 +1,7 @@
-
+
-
-
+
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_head.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_head.xml
index 317991ee..db29ec91 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_head.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_head.xml
@@ -1,10 +1,10 @@
-
+
-
+
-
+
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_main.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_main.xml
index aef9efee..19caefae 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_main.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/result_zipai_main.xml
@@ -1,89 +1,88 @@
-
-
-
-
+
+
+
+
-
-
+
+
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
+
-
+
-
-
+
+
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_queren_confirm.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_queren_confirm.xml
index 84e47ed7..993c24d9 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_queren_confirm.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_queren_confirm.xml
@@ -1,9 +1,9 @@
-
+
-
+
-
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_confirm.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_confirm.xml
index 9f1213d4..cf0cd3a6 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_confirm.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_confirm.xml
@@ -1,10 +1,10 @@
-
+
-
+
-
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_share.xml b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_share.xml
index 3b289fbc..64aa22b3 100644
--- a/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_share.xml
+++ b/fk101/wb_new_ui/assets/Main_RunBeardMaJiang/component/clearing/zipai_btn_result_share.xml
@@ -1,7 +1,7 @@
-
+
-
+
diff --git a/fk101/wb_new_ui/assets/NewGroup/Win_PartnerStatMember.xml b/fk101/wb_new_ui/assets/NewGroup/Win_PartnerStatMember.xml
index a2ed5ac2..311419fc 100644
--- a/fk101/wb_new_ui/assets/NewGroup/Win_PartnerStatMember.xml
+++ b/fk101/wb_new_ui/assets/NewGroup/Win_PartnerStatMember.xml
@@ -1,7 +1,7 @@
-
-
+
+
@@ -26,7 +26,7 @@
-
+
diff --git a/fk101/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml b/fk101/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
index b0928aaa..e041f7d7 100644
--- a/fk101/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
+++ b/fk101/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
@@ -6,23 +6,23 @@
-
+
-
-
+
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fk101/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_partner_stat_member.xml b/fk101/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_partner_stat_member.xml
index 53897de6..891ee009 100644
--- a/fk101/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_partner_stat_member.xml
+++ b/fk101/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_partner_stat_member.xml
@@ -1,6 +1,6 @@
-
+
@@ -25,11 +25,16 @@
-
+
+
+
+
+
+
diff --git a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png
index 4838733c..dbfcb6cb 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png and b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png
index 49a1b9f6..6a0c12dc 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png and b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_1.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png
index 65eba270..4ec99a00 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png and b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_13.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png
index 466f5058..6bad9546 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png and b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_14.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png
index 0b00e046..f453aeaf 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png and b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_atlas0_2.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes
index bf4d202b..fd4ebb22 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes and b/fk101/wb_unity_pro/Assets/ART/base/common/ui/Common_fui.bytes differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes b/fk101/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes
index f04ba47e..aaa0b158 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes and b/fk101/wb_unity_pro/Assets/ART/base/main_zipai/ui/Main_RunBeard_fui.bytes differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png
index 524824ca..013b1f2d 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png and b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png
index 59a1ddc9..f4481faf 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png and b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png
index 9cfb4ed0..f0ed43f5 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png and b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_fui.bytes b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_fui.bytes
index c435a4f9..5957cb58 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_fui.bytes and b/fk101/wb_unity_pro/Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_fui.bytes differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes
index a534094f..25f6cdcb 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes and b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes differ
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png
index bfe32703..46092f4b 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png and b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73u.png b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73u.png
new file mode 100644
index 00000000..edfb95e2
Binary files /dev/null and b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73u.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73u.png.meta b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73u.png.meta
new file mode 100644
index 00000000..fa2814f0
--- /dev/null
+++ b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73u.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 8aeb43cbc5bf14245ab4b31bc20ded71
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: -1
+ aniso: -1
+ mipBias: -100
+ wrapU: -1
+ wrapV: -1
+ wrapW: -1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73v.png b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73v.png
new file mode 100644
index 00000000..9c609720
Binary files /dev/null and b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73v.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73v.png.meta b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73v.png.meta
new file mode 100644
index 00000000..c6778cd2
--- /dev/null
+++ b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73v.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: bf960db5f5f6a7b419ea0a64c41fd10e
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: -1
+ aniso: -1
+ mipBias: -100
+ wrapU: -1
+ wrapV: -1
+ wrapW: -1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73z.png b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73z.png
new file mode 100644
index 00000000..95f96fd1
Binary files /dev/null and b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73z.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73z.png.meta b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73z.png.meta
new file mode 100644
index 00000000..96919b6a
--- /dev/null
+++ b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas_loe73z.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 312b0de18c762ac4ea250d1601ea9553
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: -1
+ aniso: -1
+ mipBias: -100
+ wrapU: -1
+ wrapV: -1
+ wrapW: -1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_fui.bytes b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_fui.bytes
index 38c6335c..3ff20621 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_fui.bytes and b/fk101/wb_unity_pro/Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_fui.bytes differ