diff --git a/lua_probject/base_project/Game/View/LobbyView.lua b/lua_probject/base_project/Game/View/LobbyView.lua
index 575d578f..ba1f7fae 100644
--- a/lua_probject/base_project/Game/View/LobbyView.lua
+++ b/lua_probject/base_project/Game/View/LobbyView.lua
@@ -369,7 +369,7 @@ function M:Show()
BaseView.Show(self)
ViewUtil.PlaySoundBg()
UpdateBeat:Add(self.OnUpdate, self)
-
+ self:InitClip()
-- 如果在圈子内的房间,显示tip
local user = DataManager.SelfUser
local tem = user.notices
diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
index 74b98408..76873339 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
@@ -691,6 +691,7 @@ local function __fillPlayItem(self, index, item)
-- tex_gameName.text = __getLayerName(self, 0)
item:GetController('all').selectedIndex = 1
else
+ item:GetController('all').selectedIndex = 0
pipeijoin.onClick:Add(
function()
local currentPlayID = self:GetSelectedPlayID()
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua
index 916c69d1..4515c129 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua
@@ -12,7 +12,8 @@ local GroupMngFagPackView = import('../GroupMngFagPackView')
local MngPermission = import('.MngPermission')
local GroupMngMemberHpListView = {
- numberMap = {}
+ numberMap = { {}, {} },
+ backTable = {}
}
local M = GroupMngMemberHpListView
@@ -26,7 +27,7 @@ function GroupMngMemberHpListView.new(group_id, blur_view)
self.curGroup = DataManager.groups:get(self.group_id)
self.member_data = {}
self.online = 2
- self.stype = 1
+ self.stype = 2
self:FillView()
return self
end
@@ -80,6 +81,7 @@ function M:FillView()
rtype.onClick:Set(function()
self:GetMemberData(0)
+ self._ctr_search.selectedIndex = 0
--printlog("aaaaaaaa222222222222222222222222222222")
end)
@@ -96,12 +98,19 @@ function M:FillView()
end
)
+ -- 初始化搜索成员列表
+ self.lst_member_find = self._view:GetChild('lst_member_find')
+ self.lst_member_find:SetVirtual()
+ self.lst_member_find.itemRenderer = function(index, obj)
+ self:OnRenderItemFind(index, obj)
+ end
+
--local n50=self._view:GetChild('n50')
--print(n50)
--n50.displayObject.gameObject.transform.localPosition.x=214
--print(n50.displayObject.gameObject.transform.localPosition.x)
-- 搜索玩家
- local ctr_search = self._view:GetController('search')
+ self._ctr_search = self._view:GetController('search')
self._view:GetChild('btn_search').onClick:Set(
function()
ViewUtil.ShowModalWait(nil)
@@ -127,14 +136,13 @@ function M:FillView()
ViewUtil.ErrorTip(res.ReturnCode, '找不到成员')
else
self._view:GetChild('tex_id').text = ''
- ctr_search.selectedIndex = 1
- local item_result = self._view:GetChild('lst_member_find')
- item_result:RemoveChildrenToPool()
+ self._ctr_search.selectedIndex = 1
- for j = 1, #res.Data.members do
- local tem = item_result:AddItemFromPool()
- self:FillItem(tem, res.Data.members[j], true, j)
- end
+ self.numberMap[2][qid] = res.Data.members
+
+ ViewUtil.CloseModalWait()
+ table.insert(self.backTable, { 2, qid })
+ self.lst_member_find.numItems = #res.Data.members
end
end,
qnick
@@ -144,7 +152,16 @@ function M:FillView()
local btn_back = self._view:GetChild('btn_back')
btn_back.onClick:Set(
function()
- self.lst_member.numItems = #self.member_data
+ print("ling btn_back", #self.backTable)
+ if #self.backTable > 1 then
+ table.remove(self.backTable)
+ local tempIndex = self.backTable[#self.backTable]
+ local tempTable = self.numberMap[tempIndex[1]][tempIndex[2]]
+ self.lst_member_find.numItems = #tempTable
+ else
+ self._ctr_search.selectedIndex = 0
+ self.lst_member.numItems = #self.member_data
+ end
end
)
@@ -424,51 +441,35 @@ function M:FillItem(obj, member, refresh, index)
local superBtn = obj:GetChild('super_btn')
-- superBtn.visible = group.lev == 1
- -- obj:GetChild("super_btn").onClick:Set(
- -- function()
- -- ViewUtil.ShowModalWait(nil)
- -- local text = member.uid
- -- local qid, qnick
- -- if text == "" then
- -- ViewUtil.CloseModalWait()
- -- ViewUtil.ErrorTip(nil, '输入不能为空')
- -- return
- -- end
- -- qid = tonumber(text) or 0
- -- qnick = tostring(text)
- -- local fgCtr = ControllerManager.GetController(NewGroupController)
- -- fgCtr:FG_FindMember(
- -- self.group_id,
- -- qid,
- -- function(res)
- -- ViewUtil.CloseModalWait()
- -- if self._is_destroy then
- -- return
- -- end
- -- if res.ReturnCode ~= 0 then
- -- ViewUtil.ErrorTip(res.ReturnCode, '找不到成员')
- -- else
- -- self._view:GetChild('tex_id').text = ''
- -- self._view:GetController('search').selectedIndex = 1
- -- local item_result = self._view:GetChild('lst_member_find')
- -- item_result:RemoveChildrenToPool()
+ local superBtnUp = obj:GetChild('superior_btn_up')
+ obj:GetChild("superior_btn_up").onClick:Set(
+ function()
+ ViewUtil.ShowModalWait(nil)
+ local text = member.parentId
+ local tempNumberList = self.numberMap[2][text]
+ if tempNumberList == nil then
+ tempNumberList = {}
+ for j = 1, #self.member_data do
+ local number = self.member_data[j]
+ if number.uid == text then
+ table.insert(tempNumberList, number)
+ end
+ end
+ self.numberMap[2][text] = tempNumberList
+ end
+ self._view:GetChild('tex_id').text = ''
+ self._view:GetController('search').selectedIndex = 1
- -- for j = 1, #res.Data.members do
- -- local tem = item_result:AddItemFromPool()
- -- self:FillItem(tem, res.Data.members[j], true, j)
- -- end
- -- end
- -- end,
- -- qnick,
- -- 1
- -- )
- -- end
- -- )
+ ViewUtil.CloseModalWait()
+ table.insert(self.backTable, { 2, text })
+ self.lst_member_find.numItems = #tempNumberList
+ end
+ )
obj:GetChild("super_btn").onClick:Set(
function()
ViewUtil.ShowModalWait(nil)
local text = member.uid
- local tempNumberList = self.numberMap[text]
+ local tempNumberList = self.numberMap[1][text]
if tempNumberList == nil then
tempNumberList = {}
for j = 1, #self.member_data do
@@ -477,18 +478,14 @@ function M:FillItem(obj, member, refresh, index)
table.insert(tempNumberList, number)
end
end
- self.numberMap[text] = tempNumberList
+ self.numberMap[1][text] = tempNumberList
end
self._view:GetChild('tex_id').text = ''
self._view:GetController('search').selectedIndex = 1
- local item_result = self._view:GetChild('lst_member_find')
- item_result:RemoveChildrenToPool()
ViewUtil.CloseModalWait()
- for j = 1, #tempNumberList do
- local tem = item_result:AddItemFromPool()
- self:FillItem(tem, tempNumberList[j], true, j)
- end
+ table.insert(self.backTable, { 1, text })
+ self.lst_member_find.numItems = #tempNumberList
end
)
end
@@ -501,6 +498,16 @@ function M:OnRenderItem(index, obj)
end
end
+function M:OnRenderItemFind(index, obj)
+ --printlog("aaaaaaaaaawwwwwwwwwwwwwwwwwwwwwwwwwwww ",index)
+ local lastKey = self.backTable[#self.backTable]
+ local tempTable = self.numberMap[lastKey[1]][lastKey[2]]
+ local member = tempTable[index + 1]
+ if member then
+ self:FillItem(obj, member, true, index + 1)
+ end
+end
+
--获取申请列表
function M:GetJoinsData()
local group = DataManager.groups:get(self.group_id)
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua
index 0e86a816..0073812b 100644
--- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberListView1.lua
@@ -323,7 +323,7 @@ function M:FillItem(obj, member, refresh)
--print("11111aaaaaaaaaaaaaaaaaaaa ",os.date('%Y/%m/%d', member.last_time))
obj:GetChild('tex_last_login').text = "最近登录:" .. os.date('%Y/%m/%d', member.last_time)
else
- obj:GetChild('tex_last_login').text = '加入时间\n' .. os.date('%Y/%m/%d', member.join_time)
+ obj:GetChild('tex_last_login').text = '加入时间' .. os.date('%Y/%m/%d', member.join_time)
end
-- end
@@ -448,7 +448,7 @@ function M:FillItem(obj, member, refresh)
local btnBxx = obj:GetChild('btn_bxx')
btnBxx.visible = (not (member.lev == 3 and member.partnerLev == 0)) and
- not (DataManager.SelfUser.account_id == member.uid)
+ not (DataManager.SelfUser.account_id == member.uid)
--btnBxx.visible = not (DataManager.SelfUser.account_id == member.uid)
obj:GetChild('btn_bxx').onClick:Set(
function()
diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/TimeSettingPanelTog.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/TimeSettingPanelTog.lua
new file mode 100644
index 00000000..34bd3fc6
--- /dev/null
+++ b/lua_probject/base_project/Game/View/NewGroup/MngView/TimeSettingPanelTog.lua
@@ -0,0 +1,123 @@
+-- 选择时间按钮、选择时间界面
+local TimeSettingPanel = {}
+
+local M = TimeSettingPanel
+
+function TimeSettingPanel.new(parent, btn_date1, btn_date2, posX, posY, callback, flag)
+ local self = setmetatable({}, { __index = M })
+ self.class = "TimeSettingPanel"
+ self.parent = parent
+ self.btn1 = btn_date1
+ self.btn2 = btn_date2
+ self.posX = posX or 0
+ self.posY = posY or 0
+ self.callback = callback
+ self.show_day = flag and 7 or 7
+ self:initView()
+ return self
+end
+
+local function initButton(self, btn_date, today)
+ btn_date.data = today
+ btn_date.title = os.date("%Y年%m月%d日", today)
+ btn_date.onClick:Set(function()
+ self:ShowSetDatePanel(btn_date)
+ end)
+end
+
+function M:initView()
+ local now_time = os.date("*t", now)
+ local today = os.time({ year = now_time.year, month = now_time.month, day = now_time.day, hour = 0, min = 0, sec = 0 })
+ initButton(self, self.btn1, today)
+ initButton(self, self.btn2, today)
+end
+
+function M:GetDate()
+ local time1 = self.btn1.data
+ local time2 = self.btn2.data
+ local begin_time = math.min(time1, time2)
+ local end_time = math.max(time1, time2) + 86400
+ return begin_time, end_time
+end
+
+function M:SetTenDay()
+ local now_time = os.date("*t", now)
+ local today = os.time({ year = now_time.year, month = now_time.month, day = now_time.day, hour = 0, min = 0, sec = 0 })
+ local nine_day_ago = today - 86400 * 9
+ self.btn1.data = nine_day_ago
+ self.btn1.title = os.date("%Y年%m月%d日", nine_day_ago)
+ self.btn2.data = today
+ self.btn2.title = os.date("%Y年%m月%d日", today)
+end
+
+local max_pos, min_pos = 0.2, 2.2
+-- 添加列表特效:中部的组件放大,两边的渐渐透明
+local function addListEffect(lst)
+ local mid_y = 0.5 * lst.height
+ local cnt = lst.numChildren
+ for i = 0, cnt - 1 do
+ local item = lst:GetChildAt(i)
+ local index = lst.scrollPane.percY * (lst.numChildren - 5)
+ local dist = math.abs(index + 2 - i) -- 距离列表中点的位置
+ if dist <= max_pos then
+ item.alpha = 1
+ item:GetChild("title"):SetScale(1, 1)
+ elseif dist <= min_pos then
+ local scale = dist / min_pos
+ item.alpha = 1 - 0.7 * scale
+ item:GetChild("title"):SetScale(1 - 0.5 * scale, 1 - 0.5 * scale)
+ else
+ item.alpha = 0.3
+ item:GetChild("title"):SetScale(0.5, 0.5)
+ end
+ lst.data = lst:GetChildAt(2).data - math.floor(index + 0.5) * 86400
+ end
+end
+-- 显示日期
+-- +/-2的原因是列表中需要两个看不见的组件
+local function initList(lst, date, show_day)
+ local now_time = os.date("*t", now)
+ local today = os.time({ year = now_time.year, month = now_time.month, day = now_time.day, hour = 0, min = 0, sec = 0 })
+ lst:RemoveChildrenToPool()
+ local index = -1
+ local num = show_day - 1
+ for i = 0 - 2, num + 2 do
+ local item = lst:AddItemFromPool()
+ if i >= 0 and i <= num then
+ local time = today - 86400 * i
+ item.data = time
+ item.title = os.date("%Y年%m月%d日", time)
+ if time == date then
+ index = i
+ end
+ else
+ item.title = " "
+ end
+ end
+ lst.scrollPane.percY = index / num
+ addListEffect(lst)
+ lst.scrollPane.onScroll:Add(function()
+ addListEffect(lst)
+ end)
+end
+
+-- 显示设置时间面板
+function M:ShowSetDatePanel(btn)
+ local date = btn.data
+ local com_set_date = UIPackage.CreateObjectFromURL("ui://NewGroup/com_set_time")
+ local lst_y = com_set_date:GetChild("lst_year")
+ initList(lst_y, date, self.show_day)
+ com_set_date:GetChild("btn_confirm").onClick:Set(function()
+ local time = os.date("%Y年%m月%d日", lst_y.data)
+ btn.title = time
+ btn.data = lst_y.data
+ com_set_date:Dispose()
+ if self.callback then self.callback() end
+ end)
+ AddPanel(com_set_date)
+ -- self.parent:AddChild(com_set_date)
+ -- com_set_date.x = self.posX
+ -- com_set_date.y = GRoot.inst.height - com_set_date.height - (GRoot.inst.height - self.parent.height) * 0.5 + self.posY
+end
+
+return M
diff --git a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua
index 28852ee0..fb5d3952 100644
--- a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua
@@ -87,13 +87,13 @@ function M:InitPoker(pokerList, isPlayAni, open)
-- self.zhizhanmustPutMaxCard=0
-- self.zhizhanplay=0
-- self.zhizhanzdts=0
- local cs = 1.25
+ local cs = 1.35
if DataManager.CurrenRoom.cardsize == 0 then
- cs = 1.35
+ cs = 1.45
elseif DataManager.CurrenRoom.cardsize == 1 then
- cs = 1.25
+ cs = 1.35
elseif DataManager.CurrenRoom.cardsize == 2 then
- cs = 1.15
+ cs = 1.25
end
if self.cor_init_poker ~= nil then
diff --git a/wb_new_ui/.objs/metas/2d9xdj6z/nlwcgk.info b/wb_new_ui/.objs/metas/2d9xdj6z/nlwcgk.info
index a20f97f3..d7433b51 100644
--- a/wb_new_ui/.objs/metas/2d9xdj6z/nlwcgk.info
+++ b/wb_new_ui/.objs/metas/2d9xdj6z/nlwcgk.info
@@ -1,11 +1,23 @@
{
"objectStatus": {
- "n24_cvc8": {
+ "n8_nlwc": {
+ "hidden": true
+ },
+ "n14_mkh9": {
"hidden": true
},
"n26_ht5v": {
"hidden": true
},
+ "n24_cvc8": {
+ "hidden": true
+ },
+ "n6_nlwc": {
+ "hidden": true
+ },
+ "n13_mkh9": {
+ "hidden": true
+ },
"n9_bqt1": {
"hidden": true
}
diff --git a/wb_new_ui/.objs/metas/9n9stu2e/jdf3hy.info b/wb_new_ui/.objs/metas/9n9stu2e/jdf3hy.info
new file mode 100644
index 00000000..74534a65
--- /dev/null
+++ b/wb_new_ui/.objs/metas/9n9stu2e/jdf3hy.info
@@ -0,0 +1,7 @@
+{
+ "objectStatus": {
+ "n6_rfcn": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/9n9stu2e/prgz88.info b/wb_new_ui/.objs/metas/9n9stu2e/prgz88.info
index 774b3d4a..794f6bdd 100644
--- a/wb_new_ui/.objs/metas/9n9stu2e/prgz88.info
+++ b/wb_new_ui/.objs/metas/9n9stu2e/prgz88.info
@@ -6,15 +6,15 @@
"n56_dg1i": {
"hidden": true
},
+ "n63_i3h6": {
+ "collapsed": true
+ },
"n53_g618": {
"hidden": true
},
"n57_pgkj": {
"hidden": true
},
- "n51_g618": {
- "collapsed": true
- },
"n61_agiz": {
"hidden": true
}
diff --git a/wb_new_ui/.objs/metas/9n9stu2e/prgzab.info b/wb_new_ui/.objs/metas/9n9stu2e/prgzab.info
index 1c90b46b..cff97378 100644
--- a/wb_new_ui/.objs/metas/9n9stu2e/prgzab.info
+++ b/wb_new_ui/.objs/metas/9n9stu2e/prgzab.info
@@ -3,9 +3,6 @@
"n8": {
"hidden": true
},
- "n33_e7qn": {
- "collapsed": true
- },
"n41_i3h6": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info b/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
index 7e0bf609..58466713 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/10snh5j.info
@@ -1,41 +1,53 @@
{
"objectStatus": {
- "n204_jvvo": {
+ "n154_cioe": {
+ "hidden": true
+ },
+ "n45_l0s4": {
+ "locked": true
+ },
+ "n214_ovii": {
"hidden": true
},
"n233_o6b1": {
"hidden": true
},
- "n214_ovii": {
- "hidden": true
- },
- "n74_i7lq": {
- "locked": true
- },
- "n229_csp4": {
+ "n204_jvvo": {
"hidden": true
},
"n153_cioe": {
"hidden": true
},
- "n228_csp4": {
- "hidden": true
- },
"n175_mn85": {
"collapsed": true
},
- "n236_o6b1": {
- "hidden": true,
- "collapsed": true
+ "n74_i7lq": {
+ "locked": true
},
- "n154_cioe": {
+ "n243_n6w8": {
"hidden": true
},
"n171_mpll": {
"hidden": true
},
+ "n236_o6b1": {
+ "hidden": true,
+ "collapsed": true
+ },
+ "n228_csp4": {
+ "hidden": true
+ },
+ "n240_n6w8": {
+ "hidden": true
+ },
+ "n229_csp4": {
+ "hidden": true
+ },
"n216_ovii": {
"hidden": true
+ },
+ "n241_n6w8": {
+ "hidden": true
}
},
"adaptiveTest": true,
diff --git a/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info b/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info
index dc5b38de..ab040c86 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info
@@ -2,9 +2,6 @@
"objectStatus": {
"n44_rpaz": {
"collapsed": true
- },
- "n26_kwi0": {
- "collapsed": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/v0j9abjy/gq7m8f.info b/wb_new_ui/.objs/metas/v0j9abjy/gq7m8f.info
new file mode 100644
index 00000000..3c437259
--- /dev/null
+++ b/wb_new_ui/.objs/metas/v0j9abjy/gq7m8f.info
@@ -0,0 +1,10 @@
+{
+ "objectStatus": {
+ "n108_go7q": {
+ "hidden": true
+ },
+ "n107_go7q": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/v0j9abjy/gq7m8r.info b/wb_new_ui/.objs/metas/v0j9abjy/gq7m8r.info
new file mode 100644
index 00000000..74534a65
--- /dev/null
+++ b/wb_new_ui/.objs/metas/v0j9abjy/gq7m8r.info
@@ -0,0 +1,7 @@
+{
+ "objectStatus": {
+ "n6_rfcn": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Clock.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Clock.xml
index f9e81426..d2234c84 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Clock.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/Clock.xml
@@ -1,9 +1,11 @@
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml
index 0ba373b5..afad74ce 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/RunFast_Main_2.xml
@@ -2,11 +2,11 @@
-
+
-
-
+
+
@@ -33,12 +33,12 @@
-
-
+
+
-
-
+
+
@@ -46,16 +46,16 @@
-
+
-
+
-
+
-
+
@@ -132,7 +132,7 @@
-
+
@@ -161,6 +161,7 @@
+
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml
index 13b72d88..b910fff7 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml
@@ -1,7 +1,7 @@
-
+
@@ -12,17 +12,17 @@
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_2.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_2.xml
index bb71cf82..a9499c05 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_2.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_2.xml
@@ -13,7 +13,7 @@
-
+
@@ -25,6 +25,6 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/HeadNameBG.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/HeadNameBG.xml
index dc443546..eaaa7c6c 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/HeadNameBG.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/HeadNameBG.xml
@@ -1,11 +1,11 @@
-
+
-
-
-
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_1.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_1.xml
index cd5f2e79..b5c0f26b 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_1.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_1.xml
@@ -10,18 +10,18 @@
-
+
-
+
-
+
@@ -32,7 +32,7 @@
-
+
@@ -50,12 +50,12 @@
-
-
+
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_2.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_2.xml
index fc0d4811..39a0775b 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_2.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/head/PlayerHead_2.xml
@@ -11,18 +11,18 @@
-
+
-
-
+
+
-
+
-
+
@@ -38,7 +38,7 @@
-
+
@@ -54,12 +54,12 @@
-
-
+
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/cp_img.png b/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/cp_img.png
index af5b0e9d..31fe4f1c 100644
Binary files a/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/cp_img.png and b/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/cp_img.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/ts_img.png b/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/ts_img.png
index baa13b5c..a4108d3f 100644
Binary files a/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/ts_img.png and b/wb_new_ui/assets/Extend_Poker_RunFastNew/image/btn/ts_img.png differ
diff --git a/wb_new_ui/assets/Lobby/Main.xml b/wb_new_ui/assets/Lobby/Main.xml
index b036bbad..b53d6c2a 100644
--- a/wb_new_ui/assets/Lobby/Main.xml
+++ b/wb_new_ui/assets/Lobby/Main.xml
@@ -5,7 +5,7 @@
-
+
diff --git a/wb_new_ui/assets/Lobby/component/group/component/guoup_item.xml b/wb_new_ui/assets/Lobby/component/group/component/guoup_item.xml
index 68aaf47d..d82f4381 100644
--- a/wb_new_ui/assets/Lobby/component/group/component/guoup_item.xml
+++ b/wb_new_ui/assets/Lobby/component/group/component/guoup_item.xml
@@ -1,21 +1,24 @@
-
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/group/component/云阙.png b/wb_new_ui/assets/Lobby/component/group/component/云阙.png
new file mode 100644
index 00000000..a2c14f4b
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/group/component/云阙.png differ
diff --git a/wb_new_ui/assets/Lobby/component/group/group.xml b/wb_new_ui/assets/Lobby/component/group/group.xml
index c02147ce..e2e88791 100644
--- a/wb_new_ui/assets/Lobby/component/group/group.xml
+++ b/wb_new_ui/assets/Lobby/component/group/group.xml
@@ -3,8 +3,8 @@
-
-
+
+
@@ -27,12 +27,9 @@
-
+
-
-
-
-
+
@@ -42,9 +39,9 @@
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/group/images/putongd.png b/wb_new_ui/assets/Lobby/component/group/images/putongd.png
index c9605f4b..d1a73a54 100644
Binary files a/wb_new_ui/assets/Lobby/component/group/images/putongd.png and b/wb_new_ui/assets/Lobby/component/group/images/putongd.png differ
diff --git a/wb_new_ui/assets/Lobby/images/image 91.png b/wb_new_ui/assets/Lobby/images/image 91.png
new file mode 100644
index 00000000..00b896bc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/image 91.png differ
diff --git a/wb_new_ui/assets/Lobby/package.xml b/wb_new_ui/assets/Lobby/package.xml
index 536c1996..e014cfbb 100644
--- a/wb_new_ui/assets/Lobby/package.xml
+++ b/wb_new_ui/assets/Lobby/package.xml
@@ -674,7 +674,9 @@
-
+
+
+
diff --git a/wb_new_ui/assets/Login/Main.xml b/wb_new_ui/assets/Login/Main.xml
index df5d0827..667bd9d4 100644
--- a/wb_new_ui/assets/Login/Main.xml
+++ b/wb_new_ui/assets/Login/Main.xml
@@ -5,8 +5,10 @@
-
-
+
+
+
+
diff --git a/wb_new_ui/assets/Main_Majiang/Main_style_2/HeadNameBG(1).xml b/wb_new_ui/assets/Main_Majiang/Main_style_2/HeadNameBG(1).xml
index a109bf16..5e569365 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_style_2/HeadNameBG(1).xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_style_2/HeadNameBG(1).xml
@@ -1,16 +1,16 @@
-
+
-
-
+
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Main_Majiang/Main_style_2/Main_2_s2.xml b/wb_new_ui/assets/Main_Majiang/Main_style_2/Main_2_s2.xml
index 74a5900a..0af8f8b1 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_style_2/Main_2_s2.xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_style_2/Main_2_s2.xml
@@ -8,23 +8,23 @@
-
+
-
+
-
+
-
+
-
+
@@ -39,7 +39,7 @@
-
+
@@ -135,8 +135,8 @@
-
-
+
+
diff --git a/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_1_s2(1).xml b/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_1_s2(1).xml
index 86eb9b0c..249a63e1 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_1_s2(1).xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_1_s2(1).xml
@@ -11,47 +11,47 @@
-
-
+
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_3_s2(1).xml b/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_3_s2(1).xml
index d4ded9fa..7c236e64 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_3_s2(1).xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_style_2/PlayerHead_3_s2(1).xml
@@ -11,51 +11,51 @@
-
-
-
+
+
+
-
+
-
+
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml b/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
index f6394712..2f1a2dc1 100644
--- a/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
+++ b/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
@@ -1,6 +1,6 @@
-
+
@@ -17,7 +17,7 @@
-
+
@@ -37,64 +37,68 @@
-
-
+
+
+
-
+
-
+
-
+
+
-
+
-
+
-
+
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
diff --git a/wb_new_ui/assets/NewGroup/Win_Mail.xml b/wb_new_ui/assets/NewGroup/Win_Mail.xml
index 4b223584..5fda2d9b 100644
--- a/wb_new_ui/assets/NewGroup/Win_Mail.xml
+++ b/wb_new_ui/assets/NewGroup/Win_Mail.xml
@@ -1,22 +1,22 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_ManagerView.xml b/wb_new_ui/assets/NewGroup/Win_ManagerView.xml
index e846a772..e1e37df7 100644
--- a/wb_new_ui/assets/NewGroup/Win_ManagerView.xml
+++ b/wb_new_ui/assets/NewGroup/Win_ManagerView.xml
@@ -1,29 +1,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/component/Btn/date_set/com_set_time_together.xml b/wb_new_ui/assets/NewGroup/component/Btn/date_set/com_set_time_together.xml
new file mode 100644
index 00000000..1bada326
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/component/Btn/date_set/com_set_time_together.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/images/Rectangle 9.png b/wb_new_ui/assets/NewGroup/images/Rectangle 9.png
index 00884bab..fe070fc7 100644
Binary files a/wb_new_ui/assets/NewGroup/images/Rectangle 9.png and b/wb_new_ui/assets/NewGroup/images/Rectangle 9.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/bxx/btn_ll.xml b/wb_new_ui/assets/NewGroup/images/bxx/btn_ll.xml
index 3ac9005c..4aa8eb61 100644
--- a/wb_new_ui/assets/NewGroup/images/bxx/btn_ll.xml
+++ b/wb_new_ui/assets/NewGroup/images/bxx/btn_ll.xml
@@ -1,12 +1,12 @@
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/images/bxx/btn_n.xml b/wb_new_ui/assets/NewGroup/images/bxx/btn_n.xml
index b23b076d..04ab4ba0 100644
--- a/wb_new_ui/assets/NewGroup/images/bxx/btn_n.xml
+++ b/wb_new_ui/assets/NewGroup/images/bxx/btn_n.xml
@@ -1,12 +1,12 @@
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 593.png b/wb_new_ui/assets/NewGroup/images/info/Group 593.png
index 5485f35b..1ca27e6d 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 593.png and b/wb_new_ui/assets/NewGroup/images/info/Group 593.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 593@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 593@2x.png
index b8b70501..67a13327 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 593@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 593@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 594.png b/wb_new_ui/assets/NewGroup/images/info/Group 594.png
index 15e75f43..a57e0dec 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 594.png and b/wb_new_ui/assets/NewGroup/images/info/Group 594.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 594@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 594@2x.png
index a961130c..2e9bee28 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 594@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 594@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 595.png b/wb_new_ui/assets/NewGroup/images/info/Group 595.png
index 8e7f8430..bdeff1c6 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 595.png and b/wb_new_ui/assets/NewGroup/images/info/Group 595.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 595@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 595@2x.png
index ef18789f..5bc60c4d 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 595@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 595@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 596.png b/wb_new_ui/assets/NewGroup/images/info/Group 596.png
index e7bf9a51..1c028251 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 596.png and b/wb_new_ui/assets/NewGroup/images/info/Group 596.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 596@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 596@2x.png
index ef97c147..fa703a95 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 596@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 596@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 597.png b/wb_new_ui/assets/NewGroup/images/info/Group 597.png
index 015a170c..3e27c000 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 597.png and b/wb_new_ui/assets/NewGroup/images/info/Group 597.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 597@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 597@2x.png
index 2564985f..15a0c35e 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 597@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 597@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 598.png b/wb_new_ui/assets/NewGroup/images/info/Group 598.png
index 7016f640..1a028f52 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 598.png and b/wb_new_ui/assets/NewGroup/images/info/Group 598.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 598@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 598@2x.png
index 994667e6..df47629d 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 598@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 598@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 627.png b/wb_new_ui/assets/NewGroup/images/info/Group 627.png
index 52c10b4d..aae298ff 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 627.png and b/wb_new_ui/assets/NewGroup/images/info/Group 627.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 627@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 627@2x.png
index 2418be9f..602bc0b3 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 627@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 627@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 628.png b/wb_new_ui/assets/NewGroup/images/info/Group 628.png
index af10684f..c6e6ba05 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 628.png and b/wb_new_ui/assets/NewGroup/images/info/Group 628.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 628@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 628@2x.png
index 8a9b604b..548f4fa2 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 628@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 628@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 629.png b/wb_new_ui/assets/NewGroup/images/info/Group 629.png
index 240cd4a5..7621c87a 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 629.png and b/wb_new_ui/assets/NewGroup/images/info/Group 629.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/Group 629@2x.png b/wb_new_ui/assets/NewGroup/images/info/Group 629@2x.png
index 1d6fbd51..21b38193 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/Group 629@2x.png and b/wb_new_ui/assets/NewGroup/images/info/Group 629@2x.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/gl.png b/wb_new_ui/assets/NewGroup/images/info/gl.png
index 5dff63af..78409e0e 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/gl.png and b/wb_new_ui/assets/NewGroup/images/info/gl.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/info/wf.png b/wb_new_ui/assets/NewGroup/images/info/wf.png
index 9c315267..3b7c5ad1 100644
Binary files a/wb_new_ui/assets/NewGroup/images/info/wf.png and b/wb_new_ui/assets/NewGroup/images/info/wf.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml
index e51083d5..1edc7b12 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupFagList.xml
@@ -1,16 +1,17 @@
-
-
+
+
-
+
+
-
-
+
+
@@ -23,29 +24,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
@@ -58,10 +59,10 @@
-
+
-
+
@@ -74,54 +75,54 @@
-
+
-
-
-
-
+
+
+
+
-
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
index b729c87e..7ecb080a 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
@@ -1,13 +1,12 @@
-
+
-
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
index 205bd86e..5f55d341 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
@@ -1,6 +1,6 @@
-
-
+
+
@@ -11,34 +11,34 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
@@ -48,7 +48,7 @@
-
+
@@ -58,93 +58,93 @@
-
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList.xml
index 889565a2..083f5844 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList.xml
@@ -1,12 +1,12 @@
-
+
-
+
-
+
@@ -16,27 +16,27 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -49,7 +49,7 @@
-
+
@@ -65,78 +65,78 @@
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList1.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList1.xml
index 776d08bc..e661efa6 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList1.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList1.xml
@@ -1,12 +1,12 @@
-
+
-
+
-
+
@@ -15,35 +15,35 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -56,7 +56,7 @@
-
+
@@ -72,50 +72,50 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml
index f85e6fb3..a21efa88 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml
@@ -1,24 +1,27 @@
-
+
-
+
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
@@ -28,12 +31,12 @@
-
-
+
+
-
+
@@ -42,28 +45,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml
index 08dc9080..c1f97f05 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml
@@ -1,10 +1,11 @@
-
+
-
+
+
-
+
@@ -14,26 +15,26 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml
index d2091ae4..e8288a5e 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupRank.xml
@@ -1,53 +1,56 @@
-
-
+
+
+
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
@@ -63,25 +66,25 @@
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
-
+
-
-
+
+
@@ -97,27 +100,27 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
@@ -133,22 +136,22 @@
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/member/item_member1.xml b/wb_new_ui/assets/NewGroup/mgr/component/member/item_member1.xml
index 4cec0aee..e6a6aab6 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/member/item_member1.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/member/item_member1.xml
@@ -1,67 +1,69 @@
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_mng_partner.xml b/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_mng_partner.xml
index 9e820576..c96a286e 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_mng_partner.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/member/partner/item_mng_partner.xml
@@ -1,46 +1,46 @@
-
+
-
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
+
-
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/item_member1.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/item_member1.xml
index 11d7eebb..38b10add 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/item_member1.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/item_member1.xml
@@ -32,6 +32,7 @@
+
@@ -44,20 +45,20 @@
-
-
-
-
-
+
+
+
+
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/superior_btn_up.xml b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/superior_btn_up.xml
new file mode 100644
index 00000000..0c383195
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/component/numberHpAlone/superior_btn_up.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/record/Item_mng_name.xml b/wb_new_ui/assets/NewGroup/mgr/component/record/Item_mng_name.xml
index 4cdafb0b..150dca08 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/record/Item_mng_name.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/record/Item_mng_name.xml
@@ -1,12 +1,12 @@
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 11.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 11.png
new file mode 100644
index 00000000..fc993a48
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Frame 11.png differ
diff --git a/wb_new_ui/assets/NewGroup/package.xml b/wb_new_ui/assets/NewGroup/package.xml
index 685ef437..49621245 100644
--- a/wb_new_ui/assets/NewGroup/package.xml
+++ b/wb_new_ui/assets/NewGroup/package.xml
@@ -889,7 +889,7 @@
-
+
@@ -1027,6 +1027,9 @@
+
+
+
\ No newline at end of file