diff --git a/lua_probject/base_project/Game/Controller/NewGroupController.lua b/lua_probject/base_project/Game/Controller/NewGroupController.lua index 94f03f10..a4602b54 100644 --- a/lua_probject/base_project/Game/Controller/NewGroupController.lua +++ b/lua_probject/base_project/Game/Controller/NewGroupController.lua @@ -1568,3 +1568,12 @@ function M:FG_Reset_Lock(group_id, tagId, flag, callback) callback(res) end) end + +function M:FG_Get_Partner(group_id, callback) + local _client = ControllerManager.GroupClient + local _data = {} + _data.id = group_id + _client:send(Protocol.WEB_GROUP_GET_PARTNER, _data, function(res) + callback(res) + end) +end diff --git a/lua_probject/base_project/Game/Protocol.lua b/lua_probject/base_project/Game/Protocol.lua index 1a0a3b84..a1ff8a69 100644 --- a/lua_probject/base_project/Game/Protocol.lua +++ b/lua_probject/base_project/Game/Protocol.lua @@ -358,6 +358,9 @@ Protocol = { --群主解除绑定 WEB_GROUP_RESET_LOCK = "group/group_reset_lock", + --获取自己所有下级成员 + WEB_GROUP_GET_PARTNER = "group/get_partner", + -------------- group-mgr -------------------- -- 进入圈子 FGMGR_ENTER_GROUP = "11001", diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupManagerStagView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupManagerStagView.lua index c40a0779..eb1d7524 100644 --- a/lua_probject/base_project/Game/View/NewGroup/GroupManagerStagView.lua +++ b/lua_probject/base_project/Game/View/NewGroup/GroupManagerStagView.lua @@ -7,167 +7,75 @@ function GroupManagerStagView.new(root) setmetatable(M, { __index = root }) local self = setmetatable({}, { __index = M }) self.class = "GroupManagerStagView" - self:Init() - -- self:InitInfo() - return self end function M:Init() self._viewList_partner = self._view:GetChild('lst_partner') - self._data_choosePlayer = { uid = DataManager.SelfUser.account_id, nick = DataManager.SelfUser.nick_name } + self._viewList_partner:SetVirtual() + self._viewList_partner.itemRenderer = handler(self, self.PartnerRender) + self._viewList_partner.onClickItem:Set(handler(self, self.PartnerClick)) + self._data_Players = {} --将外面设置为最外圈页面 self.ctr_index.selectedIndex = #self.page_config + self._view:GetChild('btn_showAll').onClick:Set(handler(self,self.ClickShowAll)) +end + +function M:ClickShowAll() + self.ctr_index.selectedIndex = #self.page_config + local data = self._data_Players[self._viewList_partner.selectedIndex + 1] + self._view_map[#self.page_config + 1]:RefrenRecordData(data) end function M:InitInfo() - self._map_members = {} - self._viewList_partner:RemoveChildren() - local obj = self._viewList_partner:AddItemFromPool() self._ctr_tongji.selectedIndex = 1 - self:PartnerRender( - { uid = DataManager.SelfUser.account_id, nick = DataManager.SelfUser.nick_name }, obj) - -- obj:GetController('show').selectedIndex = 1 - obj.data.selected = true - ViewUtil.ShowModalWait(true, "正在获取成员中", 0.01) - self:RecursionGetNumber1(0, DataManager.SelfUser.account_id, {}) - --将外面设置为最外圈页面20.536 + self:RecursionGetNumber1() self.ctr_index.selectedIndex = #self.page_config - self._data_selectedData = obj end -function M:SetRecursionGetNumber1Info(id, tempTable) - local me = self._map_members[id] - me.data.listInfo = tempTable - me.data.listNum = #tempTable - me.data.childNum = #tempTable - for i = 1, #tempTable do - local obj = me.data.list:AddItemFromPool() - self:PartnerRender(tempTable[i], obj) +function M:PartnerClick(context) + if self.ctr_index.selectedIndex ~= #self.page_config then + self.ctr_index.selectedIndex = #self.page_config end - self:RecursionReSize(me) - self:RecursionSetScrollPannel(me, 0) + local data = self._data_Players[context.sender.selectedIndex + 1] + self._view_map[#self.page_config + 1]:RefrenRecordData(data) end -function M:PartnerRender(data, obj) +function M:PartnerRender(index, obj) + local data = self._data_Players[index + 1] obj:GetChild('text_name').text = string.format("%d", data.uid) obj:GetChild('text_id').text = data.nick - obj:GetChild('text_name1').text = string.format("%d", data.uid) - obj:GetChild('text_id1').text = data.nick - obj:GetChild('text_lev').text = data.partnerLev and data.partnerLev + 1 or 1 - obj:GetController('show').selectedIndex = data.partnerLev and 1 or 0 - obj:GetController('isLine').selectedIndex = 1 - obj.data = {} - obj.data.list = obj:GetChild('list') - obj.data.info = data - self._map_members[data.uid] = obj - obj.onClick:Set(function() - if obj.data.info.uid == DataManager.SelfUser.account_id then - if obj.data.info.uid ~= self._data_selectedData.data.info.uid then - self:RecursionReSize(self._data_selectedData, -1, true, obj.data.info.uid) - end - else - if obj.data.info.parentId and obj.data.info.parentId ~= 0 then - if obj.data.info.parentId ~= self._data_selectedData.data.info.uid then - self:RecursionReSize(self._data_selectedData, -1, true, obj.data.info.parentId) - end - local father = self._map_members[obj.data.info.parentId] - for i = 1, father.data.listNum do - father.data.list:GetChildAt(i - 1):GetController('isLine').selectedIndex = 0 - end - obj:GetController('isLine').selectedIndex = 1 - end - end - - -- if obj.data.selected then - -- self:RecursionReSize(self._data_selectedData, -1, true, obj.data.info.uid) - -- self:RecursionSetScrollPannel(obj, 0) - -- else - self._data_choosePlayer = data - if obj.data.listNum then - self:RecursionReSize(obj) - self:RecursionSetScrollPannel(obj, 0) - else - ViewUtil.ShowModalWait(true, "正在获取成员中", 0.01) - self:RecursionGetNumber1(0, data.uid, {}) - end - -- end - if self.ctr_index.selectedIndex == #self.page_config then - self._view_map[#self.page_config + 1]:RefrenRecordData(data) - else - self.ctr_index.selectedIndex = #self.page_config - end - obj.data.selected = true - self._data_selectedData = obj - -- self._ctr_tongji.selectedIndex = 1 - end) end -function M:RecursionReSize(obj, add, flag, tagFather) - --如果把小箭头取消选择状态 - if not add then - for i = 1, obj.data.listNum do - obj.data.list:GetChildAt(i - 1):GetController('isLine').selectedIndex = 1 - end - elseif add == -1 then - obj.data.selected = false - for i = 1, obj.data.listNum do - obj.data.list:GetChildAt(i - 1):GetController('isLine').selectedIndex = 0 - end - elseif add == 0 then - for i = 1, obj.data.listNum do - obj.data.list:GetChildAt(i - 1):GetController('isLine').selectedIndex = 0 - end - end - --递归把列表缩回 - obj.data.list:ResizeToFit(flag and 0 or obj.data.childNum) - if obj.data.info.parentId and obj.data.info.parentId ~= 0 then - if tagFather and obj.data.info.parentId == tagFather then - return - end - local father = self._map_members[obj.data.info.parentId] - father.data.childNum = father.data.childNum + obj.data.childNum * (add or 1) - father:GetController('isLine').selectedIndex = 1 - self:RecursionReSize(father, add or 1, flag, tagFather) - end -end - -function M:RecursionSetScrollPannel(obj, scrollIndex) - if obj.data.info.parentId and obj.data.info.parentId ~= 0 then - local father = self._map_members[obj.data.info.parentId] - self:RecursionSetScrollPannel(father, scrollIndex + father.data.list:GetChildIndex(obj) + 1) - else - self._viewList_partner.scrollPane:SetPosY(scrollIndex * 115, true) - end -end - -function M:RecursionGetNumber1(index, id, tempTable) +function M:RecursionGetNumber1() + ViewUtil.ShowModalWait(true, "正在获取成员中", 0.01) local fgCtr = ControllerManager.GetController(NewGroupController) - fgCtr:FG_GroupSubMembers( + fgCtr:FG_Get_Partner( self.group_id, - index * 67, - 67, - id, function(res) if res.ReturnCode ~= 0 then ViewUtil.ErrorTip(res.ReturnCode, '获取成员列表失败') ViewUtil.CloseModalWait() else - local numbers = res.Data.members - - if #numbers == 0 then - self:SetRecursionGetNumber1Info(id, tempTable) - ViewUtil.CloseModalWait() - else - for i = 1, #numbers do - if numbers[i].partnerLev ~= 0 then - table.insert(tempTable, numbers[i]) - end - end - self:RecursionGetNumber1(index + 1, id, tempTable) + self._viewList_partner:RemoveChildren() + self._data_Players = {} + table.insert(self._data_Players, + { uid = DataManager.SelfUser.account_id, nick = DataManager.SelfUser.nick_name, partnerLev = -1 }) + for i, v in ipairs(res.Data.partners) do + table.insert(self._data_Players, v) end + table.sort(self._data_Players, function(a, b) + if a.partnerLev == b.partnerLev then + return a.uid < b.uid + else + return a.partnerLev < b.partnerLev + end + end) + self._viewList_partner.numItems = #self._data_Players + self._viewList_partner.selectedIndex = 0 + self._view_map[#self.page_config + 1]:RefrenRecordData(self._data_Players[1]) end end ) diff --git a/lua_probject/base_project/Game/View/NewGroup/GroupManagerView.lua b/lua_probject/base_project/Game/View/NewGroup/GroupManagerView.lua index 2dbcce31..1c4d4bda 100644 --- a/lua_probject/base_project/Game/View/NewGroup/GroupManagerView.lua +++ b/lua_probject/base_project/Game/View/NewGroup/GroupManagerView.lua @@ -68,15 +68,15 @@ function M:init(btn_type) self.page_config = MngPageConfig.Config[btn_type][lev] local gmsv if btn_type == 2 and lev ~= 4 then - --绑定统计代码 - self._child_statView = GroupManagerStagView.new(self) -- 初始界面 --战况是用新界面 local first_page_config = getPageConfig(19) - gmsv = first_page_config.view.new(self.group_id, self._root_view, self._child_statView._data_choosePlayer) + gmsv = first_page_config.view.new(self.group_id, self._root_view) self._view_map = {} self._view_map[#self.page_config + 1] = gmsv gmsv.id = first_page_config.id self._view:GetChild('bgWindow').text = first_page_config.title + --绑定统计代码 + self._child_statView = GroupManagerStagView.new(self) else -- 初始界面 local first_page_config = getPageConfig(self.page_config[1]) 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 57114635..6d5ee40c 100644 --- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua +++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngMemberHpListView.lua @@ -275,7 +275,7 @@ local function __change_fag(gid, pid, is_add, cur_hp, callback) ) -- item:GetChild("tex_fag").text = (self_user or show_fag) and num or show_fag_str end, - is_add and 1 or 2, + 1, cur_hp and d2ad(cur_hp) or nil ) gniv:Show() diff --git a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPartnerStatView.lua b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPartnerStatView.lua index d151b347..86424d2b 100644 --- a/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPartnerStatView.lua +++ b/lua_probject/base_project/Game/View/NewGroup/MngView/GroupMngPartnerStatView.lua @@ -7,11 +7,10 @@ local GroupMngPartnerStatView = {} local M = GroupMngPartnerStatView -function GroupMngPartnerStatView.new(gid, rootView, player) +function GroupMngPartnerStatView.new(gid, rootView) local self = M self.class = "GroupMngPartnerStatView" self.group_id = gid - self._data_choosePlayyer = player self:InitView() return self end @@ -25,37 +24,14 @@ function M:initData() local today = os.time({ year = now_time.year, month = now_time.month, day = now_time.day, hour = 0, min = 0, sec = 0 }) self.begin_time = today self.end_time = today + 86400 - -- print("lingmeng initData") self:GetRecordData(0) - --self:ShowPeopleNum() end --- function M:ShowPeopleNum() --- local fgCtr = ControllerManager.GetController(NewGroupController) --- fgCtr:FG_GetMembersCount(self.group_id,function(res) - --- ViewUtil.CloseModalWait() - --- if res.ReturnCode == 0 then --- self._view:GetChild('tex_memb_num').text = res.Data.member_num --- self._view:GetChild('tex_total_hp').text = d2ad(res.Data.hp_num1+res.Data.otherHp) --- end --- end) --- end - function M:InitView() self._view = UIPackage.CreateObjectFromURL("ui://NewGroup/View_GroupPartnerStat") - -- if group.lev ~= 3 then - -- self._view:GetController("mng").selectedIndex = 1 - -- end - local group = DataManager.groups:get(self.group_id) local lst_mgr_index = self._view:GetChild("lst_mgr_index") - -- lst_mgr_index.visible = false - -- if group.lev == 1 then - -- lst_mgr_index.visible = true - -- end self.lst_record = self._view:GetChild("lst_record") self.lst_record:SetVirtual() @@ -72,9 +48,6 @@ function M:InitView() self.lst_record_find.itemRenderer = function(index, obj) self:OnRenderRecordItem(index, obj) end - -- self.lst_record.scrollPane.onPullUpRelease:Set(function() - -- self:GetRecordData(self.lst_record.numItems) - -- end) self.time_panel = TimeSettingPanel.new(self._view, self._view:GetChild("btn_date1"), self._view:GetChild("btn_date2"), -308, 0, function() @@ -101,15 +74,7 @@ function M:InitView() end self:GetRecordData(0) end) - - -- self._view:GetChild("btn_search").onClick:Set(function() - -- self.record_data = {} - -- self.lst_record.numItems = 0 - - -- self.begin_time, self.end_time = self.time_panel:GetDate() - -- self:GetRecordData(0) - -- end) - + -- 搜索玩家 local ctr_search = self._view:GetController('search') self._view:GetChild('btn_search').onClick:Set( @@ -278,55 +243,49 @@ end function M:GetRecordData(index) local group = DataManager.groups:get(self.group_id) - -- pt("lingmeng GetRecordData", self.group_id, self._data_choosePlayyer, group.lev) - -- if group.lev == 1 and self._data_choosePlayyer.uid == DataManager.SelfUser.account_id then - -- self:RecursionGetRankData(0) - -- else - self:GetRecoedData(0, 5) - -- end + -- self:GetRecoedData(0, 5) end function M:RefrenRecordData(data) self._data_choosePlayyer = data local group = DataManager.groups:get(self.group_id) - -- pt("lingmeng GetRecordData2", self.group_id, self._data_choosePlayyer, group.lev) self:GetRecoedData(0, 5) end -function M:RecursionGetRecoedData(index) - ViewUtil.ShowModalWait("正在获取数据中") - local fgCtr = ControllerManager.GetController(NewGroupController) - fgCtr:FG_GetMemberStat(self.group_id, 0, self._data_choosePlayyer.uid, - index * 67, 67, 3, self.begin_time, self.end_time, 5, - function(res) - if res.ReturnCode == 0 then - local members = res.Data.members - if members and #members > 0 then - for i = 1, #members do - if members[i].round > 0 then - members[i].pump = 0 - members[i].pump - self.record_data[#self.record_data + 1] = members[i] - end - end - self:RecursionGetRecoedData(index + 1) - else - ViewUtil.CloseModalWait() - self.btn_totalRound:GetController("type").selectedIndex = 1 - self.btn_totalWin:GetController("type").selectedIndex = 0 - self.btn_total:GetController("type").selectedIndex = 0 - self.btn_reward:GetController("type").selectedIndex = 0 - -- table.sort(self.record_data, function(a, b) - -- return a.round > b.round - -- end) - self.lst_record.numItems = #self.record_data - end - else - ViewUtil.CloseModalWait() - ViewUtil.ErrorTip(res.ReturnCode) - return - end - end) -end +-- function M:RecursionGetRecoedData(index) +-- ViewUtil.ShowModalWait("正在获取数据中") +-- local fgCtr = ControllerManager.GetController(NewGroupController) +-- fgCtr:FG_GetMemberStat(self.group_id, 0, self._data_choosePlayyer.uid, +-- index * 67, 67, 3, self.begin_time, self.end_time, 5, +-- function(res) +-- if res.ReturnCode == 0 then +-- local members = res.Data.members +-- if members and #members > 0 then +-- for i = 1, #members do +-- if members[i].round > 0 then +-- members[i].pump = 0 - members[i].pump +-- self.record_data[#self.record_data + 1] = members[i] +-- end +-- end +-- self:RecursionGetRecoedData(index + 1) +-- else +-- ViewUtil.CloseModalWait() +-- self.btn_totalRound:GetController("type").selectedIndex = 1 +-- self.btn_totalWin:GetController("type").selectedIndex = 0 +-- self.btn_total:GetController("type").selectedIndex = 0 +-- self.btn_reward:GetController("type").selectedIndex = 0 +-- -- table.sort(self.record_data, function(a, b) +-- -- return a.round > b.round +-- -- end) +-- self.lst_record.numItems = #self.record_data +-- end +-- else +-- ViewUtil.CloseModalWait() +-- ViewUtil.ErrorTip(res.ReturnCode) +-- return +-- end +-- end) +-- end function M:GetRecoedData(index, type) if index == 0 then diff --git a/lua_probject/base_project/Game/View/PlayBackView.lua b/lua_probject/base_project/Game/View/PlayBackView.lua index 3a07d7f7..9409186e 100644 --- a/lua_probject/base_project/Game/View/PlayBackView.lua +++ b/lua_probject/base_project/Game/View/PlayBackView.lua @@ -27,7 +27,8 @@ function M:init() UIPackage.AddPackage('base/chat/ui/Chat') self.cmdList = self._room.cmdList self._eventmap = {} - -- self._full = true + self._full = true + self._full_offset = false self._put_map = false self._new_hide = false self._queue = false diff --git a/lua_probject/extend_project/extend/majiang/hongzhong/EXPlayBackView.lua b/lua_probject/extend_project/extend/majiang/hongzhong/EXPlayBackView.lua index bcbeb37e..7b1c5fb6 100644 --- a/lua_probject/extend_project/extend/majiang/hongzhong/EXPlayBackView.lua +++ b/lua_probject/extend_project/extend/majiang/hongzhong/EXPlayBackView.lua @@ -21,7 +21,7 @@ end function M:InitView(url) local room = self._room UIPackage.AddPackage("extend/majiang/hongzhong/ui/Extend_MJ_HongZhong") - MJPlayBackView.InitView(self,"ui://Main_Majiang/Main_"..room.room_config.people_num) + MJPlayBackView.InitView(self,"ui://Main_Majiang/Main_"..room.room_config.people_num .. "_s2") local _cardbox = self._view:GetChild("cardbox") --self._view:GetChild("panel_record"):GetChild("btn_LastStep").enabled = false self._ctr_cardbox = _cardbox:GetController("c1") @@ -288,8 +288,14 @@ function M:UpdateCardBox(seat) self._ctr_cardbox.selectedIndex = index end -function M:UpdateRound(round) - self._tex_round.text = "第 "..round.."/"..self._room.room_config.round.." 局" +function M:UpdateRound() + local currRD=self._room.curren_round + if self._room.curren_round==0 then + currRD=1 + end + + self._view:GetChild("tex_round1").text = currRD + self._view:GetChild("tex_round2").text = self._room.room_config.round end function M:UpdateStep(step) diff --git a/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info b/wb_new_ui/.objs/metas/m7iejg46/ilon7ibc.info index 356491bf..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 - }, - "n47_rpaz": { - "collapsed": true } } } \ No newline at end of file diff --git a/wb_new_ui/.objs/metas/m7iejg46/t1hqhxw.info b/wb_new_ui/.objs/metas/m7iejg46/t1hqhxw.info index 0a8f2d3a..9e26dfee 100644 --- a/wb_new_ui/.objs/metas/m7iejg46/t1hqhxw.info +++ b/wb_new_ui/.objs/metas/m7iejg46/t1hqhxw.info @@ -1,7 +1 @@ -{ - "objectStatus": { - "n8_yvb2": { - "locked": true - } - } -} \ No newline at end of file +{} \ 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 36c1a1f8..85021008 100644 --- a/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info +++ b/wb_new_ui/.objs/metas/m7iejg46/z3847i6m.info @@ -1,36 +1,42 @@ { "objectStatus": { - "n33_rpaz": { + "n46_tqi8": { + "collapsed": true + }, + "n142_ufim": { "hidden": true }, "n91_task": { "hidden": true }, - "n142_ufim": { + "n51_jd7v": { + "hidden": true + }, + "n86_t1hq": { + "hidden": true + }, + "n33_rpaz": { + "hidden": true + }, + "n112_csp4": { "hidden": true }, "n68_jd7v": { "collapsed": true }, - "n86_t1hq": { + "n35_rpaz": { "hidden": true }, - "n113_csp4": { + "n89_t1hq": { + "collapsed": true + }, + "n69_jd7v": { "hidden": true }, "n85_t1hq": { "hidden": true }, - "n35_rpaz": { - "hidden": true - }, - "n51_jd7v": { - "hidden": true - }, - "n69_jd7v": { - "hidden": true - }, - "n112_csp4": { + "n113_csp4": { "hidden": true } }, diff --git a/wb_new_ui/assets/Common/component/Win_BaseWindow.xml b/wb_new_ui/assets/Common/component/Win_BaseWindow.xml index 1b7d955a..44563f62 100644 --- a/wb_new_ui/assets/Common/component/Win_BaseWindow.xml +++ b/wb_new_ui/assets/Common/component/Win_BaseWindow.xml @@ -1,18 +1,18 @@ - + - + - + diff --git a/wb_new_ui/assets/Common/font/fontTitle/0 - 登.png b/wb_new_ui/assets/Common/font/fontTitle/0 - 登.png index 158bfd7e..a2cf1fe9 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/0 - 登.png and b/wb_new_ui/assets/Common/font/fontTitle/0 - 登.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/1 - 录.png b/wb_new_ui/assets/Common/font/fontTitle/1 - 录.png index 9130a01b..679b4389 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/1 - 录.png and b/wb_new_ui/assets/Common/font/fontTitle/1 - 录.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/10 - 战.png b/wb_new_ui/assets/Common/font/fontTitle/10 - 战.png index d30dd06c..9c26f2c3 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/10 - 战.png and b/wb_new_ui/assets/Common/font/fontTitle/10 - 战.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/11 - 况.png b/wb_new_ui/assets/Common/font/fontTitle/11 - 况.png index f65e56c1..3fc1e9e6 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/11 - 况.png and b/wb_new_ui/assets/Common/font/fontTitle/11 - 况.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/12 - 群.png b/wb_new_ui/assets/Common/font/fontTitle/12 - 群.png index 7bace172..0951d866 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/12 - 群.png and b/wb_new_ui/assets/Common/font/fontTitle/12 - 群.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/13 - 统.png b/wb_new_ui/assets/Common/font/fontTitle/13 - 统.png index 3e1e8cb4..78c31435 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/13 - 统.png and b/wb_new_ui/assets/Common/font/fontTitle/13 - 统.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/14 - 计.png b/wb_new_ui/assets/Common/font/fontTitle/14 - 计.png index e0a454d7..8f6b9027 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/14 - 计.png and b/wb_new_ui/assets/Common/font/fontTitle/14 - 计.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/15 - 操.png b/wb_new_ui/assets/Common/font/fontTitle/15 - 操.png index b0f68618..380cc685 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/15 - 操.png and b/wb_new_ui/assets/Common/font/fontTitle/15 - 操.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/16 - 作.png b/wb_new_ui/assets/Common/font/fontTitle/16 - 作.png index fdd10d68..41dbfc27 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/16 - 作.png and b/wb_new_ui/assets/Common/font/fontTitle/16 - 作.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/17 - 设.png b/wb_new_ui/assets/Common/font/fontTitle/17 - 设.png index 3c6c323e..74bdf677 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/17 - 设.png and b/wb_new_ui/assets/Common/font/fontTitle/17 - 设.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/18 - 置.png b/wb_new_ui/assets/Common/font/fontTitle/18 - 置.png index 268b8f40..0e91e530 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/18 - 置.png and b/wb_new_ui/assets/Common/font/fontTitle/18 - 置.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/19 - 房.png b/wb_new_ui/assets/Common/font/fontTitle/19 - 房.png index 9c8f0f6b..a045238f 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/19 - 房.png and b/wb_new_ui/assets/Common/font/fontTitle/19 - 房.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/2 - 疲.png b/wb_new_ui/assets/Common/font/fontTitle/2 - 疲.png index 370bb189..788f1d97 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/2 - 疲.png and b/wb_new_ui/assets/Common/font/fontTitle/2 - 疲.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/20 - 间.png b/wb_new_ui/assets/Common/font/fontTitle/20 - 间.png index 091205ef..074645ec 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/20 - 间.png and b/wb_new_ui/assets/Common/font/fontTitle/20 - 间.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/21 - 玩.png b/wb_new_ui/assets/Common/font/fontTitle/21 - 玩.png index 60eab18a..a58e357d 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/21 - 玩.png and b/wb_new_ui/assets/Common/font/fontTitle/21 - 玩.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/22 - 法.png b/wb_new_ui/assets/Common/font/fontTitle/22 - 法.png index bce94c88..be0cfd49 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/22 - 法.png and b/wb_new_ui/assets/Common/font/fontTitle/22 - 法.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/23 - 日.png b/wb_new_ui/assets/Common/font/fontTitle/23 - 日.png index 9ab37af8..13e1aab4 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/23 - 日.png and b/wb_new_ui/assets/Common/font/fontTitle/23 - 日.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/24 - 期.png b/wb_new_ui/assets/Common/font/fontTitle/24 - 期.png index f34ce007..0bd4ed32 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/24 - 期.png and b/wb_new_ui/assets/Common/font/fontTitle/24 - 期.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/25 - 修.png b/wb_new_ui/assets/Common/font/fontTitle/25 - 修.png index ca6cc2af..e9b5aa4b 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/25 - 修.png and b/wb_new_ui/assets/Common/font/fontTitle/25 - 修.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/26 - 改.png b/wb_new_ui/assets/Common/font/fontTitle/26 - 改.png index a8af70db..952e83d0 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/26 - 改.png and b/wb_new_ui/assets/Common/font/fontTitle/26 - 改.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/27 - 密.png b/wb_new_ui/assets/Common/font/fontTitle/27 - 密.png index 40bd9e99..74560cb8 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/27 - 密.png and b/wb_new_ui/assets/Common/font/fontTitle/27 - 密.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/28 - 码.png b/wb_new_ui/assets/Common/font/fontTitle/28 - 码.png index e7b336fe..0e91dce9 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/28 - 码.png and b/wb_new_ui/assets/Common/font/fontTitle/28 - 码.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/29 - 消.png b/wb_new_ui/assets/Common/font/fontTitle/29 - 消.png index 0b2f73a7..36ef7399 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/29 - 消.png and b/wb_new_ui/assets/Common/font/fontTitle/29 - 消.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/3 - 劳.png b/wb_new_ui/assets/Common/font/fontTitle/3 - 劳.png index 45dbd49f..759b9f7a 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/3 - 劳.png and b/wb_new_ui/assets/Common/font/fontTitle/3 - 劳.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/30 - 息.png b/wb_new_ui/assets/Common/font/fontTitle/30 - 息.png index fc1a8f37..cbf62c72 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/30 - 息.png and b/wb_new_ui/assets/Common/font/fontTitle/30 - 息.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/31 - 门.png b/wb_new_ui/assets/Common/font/fontTitle/31 - 门.png index d6267c92..1567b86c 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/31 - 门.png and b/wb_new_ui/assets/Common/font/fontTitle/31 - 门.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/32 - 槛.png b/wb_new_ui/assets/Common/font/fontTitle/32 - 槛.png index 9e54cdd8..1bfad916 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/32 - 槛.png and b/wb_new_ui/assets/Common/font/fontTitle/32 - 槛.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/33 - 个.png b/wb_new_ui/assets/Common/font/fontTitle/33 - 个.png index f7ff20b8..4a6cbfbf 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/33 - 个.png and b/wb_new_ui/assets/Common/font/fontTitle/33 - 个.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/34 - 人.png b/wb_new_ui/assets/Common/font/fontTitle/34 - 人.png index f7ddba91..8f607c14 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/34 - 人.png and b/wb_new_ui/assets/Common/font/fontTitle/34 - 人.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/35 - 信.png b/wb_new_ui/assets/Common/font/fontTitle/35 - 信.png index b2091127..21d1e2eb 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/35 - 信.png and b/wb_new_ui/assets/Common/font/fontTitle/35 - 信.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/36 - 邀.png b/wb_new_ui/assets/Common/font/fontTitle/36 - 邀.png index be300bd3..8f5adcfd 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/36 - 邀.png and b/wb_new_ui/assets/Common/font/fontTitle/36 - 邀.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/37 - 请.png b/wb_new_ui/assets/Common/font/fontTitle/37 - 请.png index d754b5ea..f720d461 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/37 - 请.png and b/wb_new_ui/assets/Common/font/fontTitle/37 - 请.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/38 - 保.png b/wb_new_ui/assets/Common/font/fontTitle/38 - 保.png index 7fe120cc..150025e1 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/38 - 保.png and b/wb_new_ui/assets/Common/font/fontTitle/38 - 保.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/39 - 险.png b/wb_new_ui/assets/Common/font/fontTitle/39 - 险.png index 8ba000f8..97a902fb 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/39 - 险.png and b/wb_new_ui/assets/Common/font/fontTitle/39 - 险.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/4 - 值.png b/wb_new_ui/assets/Common/font/fontTitle/4 - 值.png index fb6323ea..44286ce5 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/4 - 值.png and b/wb_new_ui/assets/Common/font/fontTitle/4 - 值.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/40 - 箱.png b/wb_new_ui/assets/Common/font/fontTitle/40 - 箱.png index c20a2297..125f7074 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/40 - 箱.png and b/wb_new_ui/assets/Common/font/fontTitle/40 - 箱.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/41 - 积.png b/wb_new_ui/assets/Common/font/fontTitle/41 - 积.png index 84c9f183..d0fda95b 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/41 - 积.png and b/wb_new_ui/assets/Common/font/fontTitle/41 - 积.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/42 - 分.png b/wb_new_ui/assets/Common/font/fontTitle/42 - 分.png index 6a41a862..d43c1b6e 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/42 - 分.png and b/wb_new_ui/assets/Common/font/fontTitle/42 - 分.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/43 - 收.png b/wb_new_ui/assets/Common/font/fontTitle/43 - 收.png index 979135e6..615fd3d9 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/43 - 收.png and b/wb_new_ui/assets/Common/font/fontTitle/43 - 收.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/44 - 益.png b/wb_new_ui/assets/Common/font/fontTitle/44 - 益.png index a48fd6c9..d7250be6 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/44 - 益.png and b/wb_new_ui/assets/Common/font/fontTitle/44 - 益.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/45 - 红.png b/wb_new_ui/assets/Common/font/fontTitle/45 - 红.png index b5481f62..9b4f3eba 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/45 - 红.png and b/wb_new_ui/assets/Common/font/fontTitle/45 - 红.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/46 - 中.png b/wb_new_ui/assets/Common/font/fontTitle/46 - 中.png index b28937ad..146d2c1f 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/46 - 中.png and b/wb_new_ui/assets/Common/font/fontTitle/46 - 中.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/47 - 转.png b/wb_new_ui/assets/Common/font/fontTitle/47 - 转.png index 9a95ef4a..b4ad9b4f 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/47 - 转.png and b/wb_new_ui/assets/Common/font/fontTitle/47 - 转.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/48 - 麻.png b/wb_new_ui/assets/Common/font/fontTitle/48 - 麻.png index 60ad4e86..d48f4795 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/48 - 麻.png and b/wb_new_ui/assets/Common/font/fontTitle/48 - 麻.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/49 - 将.png b/wb_new_ui/assets/Common/font/fontTitle/49 - 将.png index fe3deca8..4471e709 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/49 - 将.png and b/wb_new_ui/assets/Common/font/fontTitle/49 - 将.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/5 - 成.png b/wb_new_ui/assets/Common/font/fontTitle/5 - 成.png index 9d270aa6..1b97e79d 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/5 - 成.png and b/wb_new_ui/assets/Common/font/fontTitle/5 - 成.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/50 - 跑.png b/wb_new_ui/assets/Common/font/fontTitle/50 - 跑.png index cb9ed749..27470652 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/50 - 跑.png and b/wb_new_ui/assets/Common/font/fontTitle/50 - 跑.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/51 - 得.png b/wb_new_ui/assets/Common/font/fontTitle/51 - 得.png index 25a76c96..e77917e4 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/51 - 得.png and b/wb_new_ui/assets/Common/font/fontTitle/51 - 得.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/52 - 快.png b/wb_new_ui/assets/Common/font/fontTitle/52 - 快.png index 8735b5f6..ef816977 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/52 - 快.png and b/wb_new_ui/assets/Common/font/fontTitle/52 - 快.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/53 - 放.png b/wb_new_ui/assets/Common/font/fontTitle/53 - 放.png index 79525317..200e214d 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/53 - 放.png and b/wb_new_ui/assets/Common/font/fontTitle/53 - 放.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/54 - 炮.png b/wb_new_ui/assets/Common/font/fontTitle/54 - 炮.png index 45115377..ba7d766f 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/54 - 炮.png and b/wb_new_ui/assets/Common/font/fontTitle/54 - 炮.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/55 - 罚.png b/wb_new_ui/assets/Common/font/fontTitle/55 - 罚.png index ba5a3efb..4cf896db 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/55 - 罚.png and b/wb_new_ui/assets/Common/font/fontTitle/55 - 罚.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/56 - 提.png b/wb_new_ui/assets/Common/font/fontTitle/56 - 提.png index 219e6e86..ea60a671 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/56 - 提.png and b/wb_new_ui/assets/Common/font/fontTitle/56 - 提.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/57 - 示.png b/wb_new_ui/assets/Common/font/fontTitle/57 - 示.png index 157d4785..30c70bdc 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/57 - 示.png and b/wb_new_ui/assets/Common/font/fontTitle/57 - 示.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/58 - 下.png b/wb_new_ui/assets/Common/font/fontTitle/58 - 下.png index a0e8e605..3fd395c7 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/58 - 下.png and b/wb_new_ui/assets/Common/font/fontTitle/58 - 下.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/59 - 级.png b/wb_new_ui/assets/Common/font/fontTitle/59 - 级.png index 56880bec..21ecefbd 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/59 - 级.png and b/wb_new_ui/assets/Common/font/fontTitle/59 - 级.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/6 - 员.png b/wb_new_ui/assets/Common/font/fontTitle/6 - 员.png index bd785794..cb746928 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/6 - 员.png and b/wb_new_ui/assets/Common/font/fontTitle/6 - 员.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/60 - 赠.png b/wb_new_ui/assets/Common/font/fontTitle/60 - 赠.png index 53ed1d19..f0962a1e 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/60 - 赠.png and b/wb_new_ui/assets/Common/font/fontTitle/60 - 赠.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/61 - 送.png b/wb_new_ui/assets/Common/font/fontTitle/61 - 送.png index 73d1ee6f..1b67920f 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/61 - 送.png and b/wb_new_ui/assets/Common/font/fontTitle/61 - 送.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/62 - 失.png b/wb_new_ui/assets/Common/font/fontTitle/62 - 失.png index 1aef6a21..15fed304 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/62 - 失.png and b/wb_new_ui/assets/Common/font/fontTitle/62 - 失.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/63 - 败.png b/wb_new_ui/assets/Common/font/fontTitle/63 - 败.png index ea6d57d4..42ae9f21 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/63 - 败.png and b/wb_new_ui/assets/Common/font/fontTitle/63 - 败.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/64 - 胜.png b/wb_new_ui/assets/Common/font/fontTitle/64 - 胜.png index 531626f3..95c15495 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/64 - 胜.png and b/wb_new_ui/assets/Common/font/fontTitle/64 - 胜.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/65 - 利.png b/wb_new_ui/assets/Common/font/fontTitle/65 - 利.png index 5ed37dd0..d2f3b8a5 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/65 - 利.png and b/wb_new_ui/assets/Common/font/fontTitle/65 - 利.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/66 - 解.png b/wb_new_ui/assets/Common/font/fontTitle/66 - 解.png index 11b847de..7865bab7 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/66 - 解.png and b/wb_new_ui/assets/Common/font/fontTitle/66 - 解.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/67 - 散.png b/wb_new_ui/assets/Common/font/fontTitle/67 - 散.png index fb9eecc9..daeca3d0 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/67 - 散.png and b/wb_new_ui/assets/Common/font/fontTitle/67 - 散.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/68 - 再.png b/wb_new_ui/assets/Common/font/fontTitle/68 - 再.png index 41ab3265..6d02cc26 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/68 - 再.png and b/wb_new_ui/assets/Common/font/fontTitle/68 - 再.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/69 - 接.png b/wb_new_ui/assets/Common/font/fontTitle/69 - 接.png index e781e8c7..77695bc8 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/69 - 接.png and b/wb_new_ui/assets/Common/font/fontTitle/69 - 接.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/7 - 踢.png b/wb_new_ui/assets/Common/font/fontTitle/7 - 踢.png index 89eb0276..4bc8f27b 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/7 - 踢.png and b/wb_new_ui/assets/Common/font/fontTitle/7 - 踢.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/70 - 厉.png b/wb_new_ui/assets/Common/font/fontTitle/70 - 厉.png index bf8b96ba..706c1d1a 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/70 - 厉.png and b/wb_new_ui/assets/Common/font/fontTitle/70 - 厉.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/71 - 流.png b/wb_new_ui/assets/Common/font/fontTitle/71 - 流.png index 17cffb2c..565cdac4 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/71 - 流.png and b/wb_new_ui/assets/Common/font/fontTitle/71 - 流.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/72 - 局.png b/wb_new_ui/assets/Common/font/fontTitle/72 - 局.png index 0b0b0c0d..a93a143e 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/72 - 局.png and b/wb_new_ui/assets/Common/font/fontTitle/72 - 局.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/73 - 列.png b/wb_new_ui/assets/Common/font/fontTitle/73 - 列.png index 46b9adac..c6f979cf 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/73 - 列.png and b/wb_new_ui/assets/Common/font/fontTitle/73 - 列.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/74 - 表.png b/wb_new_ui/assets/Common/font/fontTitle/74 - 表.png index 3c4c2272..47194961 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/74 - 表.png and b/wb_new_ui/assets/Common/font/fontTitle/74 - 表.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/75 - 绩.png b/wb_new_ui/assets/Common/font/fontTitle/75 - 绩.png index 196b20c9..5f3b9057 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/75 - 绩.png and b/wb_new_ui/assets/Common/font/fontTitle/75 - 绩.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/76 - 队.png b/wb_new_ui/assets/Common/font/fontTitle/76 - 队.png index dc64a0e2..e413adfd 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/76 - 队.png and b/wb_new_ui/assets/Common/font/fontTitle/76 - 队.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/77 - 长.png b/wb_new_ui/assets/Common/font/fontTitle/77 - 长.png index ed0167b3..7c5ce315 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/77 - 长.png and b/wb_new_ui/assets/Common/font/fontTitle/77 - 长.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/78 - 亲.png b/wb_new_ui/assets/Common/font/fontTitle/78 - 亲.png index 845379cb..92a82d4a 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/78 - 亲.png and b/wb_new_ui/assets/Common/font/fontTitle/78 - 亲.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/79 - 友.png b/wb_new_ui/assets/Common/font/fontTitle/79 - 友.png index 54cacfab..528f8220 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/79 - 友.png and b/wb_new_ui/assets/Common/font/fontTitle/79 - 友.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/8 - 出.png b/wb_new_ui/assets/Common/font/fontTitle/8 - 出.png index 82181e0e..a3949d33 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/8 - 出.png and b/wb_new_ui/assets/Common/font/fontTitle/8 - 出.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/80 - 圈.png b/wb_new_ui/assets/Common/font/fontTitle/80 - 圈.png index e34c155f..e949e046 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/80 - 圈.png and b/wb_new_ui/assets/Common/font/fontTitle/80 - 圈.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/81 - 合.png b/wb_new_ui/assets/Common/font/fontTitle/81 - 合.png index 5388701c..985e0d86 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/81 - 合.png and b/wb_new_ui/assets/Common/font/fontTitle/81 - 合.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/82 - 伙.png b/wb_new_ui/assets/Common/font/fontTitle/82 - 伙.png new file mode 100644 index 00000000..19b29fa9 Binary files /dev/null and b/wb_new_ui/assets/Common/font/fontTitle/82 - 伙.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/9 - 记.png b/wb_new_ui/assets/Common/font/fontTitle/9 - 记.png index 2e75a364..65e12f29 100644 Binary files a/wb_new_ui/assets/Common/font/fontTitle/9 - 记.png and b/wb_new_ui/assets/Common/font/fontTitle/9 - 记.png differ diff --git a/wb_new_ui/assets/Common/font/fontTitle/fontTitle.fnt b/wb_new_ui/assets/Common/font/fontTitle/fontTitle.fnt index e6fc3705..057145b1 100644 --- a/wb_new_ui/assets/Common/font/fontTitle/fontTitle.fnt +++ b/wb_new_ui/assets/Common/font/fontTitle/fontTitle.fnt @@ -81,3 +81,4 @@ char id=20986 img=qcrm7iu6 xoffset=0 yoffset=0 xadvance=0 char id=22280 img=qcrm7iuo xoffset=0 yoffset=0 xadvance=0 char id=35760 img=qcrm7ivt xoffset=0 yoffset=0 xadvance=0 char id=21512 img=qcrm7ivu xoffset=0 yoffset=0 xadvance=0 +char id=20249 img=qcrm7ivv xoffset=0 yoffset=0 xadvance=0 diff --git a/wb_new_ui/assets/Common/images/btn_showPartner.png b/wb_new_ui/assets/Common/images/btn_showPartner.png new file mode 100644 index 00000000..14c0303d Binary files /dev/null and b/wb_new_ui/assets/Common/images/btn_showPartner.png differ diff --git a/wb_new_ui/assets/Common/package.xml b/wb_new_ui/assets/Common/package.xml index 23e7ec9b..8078d991 100644 --- a/wb_new_ui/assets/Common/package.xml +++ b/wb_new_ui/assets/Common/package.xml @@ -1352,6 +1352,8 @@ + + diff --git a/wb_new_ui/assets/NewGroup/Win_ManagerView.xml b/wb_new_ui/assets/NewGroup/Win_ManagerView.xml index 10965924..761ad959 100644 --- a/wb_new_ui/assets/NewGroup/Win_ManagerView.xml +++ b/wb_new_ui/assets/NewGroup/Win_ManagerView.xml @@ -1,6 +1,6 @@ - + @@ -20,11 +20,14 @@ + + +