diff --git a/lua_probject/base_project/Game/View/Common/BaseWindow.lua b/lua_probject/base_project/Game/View/Common/BaseWindow.lua
index 8dfe694c..f85d7ee2 100644
--- a/lua_probject/base_project/Game/View/Common/BaseWindow.lua
+++ b/lua_probject/base_project/Game/View/Common/BaseWindow.lua
@@ -2,251 +2,252 @@
--author:--
BaseWindow = {
- --view description
- _view = nil,
+ --view description
+ _view = nil,
- --View 是否被销毁
- _is_destroy = false,
- --是否播放动画
- _animation = true,
- --弹出动画,0关闭,1左边,2右边
- _anim_pop = 0,
- --关闭摧毁
- _close_destroy = false,
+ --View 是否被销毁
+ _is_destroy = false,
+ --是否播放动画
+ _animation = true,
+ --弹出动画,0关闭,1左边,2右边
+ _anim_pop = 0,
+ --关闭摧毁
+ _close_destroy = false,
- --点击窗口以外关闭
- _close_zone = true,
+ --点击窗口以外关闭
+ _close_zone = true,
- --队列
- _queue = true,
- --全屏
- _full = false,
- --全屏偏移
- _full_offset = true,
- --新窗口隐藏队列
- _new_hide = true,
- --模糊组件对象
- _put_map = true
+ --队列
+ _queue = true,
+ --全屏
+ _full = false,
+ --全屏偏移
+ _full_offset = true,
+ --新窗口隐藏队列
+ _new_hide = true,
+ --模糊组件对象
+ _put_map = true
}
--window 列表
local WindowMap = {
-
+
}
-local WindowQueue= {
-
+local WindowQueue = {
+
}
local M = BaseWindow
-function BaseWindow.new(url,blur_view)
- local self = setmetatable({}, {__index = M})
- self.class = "BaseWindow"
- -- self._blur_view = blur_view
- self:init(url)
- return self
+function BaseWindow.new(url, blur_view)
+ local self = setmetatable({}, { __index = M })
+ self.class = "BaseWindow"
+ -- self._blur_view = blur_view
+ self:init(url)
+ return self
end
local win_url = {
- "ui://Common/Gcm_Window",
- "ui://Common/Gcm_Window_Full"
+ "ui://Common/Gcm_Window",
+ "ui://Common/Gcm_Window_Full"
}
function M:init(url)
- self._root_view = UIPackage.CreateObjectFromURL(self._full and win_url[2] or win_url[1])
- local contentPane = self._root_view:GetChild("contentPane")
- local ctr_hide_bg = self._root_view:GetController("hide_bg")
- if self._anim_pop ~= 0 then
- ctr_hide_bg.selectedIndex = 1
- PopPanel = contentPane:GetChild("PopPanel")
- else
- ctr_hide_bg.selectedIndex = 0
- end
- self._view = UIPackage.CreateObjectFromURL(url)
- -- self._view.fairyBatching = true
- local btn_close = self._view:GetChild("btn_close")
- if(btn_close) then
- btn_close.onClick:Set(function()
- self:CloseEvent()
- end)
- end
+ self._root_view = UIPackage.CreateObjectFromURL(self._full and win_url[2] or win_url[1])
+ local contentPane = self._root_view:GetChild("contentPane")
+ local ctr_hide_bg = self._root_view:GetController("hide_bg")
+ if self._anim_pop ~= 0 then
+ ctr_hide_bg.selectedIndex = 1
+ PopPanel = contentPane:GetChild("PopPanel")
+ else
+ ctr_hide_bg.selectedIndex = 0
+ end
+ self._view = UIPackage.CreateObjectFromURL(url)
+ -- self._view.fairyBatching = true
+ local btn_close = self._view:GetChild("btn_close")
+ if (btn_close) then
+ btn_close.onClick:Set(function()
+ self:CloseEvent()
+ end)
+ end
-
- local win_mode = self._root_view:GetChild("win_mode")
- win_mode.onClick:Set(function()
- if not self._close_zone then
- return
- end
- win_mode.touchable = false
- self:CloseEvent()
- end)
- if self._full then
- local offset = get_offset(self._full_offset)
- if self._anim_pop == 0 then
- self._view:AddRelation(contentPane, RelationType.Size)
- contentPane:AddChild(self._view)
- else
- contentPane:RemoveRelation(self._root_view, RelationType.Center_Center)
- contentPane:AddRelation(self._root_view, RelationType.Middle_Middle)
- PopPanel:AddChild(self._view)
- local click_item = PopPanel:GetChild("click_item")
- if self._anim_pop == 1 then
- contentPane:AddRelation(self._root_view, RelationType.Left_Left)
- self._view.x = 0
- elseif self._anim_pop == 2 then
- contentPane:AddRelation(self._root_view, RelationType.Right_Right)
- self._view.x = GRoot.inst.width - self._view.width - offset
- end
- self._view.y = (PopPanel.height - self._view.height) * 0.5
- click_item.xy = self._view.xy
- click_item.width = self._view.width
- click_item.height = self._view.height
- end
- else
- contentPane:AddChild(self._view)
- contentPane.height = self._view.height
- contentPane.width = self._view.width
- contentPane:Center()
- end
- self._contentPane = contentPane
- if self._put_map then
- WindowMap[#WindowMap + 1] = self
- end
+ local win_mode = self._root_view:GetChild("win_mode")
+ win_mode.onClick:Set(function()
+ if not self._close_zone then
+ return
+ end
+ win_mode.touchable = false
+ self:CloseEvent()
+ end)
+
+ if self._full then
+ local offset = get_offset(self._full_offset)
+ if self._anim_pop == 0 then
+ self._view:AddRelation(contentPane, RelationType.Size)
+ contentPane:AddChild(self._view)
+ self._view:Center()
+ else
+ contentPane:RemoveRelation(self._root_view, RelationType.Center_Center)
+ contentPane:AddRelation(self._root_view, RelationType.Middle_Middle)
+ PopPanel:AddChild(self._view)
+ local click_item = PopPanel:GetChild("click_item")
+ if self._anim_pop == 1 then
+ contentPane:AddRelation(self._root_view, RelationType.Left_Left)
+ self._view.x = 0
+ elseif self._anim_pop == 2 then
+ contentPane:AddRelation(self._root_view, RelationType.Right_Right)
+ self._view.x = GRoot.inst.width - self._view.width - offset
+ end
+ self._view.y = (PopPanel.height - self._view.height) * 0.5
+ click_item.xy = self._view.xy
+ click_item.width = self._view.width
+ click_item.height = self._view.height
+ end
+ else
+ contentPane:AddChild(self._view)
+ contentPane.height = self._view.height
+ contentPane.width = self._view.width
+ contentPane:Center()
+ end
+ self._contentPane = contentPane
+ if self._put_map then
+ WindowMap[#WindowMap + 1] = self
+ end
end
-- 显示窗口
function M:Show()
- local contentPane = self._root_view:GetChild("contentPane")
- if self._anim_pop == 1 then
- contentPane:GetTransition("left_pop"):Play()
- elseif self._anim_pop == 2 then
- contentPane:GetTransition("right_pop"):Play()
- elseif self._animation then
- local ani_in = self._root_view:GetTransition("in")
- if ani_in then
- ani_in:Play()
- end
- end
- -- if self._blur_view then
- -- BlurView(self._blur_view,true)
- -- end
+ local contentPane = self._root_view:GetChild("contentPane")
+ if self._anim_pop == 1 then
+ contentPane:GetTransition("left_pop"):Play()
+ elseif self._anim_pop == 2 then
+ contentPane:GetTransition("right_pop"):Play()
+ elseif self._animation then
+ local ani_in = self._root_view:GetTransition("in")
+ if ani_in then
+ ani_in:Play()
+ end
+ end
+ -- if self._blur_view then
+ -- BlurView(self._blur_view,true)
+ -- end
- -- 判断当前窗口是否已经在队列中,如果在就不重复添加
- local _inQueue = false
+ -- 判断当前窗口是否已经在队列中,如果在就不重复添加
+ local _inQueue = false
- if self._new_hide then
- for i=1,#WindowQueue do
- local win = WindowQueue[i]
- if win == self then
- _inQueue = true
- end
- if win._queue then
- win._root_view:RemoveFromParent()
- end
- end
- end
- if self._queue and not _inQueue then
- WindowQueue[#WindowQueue + 1] = self
- end
- AddPanel(self._root_view)
- if self._full then
- local offset = get_offset(self._full_offset)
- self._contentPane.width = GRoot.inst.width - 2 * offset
- self._contentPane.height = GRoot.inst.height
- self._contentPane.x = offset
- end
+ if self._new_hide then
+ for i = 1, #WindowQueue do
+ local win = WindowQueue[i]
+ if win == self then
+ _inQueue = true
+ end
+ if win._queue then
+ win._root_view:RemoveFromParent()
+ end
+ end
+ end
+ if self._queue and not _inQueue then
+ WindowQueue[#WindowQueue + 1] = self
+ end
+ AddPanel(self._root_view)
+ if self._full then
+ local offset = get_offset(self._full_offset)
+ self._contentPane.width = GRoot.inst.width - 2 * offset
+ self._contentPane.height = GRoot.inst.height
+ self._contentPane.x = offset
+ end
end
-- 关闭窗口
function M:Close()
- -- if self._blur_view then
- -- BlurView(self._blur_view,false)
- -- end
- if self._queue then
- for i,v in ipairs(WindowQueue) do
- if v == self then
- table.remove(WindowQueue,i)
- break
- end
- end
- end
+ -- if self._blur_view then
+ -- BlurView(self._blur_view,false)
+ -- end
+ if self._queue then
+ for i, v in ipairs(WindowQueue) do
+ if v == self then
+ table.remove(WindowQueue, i)
+ break
+ end
+ end
+ end
- if self._new_hide then
- local win = WindowQueue[#WindowQueue]
- if win and win._queue then
- AddPanel(win._root_view)
- end
- end
- self._root_view:RemoveFromParent()
+ if self._new_hide then
+ local win = WindowQueue[#WindowQueue]
+ if win and win._queue then
+ AddPanel(win._root_view)
+ end
+ end
+ self._root_view:RemoveFromParent()
end
local _destroy_all = false
-- 销毁窗口
function M:Destroy()
- if self._is_destroy then
- return
- end
- if not _destroy_all then
- self:Close()
- if self._put_map then
- for i,v in ipairs(WindowMap) do
- if v == self then
- table.remove(WindowMap,i)
- break
- end
- end
- end
- end
- self._is_destroy = true
- self._root_view:Dispose()
+ if self._is_destroy then
+ return
+ end
+ if not _destroy_all then
+ self:Close()
+ if self._put_map then
+ for i, v in ipairs(WindowMap) do
+ if v == self then
+ table.remove(WindowMap, i)
+ break
+ end
+ end
+ end
+ end
+ self._is_destroy = true
+ self._root_view:Dispose()
end
function M:CloseEvent()
- local win_mode = self._root_view:GetChild("win_mode")
- if self._anim_pop == 0 then
- if self._close_destroy then
- self:Destroy()
- else
- self:Close()
- win_mode.touchable = true
- end
- else
- self:ActionWithAnim(function()
- if self._close_destroy then
- self:Destroy()
- else
- self:Close()
- win_mode.touchable = true
- end
- end)
- end
+ local win_mode = self._root_view:GetChild("win_mode")
+ if self._anim_pop == 0 then
+ if self._close_destroy then
+ self:Destroy()
+ else
+ self:Close()
+ win_mode.touchable = true
+ end
+ else
+ self:ActionWithAnim(function()
+ if self._close_destroy then
+ self:Destroy()
+ else
+ self:Close()
+ win_mode.touchable = true
+ end
+ end)
+ end
end
function M:ActionWithAnim(callback)
- local contentPane = self._root_view:GetChild("contentPane")
- if self._anim_pop == 1 then
- contentPane:GetTransition("left_pop_back"):Play()
- elseif self._anim_pop == 2 then
- contentPane:GetTransition("right_pop_back"):Play()
- end
- if callback then
- coroutine.start(function()
- coroutine.wait(0.3)
- callback()
- end)
- end
+ local contentPane = self._root_view:GetChild("contentPane")
+ if self._anim_pop == 1 then
+ contentPane:GetTransition("left_pop_back"):Play()
+ elseif self._anim_pop == 2 then
+ contentPane:GetTransition("right_pop_back"):Play()
+ end
+ if callback then
+ coroutine.start(function()
+ coroutine.wait(0.3)
+ callback()
+ end)
+ end
end
function BaseWindow.DestroyAll()
- _destroy_all = true
- local list = WindowMap
- for i=1,#list do
- local win = list[i]
- win:Destroy()
- end
- _destroy_all = false
- WindowQueue = {}
- WindowMap = {}
-end
\ No newline at end of file
+ _destroy_all = true
+ local list = WindowMap
+ for i = 1, #list do
+ local win = list[i]
+ win:Destroy()
+ end
+ _destroy_all = false
+ WindowQueue = {}
+ WindowMap = {}
+end
diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupFastGamesView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupFastGamesView.lua
index 7404acf0..8c711d71 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupFastGamesView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupFastGamesView.lua
@@ -102,12 +102,12 @@ function M:SortPlayList(a, b)
if a_play.gameType == b_play.gameType then
if a_play.gameId == a_play.gameId then
- return a_play.id < b_play.id
+ return a_play.id > b_play.id
else
- return a_play.gameId < b_play.gameId
+ return a_play.gameId > b_play.gameId
end
else
- return a_play.gameType < b_play.gameType
+ return a_play.gameType > b_play.gameType
end
end
diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
index 54dbf95a..f48694f7 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
@@ -1215,6 +1215,7 @@ function M:InitView(url)
local showid = Utils.LoadLocalFile("selectplay" .. DataManager.SelfUser.account_id)
local gamename = Utils.LoadLocalFile("selectplayname" .. DataManager.SelfUser.account_id)
self._view:GetChild('btn_start2').text = gamename
+ self._view:GetChild('btn_start2'):GetController('isChoose').selectedIndex = 0
self:__startGame("", tonumber(showid), false)
end
)
@@ -1235,6 +1236,7 @@ function M:InitView(url)
local showid = Utils.LoadLocalFile("selectplay" .. DataManager.SelfUser.account_id)
local gamename = Utils.LoadLocalFile("selectplayname" .. DataManager.SelfUser.account_id)
self._view:GetChild('btn_start2').text = gamename
+ self._view:GetChild('btn_start2'):GetController('isChoose').selectedIndex = 0
self:__startGame("", tonumber(showid), false)
end
)
diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupMailView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupMailView.lua
index 8cf0f7a6..81fe312f 100644
--- a/lua_probject/base_project/Game/View/NewGroup/GroupMailView.lua
+++ b/lua_probject/base_project/Game/View/NewGroup/GroupMailView.lua
@@ -6,24 +6,24 @@ local GroupMailView = {}
local M = GroupMailView
function GroupMailView.new(blur_view, curGroup)
- setmetatable(M, {__index = BaseWindow})
- local self = setmetatable({}, {__index = M})
+ setmetatable(M, { __index = BaseWindow })
+ local self = setmetatable({}, { __index = M })
self.class = "GroupMailView"
self._close_destroy = true
self._blur_view = blur_view
self.curGroup = curGroup
self.mail_data = {}
- self._full = true
+ -- self._full = true
self:init("ui://NewGroup/Win_Mail")
self:FillView()
return self
-end
+end
function M:FillView()
- self.lst_mail = self._view:GetChild("lst_mail")
- self.lst_mail:SetVirtual()
+ self.lst_mail = self._view:GetChild("lst_mail")
+ self.lst_mail:SetVirtual()
self.lst_mail.itemRenderer = function(index, obj)
- self:OnRenderItem(index, obj)
+ self:OnRenderItem(index, obj)
end
self.lst_mail.scrollPane.onPullUpRelease:Set(function()
self:GetMailData(#self.mail_data)
@@ -33,7 +33,7 @@ function M:FillView()
local btn_delete = self._view:GetChild("btn_delete")
btn_delete.onClick:Set(function()
local msg_tip = MsgWindow.new(self._root_view, "确定要删除所有邮件吗?", MsgWindow.MsgMode.OkAndCancel)
- msg_tip.onOk:Add(function()
+ msg_tip.onOk:Add(function()
self:DelAllMail()
end)
msg_tip:Show()
@@ -45,63 +45,64 @@ function M:GetMailData(index)
local fgCtr = ControllerManager.GetController(NewGroupController)
fgCtr:FG_GetMailList(self.curGroup.id, DataManager.SelfUser.account_id, index, 20, function(res)
ViewUtil.CloseModalWait()
- if res.ReturnCode == 0 then
- if #res.Data.mail_list > 0 then
- list_concat(self.mail_data, res.Data.mail_list)
- self.lst_mail.numItems = #self.mail_data
- end
- else
+ if res.ReturnCode == 0 then
+ if #res.Data.mail_list > 0 then
+ list_concat(self.mail_data, res.Data.mail_list)
+ self.lst_mail.numItems = #self.mail_data
+ end
+ else
ViewUtil.ErrorTip(res.ReturnCode, "获取邮件列表失败")
- end
- end)
+ end
+ end)
end
function M:DelAllMail()
- ViewUtil.ShowModalWait(nil)
- local fgCtr = ControllerManager.GetController(NewGroupController)
- fgCtr:FG_DelAllMail(self.curGroup.id, DataManager.SelfUser.account_id, function(res)
+ ViewUtil.ShowModalWait(nil)
+ local fgCtr = ControllerManager.GetController(NewGroupController)
+ fgCtr:FG_DelAllMail(self.curGroup.id, DataManager.SelfUser.account_id, function(res)
ViewUtil.CloseModalWait()
- if res.ReturnCode == 0 then
- self.mail_data = {}
- self.lst_mail.numItems = 0
- else
+ if res.ReturnCode == 0 then
+ self.mail_data = {}
+ self.lst_mail.numItems = 0
+ else
ViewUtil.ErrorTip(res.ReturnCode, "删除邮件失败")
- end
- end)
+ end
+ end)
end
function M:OnRenderItem(index, obj)
- local tex_title = obj:GetChild("tex_title")
- local tex_content = obj:GetChild("tex_content")
- local data = json.decode(self.mail_data[index + 1])
- ImageLoad.Load(data.headurl, obj:GetChild("btn_head")._iconObject, self.class)
- local nick = data.nick
- local id = data.mgr_id
- local hp = d2ad(data.hp)
- if data.type == 1 then
- local str_lev = data.lev == 3 and "合伙人" or "管理员"
- local act = hp >= 0 and "给您增加了" or "扣除了您"
- tex_title.text = "消息内容为:"--string.format("%s(%s) %s%s积分", nick, id, act, math.abs(hp))
- tex_content.text = string.format("%s [color=#08a446]%s[/color](%s) %s[color=#08a446] %s [/color]积分", str_lev, nick, id, act, math.abs(hp))
- else
- tex_title.text = "消息内容为:"--string.format("%s(%s) 转账给您%s积分", nick, id, math.abs(hp))
- tex_content.text = string.format("[color=#08a446]%s[/color](%s) 转账给您[color=#08a446] %s [/color]积分", nick, id, math.abs(hp))
- end
- obj:GetChild("tex_data").text = os.date("%Y-%m-%d %H:%M", data.time)
+ local tex_title = obj:GetChild("tex_title")
+ local tex_content = obj:GetChild("tex_content")
+ local data = json.decode(self.mail_data[index + 1])
+ ImageLoad.Load(data.headurl, obj:GetChild("btn_head")._iconObject, self.class)
+ local nick = data.nick
+ local id = data.mgr_id
+ local hp = d2ad(data.hp)
+ if data.type == 1 then
+ local str_lev = data.lev == 3 and "合伙人" or "管理员"
+ local act = hp >= 0 and "给您增加了" or "扣除了您"
+ tex_title.text = "消息内容为:" --string.format("%s(%s) %s%s积分", nick, id, act, math.abs(hp))
+ tex_content.text = string.format("%s [color=#08a446]%s[/color](%s) %s[color=#08a446] %s [/color]积分", str_lev,
+ nick, id, act, math.abs(hp))
+ else
+ tex_title.text = "消息内容为:" --string.format("%s(%s) 转账给您%s积分", nick, id, math.abs(hp))
+ tex_content.text = string.format("[color=#08a446]%s[/color](%s) 转账给您[color=#08a446] %s [/color]积分", nick, id,
+ math.abs(hp))
+ end
+ obj:GetChild("tex_data").text = os.date("%Y-%m-%d %H:%M", data.time)
end
function M:SetCallback(callback)
self.callback = callback
end
-
-- 销毁窗口
function M:Destroy(remove_map)
if self.callback then
self.callback()
end
- BaseWindow.Destroy(self,remove_map)
+ BaseWindow.Destroy(self, remove_map)
ImageLoad.Clear(self.class)
end
-return M
\ No newline at end of file
+return M
diff --git a/wb_new_ui/.objs/fonts.json b/wb_new_ui/.objs/fonts.json
index ab35e696..2455e9f8 100644
--- a/wb_new_ui/.objs/fonts.json
+++ b/wb_new_ui/.objs/fonts.json
@@ -56,3 +56,4 @@ ui://4skil1l6vmtu1l8
ui://4skil1l6piv91ln
ui://4skil1l6jsw9117
ui://m7iejg46eany7iev
+ui://m7iejg46hz877im7
diff --git a/wb_new_ui/.objs/metas/2d9xdj6z/lumrgj.info b/wb_new_ui/.objs/metas/2d9xdj6z/lumrgj.info
index 64568734..82a50b32 100644
--- a/wb_new_ui/.objs/metas/2d9xdj6z/lumrgj.info
+++ b/wb_new_ui/.objs/metas/2d9xdj6z/lumrgj.info
@@ -1,19 +1,22 @@
{
"objectStatus": {
- "n103_lumr": {
- "hidden": true
- },
- "n120_t3ax": {
- "hidden": true
- },
"n117_xbqu": {
"hidden": true
},
"n112_ker3": {
"hidden": true
},
+ "n138_m16m": {
+ "hidden": true
+ },
"n137_csp4": {
"hidden": true
+ },
+ "n120_t3ax": {
+ "hidden": true
+ },
+ "n103_lumr": {
+ "hidden": true
}
},
"adaptiveTest": true,
diff --git a/wb_new_ui/.objs/metas/m7iejg46/hsbhhjn.info b/wb_new_ui/.objs/metas/m7iejg46/hsbhhjn.info
index c10555a7..4171dcf4 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/hsbhhjn.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/hsbhhjn.info
@@ -1,13 +1,10 @@
{
"objectStatus": {
- "n93_t8gf": {
+ "n87_csp4": {
"hidden": true
},
"n79_ovii": {
"hidden": true
- },
- "n87_csp4": {
- "hidden": true
}
},
"adaptiveTest": true,
diff --git a/wb_new_ui/.objs/metas/m7iejg46/ilon7ias.info b/wb_new_ui/.objs/metas/m7iejg46/ilon7ias.info
index d85e1b98..06ae1e3c 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/ilon7ias.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/ilon7ias.info
@@ -1,10 +1,13 @@
{
"objectStatus": {
+ "n69_jd7v": {
+ "hidden": true
+ },
"n145_imp5": {
"hidden": true
},
- "n132_z384": {
- "hidden": true
+ "n46_tqi8": {
+ "collapsed": true
},
"n35_rpaz": {
"hidden": true
@@ -12,7 +15,7 @@
"n33_rpaz": {
"hidden": true
},
- "n69_jd7v": {
+ "n132_z384": {
"hidden": true
}
}
diff --git a/wb_new_ui/.objs/metas/m7iejg46/ilon7ibl.info b/wb_new_ui/.objs/metas/m7iejg46/ilon7ibl.info
index c26de666..839671a7 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/ilon7ibl.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/ilon7ibl.info
@@ -1,8 +1,5 @@
{
"objectStatus": {
- "n81_jr1l": {
- "hidden": true
- },
"n80_jr1l": {
"hidden": true
},
@@ -12,8 +9,14 @@
"n96_imp5": {
"hidden": true
},
+ "n104_nunk": {
+ "hidden": true
+ },
"n91_j5s5": {
"hidden": true
+ },
+ "n81_jr1l": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/imp57igy.info b/wb_new_ui/.objs/metas/m7iejg46/imp57igy.info
index 23ec9e08..03c87dcb 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/imp57igy.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/imp57igy.info
@@ -1,8 +1,14 @@
{
"objectStatus": {
+ "n49_jd7v": {
+ "collapsed": true
+ },
"n35_rpaz": {
"collapsed": true
},
+ "n45_tqi8": {
+ "collapsed": true
+ },
"n33_rpaz": {
"collapsed": true
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/imp57ihp.info b/wb_new_ui/.objs/metas/m7iejg46/imp57ihp.info
index 8556f7f5..26667d5b 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/imp57ihp.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/imp57ihp.info
@@ -3,14 +3,17 @@
"n86_kwi0": {
"hidden": true
},
- "n197_imp5": {
+ "n134_lcv1": {
"collapsed": true
},
- "n83_kwi0": {
+ "n197_imp5": {
"collapsed": true
},
"n157_sbng": {
"hidden": true
+ },
+ "n118_l679": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/jgh8hwv.info b/wb_new_ui/.objs/metas/m7iejg46/jgh8hwv.info
index 4a17285b..7315c7f1 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/jgh8hwv.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/jgh8hwv.info
@@ -6,7 +6,10 @@
"n213_yvb2": {
"hidden": true
},
- "n181_b8zx": {
+ "n212_yvb2": {
+ "hidden": true
+ },
+ "n220_yvb2": {
"hidden": true
},
"n184_b5ny": {
@@ -18,7 +21,7 @@
"n214_yvb2": {
"hidden": true
},
- "n212_yvb2": {
+ "n181_b8zx": {
"hidden": true
}
},
diff --git a/wb_new_ui/.objs/metas/m7iejg46/kk3uhro.info b/wb_new_ui/.objs/metas/m7iejg46/kk3uhro.info
index bb44d701..b757f528 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/kk3uhro.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/kk3uhro.info
@@ -2,6 +2,9 @@
"objectStatus": {
"n35_p747": {
"hidden": true
+ },
+ "n33_p747": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/kwi0hm5.info b/wb_new_ui/.objs/metas/m7iejg46/kwi0hm5.info
index ce9da658..04ec7fab 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/kwi0hm5.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/kwi0hm5.info
@@ -3,12 +3,12 @@
"n118_fcju": {
"hidden": true
},
- "n104_kwi0": {
- "collapsed": true
- },
"n115_dfkc": {
"hidden": true
},
+ "n120_t8gf": {
+ "hidden": true
+ },
"n108_kwi0": {
"hidden": true
}
diff --git a/wb_new_ui/.objs/metas/m7iejg46/kwi0hma.info b/wb_new_ui/.objs/metas/m7iejg46/kwi0hma.info
index 64925a0e..9cf90f1e 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/kwi0hma.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/kwi0hma.info
@@ -1,8 +1,5 @@
{
"objectStatus": {
- "n80_7b4q": {
- "hidden": true
- },
"n82_et16": {
"hidden": true
},
@@ -12,8 +9,11 @@
"n81_7b4q": {
"hidden": true
},
- "n75_s9vt": {
- "collapsed": true
+ "n80_7b4q": {
+ "hidden": true
+ },
+ "n88_vyn3": {
+ "hidden": true
},
"n39_gltd": {
"hidden": true
diff --git a/wb_new_ui/.objs/metas/m7iejg46/l679hws.info b/wb_new_ui/.objs/metas/m7iejg46/l679hws.info
index 667cb6bb..72174507 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/l679hws.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/l679hws.info
@@ -1,7 +1,7 @@
{
"objectStatus": {
- "n86_kwi0": {
- "hidden": true
+ "n121_l679": {
+ "collapsed": true
},
"n142_m16m": {
"hidden": true
@@ -9,11 +9,14 @@
"n115_l679": {
"hidden": true
},
- "n121_l679": {
- "collapsed": true
- },
"n122_j120": {
"hidden": true
+ },
+ "n123_omkm": {
+ "hidden": true
+ },
+ "n86_kwi0": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/r0qx7i6u.info b/wb_new_ui/.objs/metas/m7iejg46/r0qx7i6u.info
index 9e26dfee..667057f8 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/r0qx7i6u.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/r0qx7i6u.info
@@ -1 +1,7 @@
-{}
\ No newline at end of file
+{
+ "objectStatus": {
+ "n33_p747": {
+ "hidden": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/t1hqhy5.info b/wb_new_ui/.objs/metas/m7iejg46/t1hqhy5.info
index 3da5c3e9..9e26dfee 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/t1hqhy5.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/t1hqhy5.info
@@ -1,7 +1 @@
-{
- "objectStatus": {
- "n5_yvb2": {
- "hidden": true
- }
- }
-}
\ No newline at end of file
+{}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/tqi8hwa.info b/wb_new_ui/.objs/metas/m7iejg46/tqi8hwa.info
index dc5fdc09..e6f1e907 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/tqi8hwa.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/tqi8hwa.info
@@ -2,9 +2,6 @@
"objectStatus": {
"n68_tqi8": {
"hidden": true
- },
- "n83_cvc8": {
- "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/yvb27ik0.info b/wb_new_ui/.objs/metas/m7iejg46/yvb27ik0.info
index 97c320ee..04eb3948 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/yvb27ik0.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/yvb27ik0.info
@@ -2,6 +2,9 @@
"objectStatus": {
"n87_csp4": {
"hidden": true
+ },
+ "n79_ovii": {
+ "hidden": true
}
}
}
\ No newline at end of file
diff --git a/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info b/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
index 1fa1ff5e..def0c807 100644
--- a/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
+++ b/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info
@@ -3,12 +3,12 @@
"n69_jd7v": {
"hidden": true
},
- "n46_tqi8": {
- "locked": true
- },
"n142_ufim": {
"hidden": true
},
+ "n68_jd7v": {
+ "collapsed": true
+ },
"n86_t1hq": {
"hidden": true
},
diff --git a/wb_new_ui/.objs/workspace.json b/wb_new_ui/.objs/workspace.json
index 8d5f41f3..178ada53 100644
--- a/wb_new_ui/.objs/workspace.json
+++ b/wb_new_ui/.objs/workspace.json
@@ -1,27 +1,52 @@
{
- "libview.firstColumnWidth": 522,
+ "libview.firstColumnWidth": 428,
"libview.iconScale": 0,
"doc.openedDocs": [
+ "ui://m7iejg46ilon7ias",
+ "ui://m7iejg4610snh5j",
+ "ui://m7iejg46ilon7i9l",
+ "ui://m7iejg46ilon7i9m",
+ "ui://m7iejg46iaes7idc",
+ "ui://m7iejg46iaes7idk",
+ "ui://m7iejg46hwww2f",
+ "ui://m7iejg46iaes7idb",
+ "ui://m7iejg46iaes7idj",
+ "ui://m7iejg46yvb27ik0",
+ "ui://m7iejg46mpllhuq",
+ "ui://2zlli80mw9te0",
+ "ui://0khx14aryvb27i4z",
+ "ui://0khx14aryvb27i51",
+ "ui://0khx14are0py2",
+ "ui://27vd145bl0lz9",
"ui://m7iejg46hsbhhjn",
- "ui://m7iejg46t1hqhxw",
"ui://m7iejg46t1hqhy5",
- "ui://m7iejg46kwi0hm5",
- "ui://m7iejg46l679hwn",
"ui://m7iejg46gojuhh5",
- "ui://m7iejg46l679hws"
+ "ui://m7iejg46jgh8hwv",
+ "ui://m7iejg46avqi7ijp",
+ "ui://m7iejg46r0qx7i6v",
+ "ui://m7iejg46imp57ih3",
+ "ui://m7iejg46imp57igy",
+ "ui://m7iejg46ilon7ibl",
+ "ui://m7iejg46imp57ihp",
+ "ui://m7iejg46kwi0hma",
+ "ui://m7iejg46ilon7ia2"
],
"auxline1": true,
"canvasColor": 10066329,
"auxline2": true,
- "doc.activeDoc": "ui://m7iejg46hsbhhjn",
+ "doc.activeDoc": "ui://m7iejg46hwww2f",
"libview.twoColumn": false,
"libview.expandedNodes": [
"m7iejg46",
"/",
"m7iejg46",
- "/font/",
+ "/component/",
"m7iejg46",
- "/images/"
+ "/component/Lst_room/",
+ "m7iejg46",
+ "/images/",
+ "m7iejg46",
+ "/images/room/"
],
"snapToGrid": true,
"backgroundColor": 6710886,
diff --git a/wb_new_ui/assets/Common/Gcm_Window_Full.xml b/wb_new_ui/assets/Common/Gcm_Window_Full.xml
index b3268d26..a1028192 100644
--- a/wb_new_ui/assets/Common/Gcm_Window_Full.xml
+++ b/wb_new_ui/assets/Common/Gcm_Window_Full.xml
@@ -7,7 +7,7 @@
-
+
diff --git a/wb_new_ui/assets/Lobby/SettingWindow1.xml b/wb_new_ui/assets/Lobby/SettingWindow1.xml
index e092b42d..3a5e1324 100644
--- a/wb_new_ui/assets/Lobby/SettingWindow1.xml
+++ b/wb_new_ui/assets/Lobby/SettingWindow1.xml
@@ -1,10 +1,10 @@
-
-
-
-
+
+
+
+
@@ -13,12 +13,11 @@
-
-
+
+
-
-
+
diff --git a/wb_new_ui/assets/Lobby/component/Group 749.png b/wb_new_ui/assets/Lobby/component/Group 749.png
new file mode 100644
index 00000000..25092c0e
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/Group 749.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Rectangle 343.png b/wb_new_ui/assets/Lobby/component/Rectangle 343.png
new file mode 100644
index 00000000..627f4e5c
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/Rectangle 343.png differ
diff --git a/wb_new_ui/assets/Lobby/component/Win_BaseWindow_H588.xml b/wb_new_ui/assets/Lobby/component/Win_BaseWindow_H588.xml
new file mode 100644
index 00000000..7889e6c2
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/component/Win_BaseWindow_H588.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/group/group.xml b/wb_new_ui/assets/Lobby/component/group/group.xml
index af4e848b..f2eb49da 100644
--- a/wb_new_ui/assets/Lobby/component/group/group.xml
+++ b/wb_new_ui/assets/Lobby/component/group/group.xml
@@ -1,7 +1,7 @@
-
+
@@ -9,7 +9,7 @@
-
+
@@ -18,16 +18,16 @@
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Lobby/component/user_info/UserInfo.xml b/wb_new_ui/assets/Lobby/component/user_info/UserInfo.xml
index 16dd9b31..aa8f2264 100644
--- a/wb_new_ui/assets/Lobby/component/user_info/UserInfo.xml
+++ b/wb_new_ui/assets/Lobby/component/user_info/UserInfo.xml
@@ -1,36 +1,33 @@
-
+
-
-
-
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
@@ -44,7 +41,7 @@
-
+
diff --git a/wb_new_ui/assets/Lobby/images/new/gerenxinxi.png b/wb_new_ui/assets/Lobby/images/new/gerenxinxi.png
new file mode 100644
index 00000000..29e50277
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/new/gerenxinxi.png differ
diff --git a/wb_new_ui/assets/Lobby/images/new/luxiang.png b/wb_new_ui/assets/Lobby/images/new/luxiang.png
new file mode 100644
index 00000000..95be7b12
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/new/luxiang.png differ
diff --git a/wb_new_ui/assets/Lobby/images/new/shezhi.png b/wb_new_ui/assets/Lobby/images/new/shezhi.png
new file mode 100644
index 00000000..23f37065
Binary files /dev/null and b/wb_new_ui/assets/Lobby/images/new/shezhi.png differ
diff --git a/wb_new_ui/assets/Lobby/package.xml b/wb_new_ui/assets/Lobby/package.xml
index d46a1e76..ff86dfca 100644
--- a/wb_new_ui/assets/Lobby/package.xml
+++ b/wb_new_ui/assets/Lobby/package.xml
@@ -681,6 +681,12 @@
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/Win_Banklog.xml b/wb_new_ui/assets/NewGroup/Win_Banklog.xml
index 3093cc0a..c1c5da51 100644
--- a/wb_new_ui/assets/NewGroup/Win_Banklog.xml
+++ b/wb_new_ui/assets/NewGroup/Win_Banklog.xml
@@ -1,13 +1,14 @@
-
-
-
-
-
+
+
-
+
+
+
+
+
@@ -18,19 +19,20 @@
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Win_Mail.xml b/wb_new_ui/assets/NewGroup/Win_Mail.xml
index fdf3bca0..2a3b14ae 100644
--- a/wb_new_ui/assets/NewGroup/Win_Mail.xml
+++ b/wb_new_ui/assets/NewGroup/Win_Mail.xml
@@ -1,10 +1,11 @@
-
+
-
-
-
-
+
+
+
+
+
@@ -12,11 +13,11 @@
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_ManagerView.xml b/wb_new_ui/assets/NewGroup/Win_ManagerView.xml
index f6b0a751..4010a815 100644
--- a/wb_new_ui/assets/NewGroup/Win_ManagerView.xml
+++ b/wb_new_ui/assets/NewGroup/Win_ManagerView.xml
@@ -5,12 +5,13 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -19,10 +20,10 @@
-
+
-
+
@@ -30,7 +31,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_ManagerView_old.xml b/wb_new_ui/assets/NewGroup/Win_ManagerView_old.xml
index 6654d4a5..cd107c08 100644
--- a/wb_new_ui/assets/NewGroup/Win_ManagerView_old.xml
+++ b/wb_new_ui/assets/NewGroup/Win_ManagerView_old.xml
@@ -5,14 +5,15 @@
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -24,7 +25,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_PartnerRewards.xml b/wb_new_ui/assets/NewGroup/Win_PartnerRewards.xml
index 896b83e1..1f4e1819 100644
--- a/wb_new_ui/assets/NewGroup/Win_PartnerRewards.xml
+++ b/wb_new_ui/assets/NewGroup/Win_PartnerRewards.xml
@@ -1,11 +1,13 @@
-
+
-
-
-
-
+
+
+
+
+
+
@@ -14,19 +16,19 @@
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Win_PlayerInfo.xml b/wb_new_ui/assets/NewGroup/Win_PlayerInfo.xml
index 2be8e57c..23bb514b 100644
--- a/wb_new_ui/assets/NewGroup/Win_PlayerInfo.xml
+++ b/wb_new_ui/assets/NewGroup/Win_PlayerInfo.xml
@@ -1,45 +1,45 @@
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -47,7 +47,7 @@
-
+
diff --git a/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
index 1a1153f3..7aa7ea96 100644
--- a/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
+++ b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd.xml
@@ -3,10 +3,11 @@
-
-
-
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd2.xml b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd2.xml
index 416166ca..590ba645 100644
--- a/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd2.xml
+++ b/wb_new_ui/assets/NewGroup/Win_PlayerInfoForAdd2.xml
@@ -3,9 +3,10 @@
-
-
-
+
+
+
+
@@ -18,21 +19,21 @@
-
+
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Win_SelectGames.xml b/wb_new_ui/assets/NewGroup/Win_SelectGames.xml
index 5afa4064..0d0f80b4 100644
--- a/wb_new_ui/assets/NewGroup/Win_SelectGames.xml
+++ b/wb_new_ui/assets/NewGroup/Win_SelectGames.xml
@@ -1,8 +1,11 @@
-
+
-
-
+
+
+
+
+
@@ -10,14 +13,13 @@
-
-
-
+
+
+
-
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Win_TakeHp.xml b/wb_new_ui/assets/NewGroup/Win_TakeHp.xml
index 5adb2f67..ffdf98b4 100644
--- a/wb_new_ui/assets/NewGroup/Win_TakeHp.xml
+++ b/wb_new_ui/assets/NewGroup/Win_TakeHp.xml
@@ -7,59 +7,59 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/Win_Takelog.xml b/wb_new_ui/assets/NewGroup/Win_Takelog.xml
index ea85f459..2373d677 100644
--- a/wb_new_ui/assets/NewGroup/Win_Takelog.xml
+++ b/wb_new_ui/assets/NewGroup/Win_Takelog.xml
@@ -1,11 +1,12 @@
-
-
-
-
-
+
+
+
+
+
+
@@ -16,19 +17,20 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/Win_bxx.xml b/wb_new_ui/assets/NewGroup/Win_bxx.xml
index b9f9dc0f..3c8b6c00 100644
--- a/wb_new_ui/assets/NewGroup/Win_bxx.xml
+++ b/wb_new_ui/assets/NewGroup/Win_bxx.xml
@@ -3,22 +3,23 @@
-
-
-
+
+
+
+
-
+
-
+
-
-
-
-
+
+
+
+
@@ -28,11 +29,11 @@
-
-
+
+
-
-
+
+
diff --git a/wb_new_ui/assets/NewGroup/component/nav/Btn_menu_v.xml b/wb_new_ui/assets/NewGroup/component/nav/Btn_menu_v.xml
index 251f195b..fb6c18b8 100644
--- a/wb_new_ui/assets/NewGroup/component/nav/Btn_menu_v.xml
+++ b/wb_new_ui/assets/NewGroup/component/nav/Btn_menu_v.xml
@@ -2,13 +2,18 @@
-
-
+
+
-
-
+
+
+
+
+
+
+
+
-
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/component/nav/Group 907.png b/wb_new_ui/assets/NewGroup/component/nav/Group 907.png
new file mode 100644
index 00000000..61fecd6a
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/component/nav/Group 907.png differ
diff --git a/wb_new_ui/assets/NewGroup/component/nav/guanbi.png b/wb_new_ui/assets/NewGroup/component/nav/guanbi.png
index a3c27521..a55abf78 100644
Binary files a/wb_new_ui/assets/NewGroup/component/nav/guanbi.png and b/wb_new_ui/assets/NewGroup/component/nav/guanbi.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/groupMgrFont2.fnt b/wb_new_ui/assets/NewGroup/font/font2/groupMgrFont2.fnt
new file mode 100644
index 00000000..2b82faec
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/font/font2/groupMgrFont2.fnt
@@ -0,0 +1,28 @@
+info size=28 resizable=true colored=true
+char id=34920 img=hz877ins xoffset=0 yoffset=0 xadvance=0
+char id=38271 img=hz877ioi xoffset=0 yoffset=0 xadvance=0
+char id=25104 img=hz877iog xoffset=0 yoffset=0 xadvance=0
+char id=20986 img=hz877iof xoffset=0 yoffset=0 xadvance=0
+char id=38431 img=hz877ioe xoffset=0 yoffset=0 xadvance=0
+char id=27861 img=hz877iod xoffset=0 yoffset=0 xadvance=0
+char id=25151 img=hz877ioc xoffset=0 yoffset=0 xadvance=0
+char id=20998 img=hz877iob xoffset=0 yoffset=0 xadvance=0
+char id=20010 img=hz877ioa xoffset=0 yoffset=0 xadvance=0
+char id=31215 img=hz877io9 xoffset=0 yoffset=0 xadvance=0
+char id=32489 img=hz877io6 xoffset=0 yoffset=0 xadvance=0
+char id=35745 img=hz877io8 xoffset=0 yoffset=0 xadvance=0
+char id=35760 img=hz877io7 xoffset=0 yoffset=0 xadvance=0
+char id=38388 img=hz877ioh xoffset=0 yoffset=0 xadvance=0
+char id=21015 img=hz877io5 xoffset=0 yoffset=0 xadvance=0
+char id=24405 img=hz877io3 xoffset=0 yoffset=0 xadvance=0
+char id=25490 img=hz877io2 xoffset=0 yoffset=0 xadvance=0
+char id=20146 img=hz877io1 xoffset=0 yoffset=0 xadvance=0
+char id=22280 img=hz877io0 xoffset=0 yoffset=0 xadvance=0
+char id=20154 img=hz877inz xoffset=0 yoffset=0 xadvance=0
+char id=36386 img=hz877iny xoffset=0 yoffset=0 xadvance=0
+char id=32479 img=hz877inx xoffset=0 yoffset=0 xadvance=0
+char id=29609 img=hz877inw xoffset=0 yoffset=0 xadvance=0
+char id=34892 img=hz877inv xoffset=0 yoffset=0 xadvance=0
+char id=21451 img=hz877inu xoffset=0 yoffset=0 xadvance=0
+char id=21592 img=hz877int xoffset=0 yoffset=0 xadvance=0
+char id=25112 img=hz877io4 xoffset=0 yoffset=0 xadvance=0
diff --git a/wb_new_ui/assets/NewGroup/font/font2/个.png b/wb_new_ui/assets/NewGroup/font/font2/个.png
new file mode 100644
index 00000000..cbb6e5ee
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/个.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/亲.png b/wb_new_ui/assets/NewGroup/font/font2/亲.png
new file mode 100644
index 00000000..df6640f8
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/亲.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/人.png b/wb_new_ui/assets/NewGroup/font/font2/人.png
new file mode 100644
index 00000000..5498d013
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/人.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/出.png b/wb_new_ui/assets/NewGroup/font/font2/出.png
new file mode 100644
index 00000000..cff002e5
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/出.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/分.png b/wb_new_ui/assets/NewGroup/font/font2/分.png
new file mode 100644
index 00000000..1ebca50e
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/分.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/列.png b/wb_new_ui/assets/NewGroup/font/font2/列.png
new file mode 100644
index 00000000..5449e67b
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/列.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/友.png b/wb_new_ui/assets/NewGroup/font/font2/友.png
new file mode 100644
index 00000000..ba89504e
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/友.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/员.png b/wb_new_ui/assets/NewGroup/font/font2/员.png
new file mode 100644
index 00000000..95f141b7
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/员.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/圈.png b/wb_new_ui/assets/NewGroup/font/font2/圈.png
new file mode 100644
index 00000000..af0f4e86
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/圈.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/录.png b/wb_new_ui/assets/NewGroup/font/font2/录.png
new file mode 100644
index 00000000..ba48a5b2
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/录.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/成.png b/wb_new_ui/assets/NewGroup/font/font2/成.png
new file mode 100644
index 00000000..69c972f4
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/成.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/战.png b/wb_new_ui/assets/NewGroup/font/font2/战.png
new file mode 100644
index 00000000..e2e4f379
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/战.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/房.png b/wb_new_ui/assets/NewGroup/font/font2/房.png
new file mode 100644
index 00000000..5c76a83d
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/房.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/排.png b/wb_new_ui/assets/NewGroup/font/font2/排.png
new file mode 100644
index 00000000..97be5eea
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/排.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/法.png b/wb_new_ui/assets/NewGroup/font/font2/法.png
new file mode 100644
index 00000000..c0054c7a
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/法.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/玩.png b/wb_new_ui/assets/NewGroup/font/font2/玩.png
new file mode 100644
index 00000000..cf92b035
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/玩.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/积.png b/wb_new_ui/assets/NewGroup/font/font2/积.png
new file mode 100644
index 00000000..5de73b8b
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/积.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/统.png b/wb_new_ui/assets/NewGroup/font/font2/统.png
new file mode 100644
index 00000000..bc431f87
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/统.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/绩.png b/wb_new_ui/assets/NewGroup/font/font2/绩.png
new file mode 100644
index 00000000..1e660cb7
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/绩.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/行.png b/wb_new_ui/assets/NewGroup/font/font2/行.png
new file mode 100644
index 00000000..9e854eae
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/行.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/表.png b/wb_new_ui/assets/NewGroup/font/font2/表.png
new file mode 100644
index 00000000..3272bcef
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/表.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/计.png b/wb_new_ui/assets/NewGroup/font/font2/计.png
new file mode 100644
index 00000000..0bf98e73
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/计.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/记.png b/wb_new_ui/assets/NewGroup/font/font2/记.png
new file mode 100644
index 00000000..7c40f09f
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/记.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/踢.png b/wb_new_ui/assets/NewGroup/font/font2/踢.png
new file mode 100644
index 00000000..12c9cfc6
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/踢.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/长.png b/wb_new_ui/assets/NewGroup/font/font2/长.png
new file mode 100644
index 00000000..14f0976f
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/长.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/间.png b/wb_new_ui/assets/NewGroup/font/font2/间.png
new file mode 100644
index 00000000..557eab86
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/间.png differ
diff --git a/wb_new_ui/assets/NewGroup/font/font2/队.png b/wb_new_ui/assets/NewGroup/font/font2/队.png
new file mode 100644
index 00000000..56232c90
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/font/font2/队.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/Group 749.png b/wb_new_ui/assets/NewGroup/images/Group 749.png
new file mode 100644
index 00000000..25092c0e
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/Group 749.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/Group 759.png b/wb_new_ui/assets/NewGroup/images/Group 759.png
deleted file mode 100644
index 69c0cd89..00000000
Binary files a/wb_new_ui/assets/NewGroup/images/Group 759.png and /dev/null differ
diff --git a/wb_new_ui/assets/NewGroup/images/Group 778.png b/wb_new_ui/assets/NewGroup/images/Group 778.png
deleted file mode 100644
index f5bb9129..00000000
Binary files a/wb_new_ui/assets/NewGroup/images/Group 778.png and /dev/null differ
diff --git a/wb_new_ui/assets/NewGroup/images/Rectangle 343.png b/wb_new_ui/assets/NewGroup/images/Rectangle 343.png
index dbfbe779..627f4e5c 100644
Binary files a/wb_new_ui/assets/NewGroup/images/Rectangle 343.png and b/wb_new_ui/assets/NewGroup/images/Rectangle 343.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/Rectangle 351.png b/wb_new_ui/assets/NewGroup/images/Rectangle 351.png
new file mode 100644
index 00000000..15ba02fa
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/Rectangle 351.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/Rectangle 444.png b/wb_new_ui/assets/NewGroup/images/Rectangle 444.png
index cdb90efe..497bd38b 100644
Binary files a/wb_new_ui/assets/NewGroup/images/Rectangle 444.png and b/wb_new_ui/assets/NewGroup/images/Rectangle 444.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/Rectangle 445.png b/wb_new_ui/assets/NewGroup/images/Rectangle 445.png
new file mode 100644
index 00000000..3b2f9fc1
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/Rectangle 445.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/baoxianxiang.png b/wb_new_ui/assets/NewGroup/images/baoxianxiang.png
new file mode 100644
index 00000000..d6e9a84b
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/baoxianxiang.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/baoxianxiangjilu.png b/wb_new_ui/assets/NewGroup/images/baoxianxiangjilu.png
new file mode 100644
index 00000000..081d0da2
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/baoxianxiangjilu.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/caozuoshezhi.png b/wb_new_ui/assets/NewGroup/images/caozuoshezhi.png
new file mode 100644
index 00000000..7b191dbe
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/caozuoshezhi.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/chengyuan.png b/wb_new_ui/assets/NewGroup/images/chengyuan.png
new file mode 100644
index 00000000..127e1ebc
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/chengyuan.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/fangjianjilu.png b/wb_new_ui/assets/NewGroup/images/fangjianjilu.png
new file mode 100644
index 00000000..df695e42
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/fangjianjilu.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/gerenxinxi.png b/wb_new_ui/assets/NewGroup/images/gerenxinxi.png
new file mode 100644
index 00000000..29e50277
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/gerenxinxi.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/gerenzhanji.png b/wb_new_ui/assets/NewGroup/images/gerenzhanji.png
new file mode 100644
index 00000000..2c140e3e
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/gerenzhanji.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/jifen/Group 800.png b/wb_new_ui/assets/NewGroup/images/jifen/Group 800.png
index 8673732f..32ec51be 100644
Binary files a/wb_new_ui/assets/NewGroup/images/jifen/Group 800.png and b/wb_new_ui/assets/NewGroup/images/jifen/Group 800.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/jifen/Group 801.png b/wb_new_ui/assets/NewGroup/images/jifen/Group 801.png
index 217e743c..f2417ba3 100644
Binary files a/wb_new_ui/assets/NewGroup/images/jifen/Group 801.png and b/wb_new_ui/assets/NewGroup/images/jifen/Group 801.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/jifen/Group 802.png b/wb_new_ui/assets/NewGroup/images/jifen/Group 802.png
index 49384049..66726adc 100644
Binary files a/wb_new_ui/assets/NewGroup/images/jifen/Group 802.png and b/wb_new_ui/assets/NewGroup/images/jifen/Group 802.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/jifen/Group 803.png b/wb_new_ui/assets/NewGroup/images/jifen/Group 803.png
index d81c4d91..1c12e9fb 100644
Binary files a/wb_new_ui/assets/NewGroup/images/jifen/Group 803.png and b/wb_new_ui/assets/NewGroup/images/jifen/Group 803.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/jifen/Group 804.png b/wb_new_ui/assets/NewGroup/images/jifen/Group 804.png
index 53752e2f..11dcb4e8 100644
Binary files a/wb_new_ui/assets/NewGroup/images/jifen/Group 804.png and b/wb_new_ui/assets/NewGroup/images/jifen/Group 804.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/jifenjilu.png b/wb_new_ui/assets/NewGroup/images/jifenjilu.png
new file mode 100644
index 00000000..dac783bf
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/jifenjilu.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/mail/Group 679.png b/wb_new_ui/assets/NewGroup/images/mail/Group 679.png
deleted file mode 100644
index 15c47902..00000000
Binary files a/wb_new_ui/assets/NewGroup/images/mail/Group 679.png and /dev/null differ
diff --git a/wb_new_ui/assets/NewGroup/images/menkanshezhi.png b/wb_new_ui/assets/NewGroup/images/menkanshezhi.png
new file mode 100644
index 00000000..d8cf15d8
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/menkanshezhi.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/pilaozhi.png b/wb_new_ui/assets/NewGroup/images/pilaozhi.png
new file mode 100644
index 00000000..66e04cec
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/pilaozhi.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/quntongji.png b/wb_new_ui/assets/NewGroup/images/quntongji.png
new file mode 100644
index 00000000..56cb8ee9
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/quntongji.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/shezhimenkan.png b/wb_new_ui/assets/NewGroup/images/shezhimenkan.png
new file mode 100644
index 00000000..d9f6e58b
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/shezhimenkan.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/shouyijilu.png b/wb_new_ui/assets/NewGroup/images/shouyijilu.png
new file mode 100644
index 00000000..09479da9
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/shouyijilu.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/tichujilu.png b/wb_new_ui/assets/NewGroup/images/tichujilu.png
new file mode 100644
index 00000000..758b2208
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/tichujilu.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/wanfashezhi.png b/wb_new_ui/assets/NewGroup/images/wanfashezhi.png
new file mode 100644
index 00000000..b3c76647
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/wanfashezhi.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/wanfatongji.png b/wb_new_ui/assets/NewGroup/images/wanfatongji.png
new file mode 100644
index 00000000..39de5865
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/wanfatongji.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/xiajizengsong.png b/wb_new_ui/assets/NewGroup/images/xiajizengsong.png
new file mode 100644
index 00000000..510518ab
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/xiajizengsong.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/xiaoxi.png b/wb_new_ui/assets/NewGroup/images/xiaoxi.png
new file mode 100644
index 00000000..7d742130
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/xiaoxi.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/yaoqing.png b/wb_new_ui/assets/NewGroup/images/yaoqing.png
new file mode 100644
index 00000000..598f8da0
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/yaoqing.png differ
diff --git a/wb_new_ui/assets/NewGroup/images/zhankuang.png b/wb_new_ui/assets/NewGroup/images/zhankuang.png
new file mode 100644
index 00000000..5cb99487
Binary files /dev/null and b/wb_new_ui/assets/NewGroup/images/zhankuang.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
index 850ae214..70157bd0 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberHpList.xml
@@ -4,11 +4,14 @@
-
-
+
+
+
+
+
-
+
@@ -18,7 +21,7 @@
-
+
@@ -28,51 +31,51 @@
-
-
+
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -84,6 +87,6 @@
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberInviteAlone.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberInviteAlone.xml
index c69eafe4..46c192cb 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberInviteAlone.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberInviteAlone.xml
@@ -1,70 +1,73 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
index 8de56fbb..72351dc3 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMemberList1.xml
@@ -1,5 +1,5 @@
-
+
@@ -11,37 +11,40 @@
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
@@ -51,7 +54,7 @@
-
+
@@ -61,19 +64,19 @@
-
-
+
+
-
-
-
+
+
+
-
-
-
+
+
+
@@ -83,74 +86,71 @@
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupMenKang.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupMenKang.xml
index 634b7f0a..edf45db6 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupMenKang.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupMenKang.xml
@@ -5,11 +5,14 @@
-
-
+
+
+
+
+
-
+
@@ -19,7 +22,7 @@
-
+
@@ -29,48 +32,48 @@
-
-
+
+
-
+
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
@@ -82,21 +85,23 @@
-
+
-
-
+
+
+
+
-
-
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList1.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerList1.xml
index 84f173b2..becd037e 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,56 +72,54 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStat.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStat.xml
index 0e9ac2f1..e9b0a2da 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStat.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStat.xml
@@ -1,33 +1,33 @@
-
+
-
+
-
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
@@ -37,48 +37,48 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStatAlone.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStatAlone.xml
index dd9e481d..a284df33 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStatAlone.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPartnerStatAlone.xml
@@ -1,79 +1,83 @@
-
+
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
@@ -81,7 +85,7 @@
-
+
@@ -90,18 +94,18 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml
index 9ccb5eb1..e8126800 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPersonStat.xml
@@ -1,31 +1,32 @@
-
+
-
+
-
-
+
+
+
-
-
+
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
@@ -35,12 +36,12 @@
-
-
+
+
-
+
@@ -49,29 +50,28 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPiLaoZhi.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPiLaoZhi.xml
index ebbf1c2b..e830b945 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPiLaoZhi.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPiLaoZhi.xml
@@ -4,18 +4,19 @@
-
+
-
+
+
-
+
@@ -36,13 +37,13 @@
-
+
-
+
-
+
@@ -50,7 +51,7 @@
-
+
@@ -77,7 +78,7 @@
-
+
@@ -89,8 +90,8 @@
-
-
+
+
@@ -100,13 +101,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml
index 74167d52..9050e29b 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupPlayStat.xml
@@ -1,15 +1,13 @@
-
+
-
-
-
-
+
+
-
+
@@ -35,11 +33,10 @@
-
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml b/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml
index a61bdf76..f31c6a50 100644
--- a/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/View_GroupStat.xml
@@ -1,27 +1,31 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -31,16 +35,16 @@
-
+
-
+
-
+
@@ -50,7 +54,7 @@
-
+
@@ -60,14 +64,14 @@
-
+
-
+
-
+
@@ -76,11 +80,10 @@
-
+
-
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/Win_BaseWindow_H588.xml b/wb_new_ui/assets/NewGroup/mgr/Win_BaseWindow_H588.xml
new file mode 100644
index 00000000..9011cb1c
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/Win_BaseWindow_H588.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/Win_BaseWindow_H698.xml b/wb_new_ui/assets/NewGroup/mgr/Win_BaseWindow_H698.xml
new file mode 100644
index 00000000..f1f039be
--- /dev/null
+++ b/wb_new_ui/assets/NewGroup/mgr/Win_BaseWindow_H698.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/NewGroup/mgr/Win_MemberFagLog.xml b/wb_new_ui/assets/NewGroup/mgr/Win_MemberFagLog.xml
index 8c2fb664..47115ecc 100644
--- a/wb_new_ui/assets/NewGroup/mgr/Win_MemberFagLog.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/Win_MemberFagLog.xml
@@ -1,64 +1,61 @@
-
+
-
+
+
+
+
+
-
-
-
-
-
-
-
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -70,66 +67,67 @@
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
+
-
-
+
+
@@ -144,26 +142,26 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/component/reward/item_partner_rewards.xml b/wb_new_ui/assets/NewGroup/mgr/component/reward/item_partner_rewards.xml
index 261d43da..c9dc61e9 100644
--- a/wb_new_ui/assets/NewGroup/mgr/component/reward/item_partner_rewards.xml
+++ b/wb_new_ui/assets/NewGroup/mgr/component/reward/item_partner_rewards.xml
@@ -3,12 +3,21 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 515.png b/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 515.png
deleted file mode 100644
index 70b7820c..00000000
Binary files a/wb_new_ui/assets/NewGroup/mgr/imgs/addMenberAlone/Group 515.png and /dev/null differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 448.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 448.png
index a3c27521..a55abf78 100644
Binary files a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 448.png and b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 448.png differ
diff --git a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 749.png b/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 749.png
deleted file mode 100644
index f38710ad..00000000
Binary files a/wb_new_ui/assets/NewGroup/mgr/imgs/numberHpAlone/Group 749.png and /dev/null differ
diff --git a/wb_new_ui/assets/NewGroup/package.xml b/wb_new_ui/assets/NewGroup/package.xml
index 4b1b8a2f..0f86dd1a 100644
--- a/wb_new_ui/assets/NewGroup/package.xml
+++ b/wb_new_ui/assets/NewGroup/package.xml
@@ -840,7 +840,6 @@
-
@@ -996,7 +995,6 @@
-
@@ -1043,14 +1041,13 @@
-
+
-
@@ -1075,9 +1072,8 @@
-
+
-
@@ -1112,7 +1108,7 @@
-
+
@@ -1175,6 +1171,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Rank/component/DevelopTool/DeveloperPanel.xml b/wb_new_ui/assets/Rank/component/DevelopTool/DeveloperPanel.xml
index 7a440515..e595c85c 100644
--- a/wb_new_ui/assets/Rank/component/DevelopTool/DeveloperPanel.xml
+++ b/wb_new_ui/assets/Rank/component/DevelopTool/DeveloperPanel.xml
@@ -1,56 +1,59 @@
-
+
-
-
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/Rank/component/Group 749.png b/wb_new_ui/assets/Rank/component/Group 749.png
new file mode 100644
index 00000000..25092c0e
Binary files /dev/null and b/wb_new_ui/assets/Rank/component/Group 749.png differ
diff --git a/wb_new_ui/assets/Rank/component/Rectangle 343.png b/wb_new_ui/assets/Rank/component/Rectangle 343.png
new file mode 100644
index 00000000..627f4e5c
Binary files /dev/null and b/wb_new_ui/assets/Rank/component/Rectangle 343.png differ
diff --git a/wb_new_ui/assets/Rank/component/Win_BaseWindow_H588.xml b/wb_new_ui/assets/Rank/component/Win_BaseWindow_H588.xml
new file mode 100644
index 00000000..5e286a1d
--- /dev/null
+++ b/wb_new_ui/assets/Rank/component/Win_BaseWindow_H588.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Rank/images/new/shezhi.png b/wb_new_ui/assets/Rank/images/new/shezhi.png
new file mode 100644
index 00000000..23f37065
Binary files /dev/null and b/wb_new_ui/assets/Rank/images/new/shezhi.png differ
diff --git a/wb_new_ui/assets/Rank/package.xml b/wb_new_ui/assets/Rank/package.xml
index ed9e2dbd..5368be6e 100644
--- a/wb_new_ui/assets/Rank/package.xml
+++ b/wb_new_ui/assets/Rank/package.xml
@@ -62,6 +62,10 @@
+
+
+
+
\ No newline at end of file