更换所有页面,修复快速开始的bug
|
|
@ -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
|
||||
_destroy_all = true
|
||||
local list = WindowMap
|
||||
for i = 1, #list do
|
||||
local win = list[i]
|
||||
win:Destroy()
|
||||
end
|
||||
_destroy_all = false
|
||||
WindowQueue = {}
|
||||
WindowMap = {}
|
||||
end
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
return M
|
||||
|
|
|
|||
|
|
@ -56,3 +56,4 @@ ui://4skil1l6vmtu1l8
|
|||
ui://4skil1l6piv91ln
|
||||
ui://4skil1l6jsw9117
|
||||
ui://m7iejg46eany7iev
|
||||
ui://m7iejg46hz877im7
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -1,13 +1,10 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n93_t8gf": {
|
||||
"n87_csp4": {
|
||||
"hidden": true
|
||||
},
|
||||
"n79_ovii": {
|
||||
"hidden": true
|
||||
},
|
||||
"n87_csp4": {
|
||||
"hidden": true
|
||||
}
|
||||
},
|
||||
"adaptiveTest": true,
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,8 +1,14 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n49_jd7v": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n35_rpaz": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n45_tqi8": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n33_rpaz": {
|
||||
"collapsed": true
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2,6 +2,9 @@
|
|||
"objectStatus": {
|
||||
"n35_p747": {
|
||||
"hidden": true
|
||||
},
|
||||
"n33_p747": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3,12 +3,12 @@
|
|||
"n118_fcju": {
|
||||
"hidden": true
|
||||
},
|
||||
"n104_kwi0": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n115_dfkc": {
|
||||
"hidden": true
|
||||
},
|
||||
"n120_t8gf": {
|
||||
"hidden": true
|
||||
},
|
||||
"n108_kwi0": {
|
||||
"hidden": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +1,7 @@
|
|||
{}
|
||||
{
|
||||
"objectStatus": {
|
||||
"n33_p747": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n5_yvb2": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
|
@ -2,9 +2,6 @@
|
|||
"objectStatus": {
|
||||
"n68_tqi8": {
|
||||
"hidden": true
|
||||
},
|
||||
"n83_cvc8": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -2,6 +2,9 @@
|
|||
"objectStatus": {
|
||||
"n87_csp4": {
|
||||
"hidden": true
|
||||
},
|
||||
"n79_ovii": {
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3,12 +3,12 @@
|
|||
"n69_jd7v": {
|
||||
"hidden": true
|
||||
},
|
||||
"n46_tqi8": {
|
||||
"locked": true
|
||||
},
|
||||
"n142_ufim": {
|
||||
"hidden": true
|
||||
},
|
||||
"n68_jd7v": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n86_t1hq": {
|
||||
"hidden": true
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</graph>
|
||||
<component id="n1_lwcl" name="contentPane" src="cjli6" fileName="UIPanel.xml" xy="0,0" pivot="0.5,0.5" size="1334,750">
|
||||
<relation target="" sidePair="center-center,height-height"/>
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</component>
|
||||
</displayList>
|
||||
<transition name="in">
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="978,603" designImageLayer="1">
|
||||
<displayList>
|
||||
<image id="n68_l7wn" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="0,0" size="978,603">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<component id="n33_lwcl" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="919,-28" controller="style,0"/>
|
||||
<component id="n69_hz87" name="n69" src="hz877e29" fileName="component/Win_BaseWindow_H588.xml" xy="0,0" size="978,588">
|
||||
<Button icon="ui://2d9xdj6zhz877e2d"/>
|
||||
</component>
|
||||
<component id="n33_lwcl" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="903,-12" controller="style,0"/>
|
||||
<component id="n23" name="slider_sound" src="l0lzo" fileName="component/setting/Slider1.xml" xy="225,326" size="470,26" group="n29" visible="false">
|
||||
<Slider value="50" max="100"/>
|
||||
</component>
|
||||
|
|
@ -13,12 +13,11 @@
|
|||
</component>
|
||||
<component id="n65_omkm" name="btn_music" src="omkm7cna" fileName="component/setting/Button5.xml" xy="317,221" group="n29"/>
|
||||
<component id="n66_omkm" name="btn_sound" src="omkm7cna" fileName="component/setting/Button5.xml" xy="629,221" group="n29"/>
|
||||
<text id="n51_eeqm" name="n51" xy="230,239" size="63,39" group="n29" font="Microsoft YaHei" fontSize="28" color="#367256" leading="4" letterSpacing="4" text="音乐"/>
|
||||
<text id="n64_omkm" name="n64" xy="539,239" size="63,39" group="n29" font="Microsoft YaHei" fontSize="28" color="#367256" leading="4" letterSpacing="4" text="音效"/>
|
||||
<text id="n51_eeqm" name="n51" xy="230,239" size="64,39" group="n29" font="Microsoft YaHei" fontSize="28" color="#367256" leading="4" letterSpacing="4" text="音乐"/>
|
||||
<text id="n64_omkm" name="n64" xy="539,239" size="64,39" group="n29" font="Microsoft YaHei" fontSize="28" color="#367256" leading="4" letterSpacing="4" text="音效"/>
|
||||
<group id="n29" name="n29" xy="225,221" size="591,131" advanced="true"/>
|
||||
<component id="n60_ovii" name="btn_del" src="oviicm4" fileName="component/setting/Component3.xml" xy="363,361" visible="false"/>
|
||||
<image id="n62_omkm" name="n62" src="omkm7i4j" fileName="mgr/imgs/fagpack/bt_shezhi.png" pkg="m7iejg46" xy="337,16"/>
|
||||
<component id="n67_omkm" name="n67" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="385,458" size="218,82">
|
||||
<component id="n67_omkm" name="n67" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="385,438" size="218,82">
|
||||
<Button title=" " icon="ui://27vd145bomkm7i5f"/>
|
||||
</component>
|
||||
</displayList>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 455 KiB |
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1396,588" extention="Button">
|
||||
<displayList>
|
||||
<image id="n0_hz87" name="n0" src="hz877e2a" fileName="images/Group 749.png" xy="0,0" size="1396,588" group="n3_hz87">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<image id="n1_hz87" name="n1" src="hz877e2b" fileName="images/Rectangle 343.png" xy="13,54" size="1369,520" group="n3_hz87">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<group id="n3_hz87" name="bg" xy="0,0" size="1396,588"/>
|
||||
<loader id="n6_hz87" name="icon" xy="479,-8" size="438,73">
|
||||
<relation target="" sidePair="left-center"/>
|
||||
</loader>
|
||||
</displayList>
|
||||
<Button/>
|
||||
</component>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1334,750">
|
||||
<controller name="empty_group" pages="0,,1," selected="0"/>
|
||||
<controller name="agent" pages="0,,1," selected="1"/>
|
||||
<controller name="agent" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n133_lk2r" name="n133" src="m16m7dr2" fileName="images/image 91.png" xy="-142,-1">
|
||||
<relation target="" sidePair="width-width,height-height%,center-center,middle-middle"/>
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
<image id="n137_csp4" name="n137" src="csp47cn8" fileName="component/group/images/shangdi.png" xy="-40,0" size="1422,80" visible="false">
|
||||
<relation target="" sidePair="width-width,top-top"/>
|
||||
</image>
|
||||
<image id="n138_m16m" name="n138" src="m16m7dr0" fileName="component/group/component/Group 699.png" xy="455,-6">
|
||||
<image id="n138_m16m" name="n138" src="m16m7dr0" fileName="component/group/component/Group 699.png" xy="455,-6" visible="false">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
</image>
|
||||
<image id="n112_ker3" name="n112" src="ker3ji" fileName="images/fall_dialog_head_bg.png" xy="0,0" visible="false">
|
||||
|
|
@ -18,16 +18,16 @@
|
|||
<component id="n115_ker3" name="btn_close" src="ker3jk" fileName="component/button/btn_back.xml" xy="20,26">
|
||||
<relation target="" sidePair="left-left,top-top"/>
|
||||
</component>
|
||||
<image id="n103_lumr" name="no_group" src="xbqujq" fileName="component/group/images/hall_robot_icon.png" xy="376,88" group="n119_naup" visible="false">
|
||||
<image id="n103_lumr" name="no_group" src="xbqujq" fileName="component/group/images/hall_robot_icon.png" xy="370,88" group="n119_naup" visible="false">
|
||||
<gearDisplay controller="empty_group" pages="1"/>
|
||||
</image>
|
||||
<text id="n118_xbqu" name="n118" xy="537,426" size="315,42" group="n119_naup" font="Microsoft YaHei" fontSize="30" color="#ffffff" align="center" text="暂时还没加入亲友圈哦~">
|
||||
<text id="n118_xbqu" name="n118" xy="531,426" size="326,42" group="n119_naup" font="Microsoft YaHei" fontSize="30" color="#ffffff" align="center" text="暂时还没加入亲友圈哦~">
|
||||
<gearDisplay controller="empty_group" pages="1"/>
|
||||
</text>
|
||||
<group id="n119_naup" name="n119" xy="376,88" size="476,579" advanced="true">
|
||||
<group id="n119_naup" name="n119" xy="370,88" size="487,579" advanced="true">
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</group>
|
||||
<list id="n106_nlwc" name="lst_group" xy="122,147" size="1112,517" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" scrollBarFlags="2" lineGap="5" colGap="22" defaultItem="ui://2d9xdj6znlwcgk" align="center" vAlign="middle" autoClearItems="true">
|
||||
<list id="n106_nlwc" name="lst_group" xy="122,103" size="1112,517" layout="row" selectionMode="none" overflow="scroll" scroll="horizontal" scrollBarFlags="2" lineGap="5" colGap="22" defaultItem="ui://2d9xdj6znlwcgk" align="center" vAlign="middle" autoClearItems="true">
|
||||
<gearDisplay controller="empty_group" pages="0"/>
|
||||
<relation target="" sidePair="width-width,height-height%,top-top%"/>
|
||||
<item/>
|
||||
|
|
|
|||
|
|
@ -1,36 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1334,750">
|
||||
<controller name="nav" pages="0,,1," selected="0"/>
|
||||
<controller name="load" pages="0,,1," selected="1"/>
|
||||
<controller name="load" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n26_nuxq" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="178,74" size="974,615">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<image id="n27_nuxq" name="n27" src="csp47i49" fileName="mgr/imgs/fagpack/bt_gerenxiaoxi.png" pkg="m7iejg46" xy="512,95">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
</image>
|
||||
<image id="n22_cvc8" name="n22" src="vyn37i4y" fileName="component/nav/hengtiao3.png" pkg="m7iejg46" xy="207,167" size="918,100" group="n16_nld2">
|
||||
<component id="n28_hz87" name="n28" src="hz877e29" fileName="component/Win_BaseWindow_H588.xml" xy="178,74" size="974,588">
|
||||
<Button icon="ui://2d9xdj6zhz877e2c"/>
|
||||
</component>
|
||||
<image id="n22_cvc8" name="n22" src="vyn37i4y" fileName="component/nav/hengtiao3.png" pkg="m7iejg46" xy="207,137" size="918,100" group="n16_nld2">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<component id="n10_naup" name="btn_head" src="kio210" fileName="component/head/Head.xml" pkg="27vd145b" xy="222,177" group="n16_nld2">
|
||||
<component id="n10_naup" name="btn_head" src="kio210" fileName="component/head/Head.xml" pkg="27vd145b" xy="222,147" group="n16_nld2">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<text id="n11_naup" name="tex_nickname" xy="310,175" size="192,44" group="n16_nld2" font="Microsoft YaHei" fontSize="24" color="#495f55" vAlign="middle" autoSize="none" text="玩家名字这么长">
|
||||
<text id="n11_naup" name="tex_nickname" xy="310,145" size="192,44" group="n16_nld2" font="Microsoft YaHei" fontSize="24" color="#495f55" vAlign="middle" autoSize="none" text="玩家名字这么长">
|
||||
<relation target="" sidePair="right-left"/>
|
||||
</text>
|
||||
<text id="n12_naup" name="tex_id" xy="311,212" size="193,44" group="n16_nld2" font="Microsoft YaHei" fontSize="24" color="#495f55" autoSize="none" text="ID:123456">
|
||||
<text id="n12_naup" name="tex_id" xy="311,182" size="193,44" group="n16_nld2" font="Microsoft YaHei" fontSize="24" color="#495f55" autoSize="none" text="ID:123456">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</text>
|
||||
<component id="n17_nld2" name="btn_logout" src="ab5pcj5" fileName="component/user_info/btn_ok.xml" xy="903,182" size="203,63" group="n16_nld2">
|
||||
<component id="n17_nld2" name="btn_logout" src="ab5pcj5" fileName="component/user_info/btn_ok.xml" xy="903,152" size="203,63" group="n16_nld2">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
<Button icon="ui://2d9xdj6znld2cjs"/>
|
||||
</component>
|
||||
<group id="n16_nld2" name="n16" xy="207,167" size="918,100"/>
|
||||
<component id="n4_naup" name="user_info" src="naupko" fileName="component/user_info/cgm_user_opt.xml" xy="208,267" size="918,396" group="n15_ab5p">
|
||||
<group id="n16_nld2" name="n16" xy="207,137" size="918,100"/>
|
||||
<component id="n4_naup" name="user_info" src="naupko" fileName="component/user_info/cgm_user_opt.xml" xy="208,243" size="918,399" group="n15_ab5p">
|
||||
<gearDisplay controller="nav" pages="0"/>
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</component>
|
||||
<group id="n15_ab5p" name="n15" xy="208,267" size="918,396" advanced="true">
|
||||
<group id="n15_ab5p" name="n15" xy="208,243" size="918,399" advanced="true">
|
||||
<gearDisplay controller="load" pages="1"/>
|
||||
</group>
|
||||
<image id="n6_naup" name="n6" src="g8kkjt" fileName="component/group/images/hall_right_bg.png" xy="1122,92" size="212,632" group="n8_naup"/>
|
||||
|
|
@ -44,7 +41,7 @@
|
|||
<component id="n14_naup" name="n14" src="j046hyj" fileName="component/button/btn_tab.xml" pkg="27vd145b" xy="369,0" visible="false">
|
||||
<Button title="代理账号" icon="ui://2d9xdj6znaupkw" selectedIcon="ui://2d9xdj6znaupku" controller="nav" page="1"/>
|
||||
</component>
|
||||
<component id="n25_cvc8" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1091,50" controller="style,0">
|
||||
<component id="n25_cvc8" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1077,63" controller="style,0">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
</displayList>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
|
@ -681,6 +681,12 @@
|
|||
<image id="yvb27e26" name="puke_00037.png" path="/images/clip_createRoom/" exported="true"/>
|
||||
<image id="yvb27e27" name="puke_00047.png" path="/images/clip_createRoom/" exported="true"/>
|
||||
<image id="yvb27e28" name="puke_00060.png" path="/images/clip_createRoom/" exported="true"/>
|
||||
<component id="hz877e29" name="Win_BaseWindow_H588.xml" path="/component/"/>
|
||||
<image id="hz877e2a" name="Group 749.png" path="/component/"/>
|
||||
<image id="hz877e2b" name="Rectangle 343.png" path="/component/" scale="9grid" scale9grid="341,166,682,332"/>
|
||||
<image id="hz877e2c" name="gerenxinxi.png" path="/images/new/"/>
|
||||
<image id="hz877e2d" name="shezhi.png" path="/images/new/"/>
|
||||
<image id="hz875k" name="luxiang.png" path="/images/new/"/>
|
||||
</resources>
|
||||
<publish name="Lobby" path="..\wb_unity_pro\Assets\ART\base\lobby\ui" packageCount="2" maxAtlasSize="8192">
|
||||
<atlas name="默认" index="0"/>
|
||||
|
|
|
|||
|
|
@ -1,13 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="978,603">
|
||||
<displayList>
|
||||
<image id="n64_nuxq" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="0,0" size="978,603">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<component id="n58_r0qx" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="922,-20" controller="style,0">
|
||||
<Button icon="ui://27vd145bm0eibv"/>
|
||||
<component id="n65_hz87" name="n65" src="hz877ikv" fileName="mgr/Win_BaseWindow_H588.xml" xy="0,0" size="978,603" group="n66_hz87">
|
||||
<Button icon="ui://m7iejg46hz877ilc"/>
|
||||
</component>
|
||||
<list id="n4_l0s4" name="lst_log" xy="37,154" size="903,349" selectionMode="none" overflow="scroll" lineGap="3" colGap="43" defaultItem="ui://m7iejg46kk3uhrq" autoClearItems="true">
|
||||
<group id="n66_hz87" name="bg" xy="0,0" size="978,603"/>
|
||||
<component id="n58_r0qx" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="903,-11" size="82,81" controller="style,0">
|
||||
<Button icon="ui://m7iejg46csp47i41"/>
|
||||
</component>
|
||||
<list id="n4_l0s4" name="lst_log" xy="37,136" size="903,371" selectionMode="none" overflow="scroll" lineGap="3" colGap="43" defaultItem="ui://m7iejg46kk3uhrq" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -18,19 +19,20 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<image id="n61_r0qx" name="n61" src="csp47i44" fileName="component/nav/sd.png" xy="35,90" size="907,56" group="n25_kk3u">
|
||||
<image id="n61_r0qx" name="n61" src="csp47i44" fileName="component/nav/sd.png" xy="35,70" size="907,56" group="n25_kk3u">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<text id="n38_sbng" name="n38" xy="88,102" size="98,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="玩家昵称"/>
|
||||
<text id="n40_sbng" name="n40" xy="337,102" size="75,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="玩家ID"/>
|
||||
<text id="n42_sbng" name="n42" xy="556,102" size="98,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="积分记录"/>
|
||||
<text id="n44_sbng" name="n44" xy="796,102" size="51,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="日期"/>
|
||||
<group id="n47_sbng" name="n47" xy="88,102" size="759,34" group="n25_kk3u"/>
|
||||
<group id="n25_kk3u" name="n25" xy="35,90" size="907,56" advanced="true"/>
|
||||
<component id="n32_p747" name="btn_date1" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="98,513" group="n31_kk3u"/>
|
||||
<text id="n33_p747" name="n33" xy="404,527" size="24,29" group="n31_kk3u" font="Microsoft YaHei" fontSize="20" color="#495f55" text="至"/>
|
||||
<component id="n34_p747" name="btn_date2" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="446,513" group="n31_kk3u"/>
|
||||
<text id="n38_sbng" name="n38" xy="88,82" size="100,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="玩家昵称"/>
|
||||
<text id="n40_sbng" name="n40" xy="337,82" size="77,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="玩家ID"/>
|
||||
<text id="n42_sbng" name="n42" xy="556,82" size="100,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="积分记录"/>
|
||||
<text id="n44_sbng" name="n44" xy="796,82" size="52,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="日期"/>
|
||||
<group id="n47_sbng" name="n47" xy="88,82" size="759,34" group="n25_kk3u"/>
|
||||
<group id="n25_kk3u" name="n25" xy="35,70" size="907,56" advanced="true"/>
|
||||
<component id="n32_p747" name="btn_date1" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="98,520" group="n31_kk3u"/>
|
||||
<text id="n33_p747" name="n33" xy="404,534" size="24,29" group="n31_kk3u" visible="false" font="Microsoft YaHei" fontSize="20" color="#495f55" text="至"/>
|
||||
<component id="n34_p747" name="btn_date2" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="446,520" group="n31_kk3u"/>
|
||||
<component id="n62_r0qx" name="btn_search" src="dzx8hbb" fileName="component/Btn/btn_req.xml" xy="762,513" group="n31_kk3u"/>
|
||||
<group id="n31_kk3u" name="n31" xy="98,513" size="801,60" advanced="true"/>
|
||||
<image id="n67_hz87" name="n67" src="m16m7ig8" fileName="component/Btn/date_set/Polygon 3.png" xy="405,532" group="n31_kk3u"/>
|
||||
<group id="n31_kk3u" name="n31" xy="98,513" size="802,74" advanced="true"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,10 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1334,750">
|
||||
<component size="1396,690">
|
||||
<displayList>
|
||||
<image id="n24_b5ny" name="bg" src="eany7ies" fileName="images/mail/Group 679.png" xy="-31,28">
|
||||
<relation target="" sidePair="center-center,middle-middle"/>
|
||||
</image>
|
||||
<list id="n4_l0s4" name="lst_mail" xy="2,141" size="1329,479" overflow="scroll" lineGap="10" colGap="25" defaultItem="ui://m7iejg46mpllhut" align="center" autoClearItems="true">
|
||||
<component id="n29_hz87" name="n29" src="hz877iku" fileName="mgr/Win_BaseWindow_H698.xml" xy="0,0" group="n28_hz87">
|
||||
<Button icon="ui://m7iejg46hz877il1"/>
|
||||
</component>
|
||||
<group id="n28_hz87" name="bg" xy="0,0" size="1396,690"/>
|
||||
<list id="n4_l0s4" name="lst_mail" xy="33,94" size="1329,497" overflow="scroll" lineGap="10" colGap="25" defaultItem="ui://m7iejg46mpllhut" align="center" autoClearItems="true">
|
||||
<relation target="" sidePair="center-center,middle-middle"/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -12,11 +13,11 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<component id="n7_r96t" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1252,17" controller="style,0">
|
||||
<component id="n7_r96t" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1320,-18" size="120,120" controller="style,0">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
<Button icon="ui://m7iejg46ilon7iax"/>
|
||||
</component>
|
||||
<component id="n20_mpll" name="btn_delete" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="523,621">
|
||||
<component id="n20_mpll" name="btn_delete" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="583,593">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
<Button title=" " titleColor="#a65e3e" icon="ui://27vd145bi18j7i5x"/>
|
||||
</component>
|
||||
|
|
|
|||
|
|
@ -5,12 +5,13 @@
|
|||
<controller name="single" pages="0,,1," selected="0"/>
|
||||
<controller name="tongji" homePageType="specific" homePage="1" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n80_ovii" name="n80" src="oviii10" fileName="images/bg_tk_02.png" xy="0,0" size="1396,690">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<image id="n94_t8gf" name="n94" src="imp57iho" fileName="images/Rectangle 343.png" xy="13,93" size="1372,583"/>
|
||||
<image id="n93_t8gf" name="n93" src="tt6k7ikb" fileName="images/Group 893.png" xy="524,-5" size="369,106" visible="false"/>
|
||||
<list id="n65_hsbh" name="lst_index" xy="12,12" size="537,74" layout="row" overflow="scroll" lineGap="3" defaultItem="ui://m7iejg46t1hqhy5" selectionController="index" autoClearItems="true">
|
||||
<component id="n95_hz87" name="n95" src="hz877iku" fileName="mgr/Win_BaseWindow_H698.xml" xy="0,0" group="n96_hz87">
|
||||
<Button icon="ui://m7iejg46hz877ila"/>
|
||||
</component>
|
||||
<image id="n98_hz87" name="n98" src="hz877il4" fileName="images/Rectangle 445.png" xy="235,57" size="1143,84" group="n96_hz87"/>
|
||||
<image id="n97_hz87" name="n97" src="t8gf7iki" fileName="images/Rectangle 444.png" xy="229,55" size="17,620" group="n96_hz87"/>
|
||||
<group id="n96_hz87" name="bg" xy="0,0" size="1396,690"/>
|
||||
<list id="n65_hsbh" name="lst_index" xy="246,62" size="537,74" layout="row" overflow="scroll" lineGap="3" defaultItem="ui://m7iejg46t1hqhy5" selectionController="index" autoClearItems="true">
|
||||
<relation target="" sidePair="middle-middle,left-left"/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -19,10 +20,10 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<component id="n66_lf2q" name="anchor" src="gojuhh5" fileName="component/anchor.xml" xy="233,105" size="1135,573">
|
||||
<component id="n66_lf2q" name="anchor" src="gojuhh5" fileName="component/anchor.xml" xy="246,141" size="1132,533">
|
||||
<relation target="" sidePair="left-left,top-top"/>
|
||||
</component>
|
||||
<list id="n90_yvb2" name="lst_partner" xy="25,104" size="205,571" selectionMode="multipleSingleClick" overflow="scroll" lineGap="-6" defaultItem="ui://m7iejg46t1hqhxw" autoClearItems="true">
|
||||
<list id="n90_yvb2" name="lst_partner" xy="18,59" size="211,617" selectionMode="multipleSingleClick" overflow="scroll" lineGap="-6" defaultItem="ui://m7iejg46t1hqhxw" autoClearItems="true">
|
||||
<gearLook controller="tongji" pages="0,1" values="1,0,0,1|1,0,0,1"/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -30,7 +31,7 @@
|
|||
<image id="n87_csp4" name="n87" src="csp47i44" fileName="component/nav/sd.png" xy="283,253" size="1085,56" visible="false">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<component id="n86_csp4" name="btn_close" src="csp47i42" fileName="btnclose.xml" xy="1285,-10" size="120,115" aspect="true">
|
||||
<component id="n86_csp4" name="btn_close" src="csp47i42" fileName="btnclose.xml" xy="1323,-16" size="82,78" aspect="true">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
<text id="n79_ovii" name="n79" xy="170,70" size="178,42" visible="false" font="Microsoft YaHei" fontSize="30" color="#fffff6" vAlign="middle" autoSize="none" text="统计">
|
||||
|
|
|
|||
|
|
@ -5,14 +5,15 @@
|
|||
<controller name="single" pages="0,,1," selected="0"/>
|
||||
<controller name="tongji" homePageType="specific" homePage="1" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n80_ovii" name="n80" src="oviii10" fileName="images/bg_tk_02.png" xy="0,0" size="1396,690">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<image id="n88_t8gf" name="n88" src="imp57iho" fileName="images/Rectangle 343.png" xy="14,92" size="1372,583"/>
|
||||
<component id="n66_lf2q" name="anchor" src="gojuhh5" fileName="component/anchor.xml" xy="233,104" size="1135,570">
|
||||
<component id="n89_hz87" name="n89" src="hz877iku" fileName="mgr/Win_BaseWindow_H698.xml" xy="0,0" group="n90_hz87">
|
||||
<Button icon="ui://m7iejg46hz877ikx"/>
|
||||
</component>
|
||||
<image id="n91_hz87" name="n91" src="t8gf7iki" fileName="images/Rectangle 444.png" xy="222,56" size="17,620" group="n90_hz87"/>
|
||||
<group id="n90_hz87" name="bg" xy="0,0" size="1396,690"/>
|
||||
<component id="n66_lf2q" name="anchor" src="gojuhh5" fileName="component/anchor.xml" xy="239,56" size="1139,618">
|
||||
<relation target="" sidePair="left-left,top-top"/>
|
||||
</component>
|
||||
<list id="n65_hsbh" name="lst_index" xy="25,96" size="258,569" overflow="scroll" lineGap="3" defaultItem="ui://m7iejg46yvb27ik1" selectionController="index" autoClearItems="true">
|
||||
<list id="n65_hsbh" name="lst_index" xy="19,60" size="205,609" overflow="scroll" lineGap="3" defaultItem="ui://m7iejg46yvb27ik1" selectionController="index" autoClearItems="true">
|
||||
<relation target="" sidePair="middle-middle,left-left"/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -24,7 +25,7 @@
|
|||
<image id="n87_csp4" name="n87" src="csp47i44" fileName="component/nav/sd.png" xy="283,253" size="1085,56" visible="false">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<component id="n86_csp4" name="btn_close" src="csp47i42" fileName="btnclose.xml" xy="1288,-10" size="116,112" aspect="true">
|
||||
<component id="n86_csp4" name="btn_close" src="csp47i42" fileName="btnclose.xml" xy="1323,-15" size="83,81" aspect="true">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
<text id="n79_ovii" name="n79" xy="170,70" size="178,42" visible="false" font="Microsoft YaHei" fontSize="30" color="#fffff6" vAlign="middle" autoSize="none" text="统计">
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1200,603">
|
||||
<component size="1396,690">
|
||||
<controller name="fandian" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n85_nuxq" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="0,0" size="1196,607">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<list id="n73_ozaz" name="lst_rewards" xy="38,158" size="1114,419" group="n79_ozaz" overflow="scroll" defaultItem="ui://m7iejg46gls1hif" autoClearItems="true">
|
||||
<component id="n88_hz87" name="n88" src="hz877iku" fileName="mgr/Win_BaseWindow_H698.xml" xy="0,0" size="1396,690" group="n89_hz87">
|
||||
<Button icon="ui://m7iejg46hz877ile"/>
|
||||
</component>
|
||||
<group id="n89_hz87" name="bg" xy="0,0" size="1396,690"/>
|
||||
<image id="n90_hz87" name="n90" src="t8gf7ikj" fileName="images/Rectangle 350.png" xy="17,591" size="1361,83"/>
|
||||
<list id="n73_ozaz" name="lst_rewards" xy="38,123" size="1319,461" group="n79_ozaz" overflow="scroll" defaultItem="ui://m7iejg46gls1hif" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -14,19 +16,19 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<image id="n83_s98c" name="n83" src="csp47i44" fileName="component/nav/sd.png" xy="38,91" size="1125,56" group="n79_ozaz">
|
||||
<image id="n83_s98c" name="n83" src="csp47i44" fileName="component/nav/sd.png" xy="38,62" size="1321,56" group="n79_ozaz">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<text id="n75_ozaz" name="n75" xy="102,102" size="100,34" group="n78_ozaz" font="Microsoft YaHei" fontSize="24" color="#aa3300" vAlign="middle" text="游戏名称"/>
|
||||
<text id="n76_ozaz" name="n76" xy="525,102" size="148,34" group="n78_ozaz" font="Microsoft YaHei" fontSize="24" color="#aa3300" align="center" vAlign="middle" text="我的赠送表情"/>
|
||||
<text id="n77_ozaz" name="n77" xy="932,102" size="172,34" group="n78_ozaz" font="Microsoft YaHei" fontSize="24" color="#aa3300" align="center" vAlign="middle" text="下级的赠送表情"/>
|
||||
<text id="n84_zgn4" name="n84" xy="288,102" size="100,34" group="n78_ozaz" visible="false" font="Microsoft YaHei" fontSize="24" color="#367256" align="center" vAlign="middle" text="洗牌返点">
|
||||
<text id="n75_ozaz" name="n75" xy="102,73" size="100,34" group="n78_ozaz" font="Microsoft YaHei" fontSize="24" color="#aa3300" vAlign="middle" text="游戏名称"/>
|
||||
<text id="n76_ozaz" name="n76" xy="625,73" size="148,34" group="n78_ozaz" font="Microsoft YaHei" fontSize="24" color="#aa3300" align="center" vAlign="middle" text="我的赠送表情"/>
|
||||
<text id="n77_ozaz" name="n77" xy="1082,73" size="172,34" group="n78_ozaz" font="Microsoft YaHei" fontSize="24" color="#aa3300" align="center" vAlign="middle" text="下级的赠送表情"/>
|
||||
<text id="n84_zgn4" name="n84" xy="288,73" size="100,34" group="n78_ozaz" visible="false" font="Microsoft YaHei" fontSize="24" color="#367256" align="center" vAlign="middle" text="洗牌返点">
|
||||
<gearDisplay controller="fandian" pages="1"/>
|
||||
</text>
|
||||
<text id="n86_cpin" name="n86" xy="577,107" size="100,34" group="n78_ozaz" visible="false" font="Microsoft YaHei" fontSize="24" color="#367256" align="center" vAlign="middle" text="按抽返点"/>
|
||||
<group id="n78_ozaz" name="n78" xy="102,102" size="999,39" group="n79_ozaz"/>
|
||||
<component id="n87_imp5" name="btn_piliang" src="imp57ihy" fileName="mgr/component/reward/btn_piliang.xml" xy="916,3" size="192,77" group="n79_ozaz"/>
|
||||
<group id="n79_ozaz" name="index0" xy="38,3" size="1125,574" advanced="true"/>
|
||||
<component id="n7_r96t" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1114,-26" controller="style,0"/>
|
||||
<text id="n86_cpin" name="n86" xy="577,78" size="100,34" group="n78_ozaz" visible="false" font="Microsoft YaHei" fontSize="24" color="#367256" align="center" vAlign="middle" text="按抽返点"/>
|
||||
<group id="n78_ozaz" name="n78" xy="102,73" size="1152,39" group="n79_ozaz"/>
|
||||
<component id="n87_imp5" name="btn_piliang" src="imp57ihy" fileName="mgr/component/reward/btn_piliang.xml" xy="1168,596" size="192,77" group="n79_ozaz"/>
|
||||
<group id="n79_ozaz" name="index0" xy="38,62" size="1322,611" advanced="true"/>
|
||||
<component id="n7_r96t" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1319,-17" controller="style,0"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,45 +1,45 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="956,621">
|
||||
<component size="956,588">
|
||||
<controller name="type" pages="0,,1,,2,,3," selected="0"/>
|
||||
<controller name="show_superior" pages="0,,1,,2,,3," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n86_nuxq" name="bg" src="iaes7ic8" fileName="images/caoZuoSheZhi/Group 548.png" xy="0,0" size="956,621">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<image id="n83_cvc8" name="n83" src="cvc87i60" fileName="mgr/imgs/fagpack/bt_caozuoshezhi.png" xy="350,16" visible="false"/>
|
||||
<component id="n81_cvc8" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="875,-22" controller="style,0">
|
||||
<component id="n87_hz87" name="n87" src="hz877ikv" fileName="mgr/Win_BaseWindow_H588.xml" xy="0,0" size="956,588" group="n88_hz87">
|
||||
<Button icon="ui://m7iejg46hz877il3"/>
|
||||
</component>
|
||||
<group id="n88_hz87" name="bg" xy="0,0" size="956,588"/>
|
||||
<component id="n81_cvc8" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="881,-11" controller="style,0">
|
||||
<Button icon="ui://m7iejg46ilon7iax"/>
|
||||
</component>
|
||||
<component id="n84_cvc8" name="btn_head" src="ilon7ibj" fileName="mgr/component/numberHpAlone/Head2.xml" xy="304,111" size="122,122" group="n58_hsbh" scale="1.1,1.1"/>
|
||||
<text id="n56_hsbh" name="tex_name" xy="448,120" size="166,39" group="n58_hsbh" font="Microsoft YaHei" fontSize="28" color="#444444" bold="true" singleLine="true" autoClearText="true" text="fdsfdsfdsfd">
|
||||
<component id="n84_cvc8" name="btn_head" src="ilon7ibj" fileName="mgr/component/numberHpAlone/Head2.xml" xy="304,81" size="122,122" group="n58_hsbh" scale="1.1,1.1"/>
|
||||
<text id="n56_hsbh" name="tex_name" xy="448,90" size="166,39" group="n58_hsbh" font="Microsoft YaHei" fontSize="28" color="#444444" bold="true" singleLine="true" autoClearText="true" text="fdsfdsfdsfd">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</text>
|
||||
<text id="n57_hsbh" name="tex_id" xy="448,160" size="106,34" group="n58_hsbh" font="Microsoft YaHei" fontSize="24" color="#444444" bold="true" singleLine="true" autoClearText="true" text="dfsdfdsf">
|
||||
<text id="n57_hsbh" name="tex_id" xy="448,130" size="106,34" group="n58_hsbh" font="Microsoft YaHei" fontSize="24" color="#444444" bold="true" singleLine="true" autoClearText="true" text="dfsdfdsf">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</text>
|
||||
<group id="n58_hsbh" name="n58" xy="304,111" size="314,122" advanced="true"/>
|
||||
<text id="n65_tqi8" name="n65" xy="448,195" size="103,34" group="n70_tqi8" font="Microsoft YaHei" fontSize="24" color="#444444" vAlign="middle" bold="true" text="上级ID:">
|
||||
<group id="n58_hsbh" name="n58" xy="304,81" size="314,122" advanced="true"/>
|
||||
<text id="n65_tqi8" name="n65" xy="448,165" size="103,34" group="n70_tqi8" font="Microsoft YaHei" fontSize="24" color="#444444" vAlign="middle" bold="true" text="上级ID:">
|
||||
<gearDisplay controller="show_superior" pages="0,1"/>
|
||||
</text>
|
||||
<text id="n66_tqi8" name="tex_superior_id" xy="534,195" size="94,34" group="n70_tqi8" font="Microsoft YaHei" fontSize="24" color="#444444" vAlign="middle" bold="true" singleLine="true" autoClearText="true" text="123456">
|
||||
<text id="n66_tqi8" name="tex_superior_id" xy="534,165" size="94,34" group="n70_tqi8" font="Microsoft YaHei" fontSize="24" color="#444444" vAlign="middle" bold="true" singleLine="true" autoClearText="true" text="123456">
|
||||
<gearDisplay controller="show_superior" pages="0,1"/>
|
||||
<relation target="n65_tqi8" sidePair="left-right"/>
|
||||
</text>
|
||||
<list id="n67_tqi8" name="lst_superior" xy="390,220" size="538,136" group="n70_tqi8" layout="flow_hz" overflow="scroll" scroll="horizontal" lineGap="20" colGap="40" lineItemCount="3" defaultItem="ui://m7iejg46kwi0hli" autoClearItems="true">
|
||||
<list id="n67_tqi8" name="lst_superior" xy="390,190" size="538,136" group="n70_tqi8" layout="flow_hz" overflow="scroll" scroll="horizontal" lineGap="20" colGap="40" lineItemCount="3" defaultItem="ui://m7iejg46kwi0hli" autoClearItems="true">
|
||||
<gearDisplay controller="show_superior" pages="2"/>
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<component id="n68_tqi8" name="btn_superior" src="kwi0hlh" fileName="mgr/component/member/btn_superior.xml" xy="803,212" group="n70_tqi8" visible="false">
|
||||
<component id="n68_tqi8" name="btn_superior" src="kwi0hlh" fileName="mgr/component/member/btn_superior.xml" xy="803,182" group="n70_tqi8" visible="false">
|
||||
<Button controller="show_superior" page="1"/>
|
||||
</component>
|
||||
<component id="n69_tqi8" name="btn_deploy" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="800,154" size="151,54" group="n70_tqi8" scale="0.8,0.8">
|
||||
<component id="n69_tqi8" name="btn_deploy" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="800,124" size="151,54" group="n70_tqi8" scale="0.8,0.8">
|
||||
<gearDisplay controller="show_superior" pages="3"/>
|
||||
<Button title=" " icon="ui://m7iejg46ruljhmn"/>
|
||||
</component>
|
||||
<group id="n70_tqi8" name="group_relation" xy="390,154" size="561,202" visible="false" advanced="true"/>
|
||||
<group id="n70_tqi8" name="group_relation" xy="390,124" size="561,202" visible="false" advanced="true"/>
|
||||
<image id="n62_tqi8" name="n62" src="kwi0hl0" fileName="mgr/imgs/member/glybz.png" xy="294,104" group="n64_tqi8">
|
||||
<gearDisplay controller="type" pages="1,2"/>
|
||||
</image>
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
<gearDisplay controller="type" pages="3"/>
|
||||
</image>
|
||||
<group id="n64_tqi8" name="group_role" xy="294,104" size="36,36"/>
|
||||
<list id="n73_tqi8" name="lst_mng" xy="94,267" size="776,328" layout="flow_hz" overflow="scroll" lineGap="23" colGap="1" defaultItem="ui://m7iejg46kwi0hlb" vAlign="middle" autoClearItems="true">
|
||||
<list id="n73_tqi8" name="lst_mng" xy="94,230" size="776,324" layout="flow_hz" overflow="scroll" lineGap="23" colGap="1" defaultItem="ui://m7iejg46kwi0hlb" vAlign="middle" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
|
|||
|
|
@ -3,10 +3,11 @@
|
|||
<controller name="type" pages="0,,1,,2,,3," selected="0"/>
|
||||
<controller name="show_superior" pages="0,,1,,2,,3," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n93_ilon" name="n93" src="ilon7ibn" fileName="mgr/imgs/addMenberAlone/Group 567.png" xy="0,0"/>
|
||||
<component id="n88_tayq" name="btn_close" src="ilon7ibr" fileName="mgr/component/addMenberAlone/btnclose.xml" xy="840,-22">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
<component id="n95_hz87" name="n95" src="hz877iku" fileName="mgr/Win_BaseWindow_H698.xml" xy="0,0" size="956,690" group="n96_hz87">
|
||||
<Button icon="ui://m7iejg46hz877il0"/>
|
||||
</component>
|
||||
<group id="n96_hz87" name="bg" xy="0,0" size="956,690"/>
|
||||
<component id="n97_hz87" name="btn_close" src="ilon7ib9" fileName="mgr/component/numberHpAlone/btn_close.xml" xy="844,-19" size="124,118"/>
|
||||
<component id="n82_jr1l" name="btn_qd" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="178,492" size="276,115" controller="style,0">
|
||||
<Button icon="ui://m7iejg46ilon7ibp"/>
|
||||
</component>
|
||||
|
|
|
|||
|
|
@ -3,9 +3,10 @@
|
|||
<controller name="type" pages="0,,1,,2,,3," selected="0"/>
|
||||
<controller name="show_superior" pages="0,,1,,2,,3," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n92_nuxq" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="0,0" size="960,595">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<component id="n105_hz87" name="n105" src="hz877ikv" fileName="mgr/Win_BaseWindow_H588.xml" xy="0,0" size="960,588" group="n106_hz87">
|
||||
<Button icon="ui://m7iejg46hz877ikz"/>
|
||||
</component>
|
||||
<group id="n106_hz87" name="bg" xy="0,0" size="960,588"/>
|
||||
<component id="n88_tayq" name="btn_close" src="csp47i42" fileName="btnclose.xml" xy="876,-5">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
|
|
@ -18,21 +19,21 @@
|
|||
<text id="n80_jr1l" name="n80" xy="519,238" size="234,45" visible="false" font="Microsoft YaHei" fontSize="30" color="#367256" vAlign="middle" autoSize="none" text="名字:"/>
|
||||
<text id="n81_jr1l" name="n81" xy="519,300" size="234,45" visible="false" font="Microsoft YaHei" fontSize="30" color="#367256" vAlign="middle" autoSize="none" text="ID:"/>
|
||||
<image id="n91_j5s5" name="n91" src="j5s57i8j" fileName="mgr/imgs/fagpack/cy_txt-tjcy.png" xy="372,15" visible="false"/>
|
||||
<image id="n93_imp5" name="n93" src="ilon7ib7" fileName="mgr/imgs/numberHpAlone/image.png" xy="113,143" size="200,200" group="n99_imp5">
|
||||
<image id="n93_imp5" name="n93" src="ilon7ib7" fileName="mgr/imgs/numberHpAlone/image.png" xy="93,133" size="200,200" group="n99_imp5">
|
||||
<relation target="" sidePair="center-center,middle-middle"/>
|
||||
</image>
|
||||
<component id="n94_imp5" name="btn_head" src="ilon7ibj" fileName="mgr/component/numberHpAlone/Head2.xml" xy="123,154" size="180,180" group="n99_imp5" touchable="false">
|
||||
<component id="n94_imp5" name="btn_head" src="ilon7ibj" fileName="mgr/component/numberHpAlone/Head2.xml" xy="103,144" size="180,180" group="n99_imp5" touchable="false">
|
||||
<relation target="" sidePair="center-center,middle-middle"/>
|
||||
</component>
|
||||
<image id="n95_imp5" name="n95" src="oviihz1" fileName="font/images/btn_keyboard/bg_05.png" pkg="27vd145b" xy="435,198" group="n99_imp5" visible="false"/>
|
||||
<image id="n96_imp5" name="n96" src="oviihz1" fileName="font/images/btn_keyboard/bg_05.png" pkg="27vd145b" xy="436,260" group="n99_imp5" visible="false"/>
|
||||
<text id="n97_imp5" name="tex_name" xy="559,120" size="363,84" group="n99_imp5" font="Microsoft YaHei" fontSize="64" color="#444444" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="444444"/>
|
||||
<text id="n98_imp5" name="tex_id" xy="559,212" size="363,69" group="n99_imp5" font="Microsoft YaHei" fontSize="52" color="#444444" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="444444"/>
|
||||
<text id="n100_nunk" name="tex_parentid" xy="559,289" size="363,69" group="n99_imp5" font="Microsoft YaHei" fontSize="52" color="#444444" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="444444"/>
|
||||
<text id="n101_nunk" name="n101" xy="343,120" size="196,84" group="n99_imp5" font="Microsoft YaHei" fontSize="64" align="right" autoSize="none" text="昵称:"/>
|
||||
<text id="n102_nunk" name="n102" xy="343,214" size="196,71" group="n99_imp5" font="Microsoft YaHei" fontSize="52" align="right" autoSize="none" text="用户id:"/>
|
||||
<text id="n103_nunk" name="n103" xy="343,284" size="196,71" group="n99_imp5" font="Microsoft YaHei" fontSize="52" align="right" autoSize="none" text="上级id:"/>
|
||||
<group id="n99_imp5" name="n99" xy="113,120" size="933,238" advanced="true"/>
|
||||
<image id="n104_nunk" name="n104" src="nunk7ij1" fileName="images/user1.png" xy="336,13" size="293,61"/>
|
||||
<image id="n95_imp5" name="n95" src="oviihz1" fileName="font/images/btn_keyboard/bg_05.png" pkg="27vd145b" xy="415,188" group="n99_imp5" visible="false"/>
|
||||
<image id="n96_imp5" name="n96" src="oviihz1" fileName="font/images/btn_keyboard/bg_05.png" pkg="27vd145b" xy="416,250" group="n99_imp5" visible="false"/>
|
||||
<text id="n97_imp5" name="tex_name" xy="539,110" size="363,84" group="n99_imp5" font="Microsoft YaHei" fontSize="64" color="#444444" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="444444"/>
|
||||
<text id="n98_imp5" name="tex_id" xy="539,202" size="363,69" group="n99_imp5" font="Microsoft YaHei" fontSize="52" color="#444444" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="444444"/>
|
||||
<text id="n100_nunk" name="tex_parentid" xy="539,279" size="363,69" group="n99_imp5" font="Microsoft YaHei" fontSize="52" color="#444444" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="444444"/>
|
||||
<text id="n101_nunk" name="n101" xy="323,110" size="196,84" group="n99_imp5" font="Microsoft YaHei" fontSize="64" align="right" autoSize="none" text="昵称:"/>
|
||||
<text id="n102_nunk" name="n102" xy="323,204" size="196,71" group="n99_imp5" font="Microsoft YaHei" fontSize="52" align="right" autoSize="none" text="用户id:"/>
|
||||
<text id="n103_nunk" name="n103" xy="323,274" size="196,71" group="n99_imp5" font="Microsoft YaHei" fontSize="52" align="right" autoSize="none" text="上级id:"/>
|
||||
<group id="n99_imp5" name="n99" xy="93,110" size="933,238" advanced="true"/>
|
||||
<image id="n104_nunk" name="n104" src="nunk7ij1" fileName="images/user1.png" xy="336,13" size="293,61" visible="false"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,8 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1196,700">
|
||||
<component size="1196,690">
|
||||
<displayList>
|
||||
<image id="n10_avqi" name="n10" src="avqi7ijq" fileName="images/Group 691.png" xy="-5,2" size="1200,696"/>
|
||||
<list id="n1_8h20" name="lst_allplays" xy="40,163" size="1105,497" group="n6_8h20" overflow="scroll" lineGap="7" defaultItem="ui://m7iejg46kwdo7i98" autoClearItems="true">
|
||||
<component id="n11_hz87" name="n11" src="hz877iku" fileName="mgr/Win_BaseWindow_H698.xml" xy="0,0" size="1196,690" group="n12_hz87">
|
||||
<Button icon="ui://m7iejg46hz877iok"/>
|
||||
</component>
|
||||
<group id="n12_hz87" name="bg" xy="0,0" size="1196,690"/>
|
||||
<list id="n1_8h20" name="lst_allplays" xy="40,117" size="1105,543" group="n6_8h20" overflow="scroll" lineGap="7" defaultItem="ui://m7iejg46kwdo7i98" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -10,14 +13,13 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<text id="n3_8h20" name="n3" xy="117,118" size="124,42" group="n5_8h20" font="Microsoft YaHei" fontSize="30" color="#aa3300" vAlign="middle" text="玩法名称"/>
|
||||
<text id="n4_8h20" name="n4" xy="788,116" size="324,42" group="n5_8h20" visible="false" font="Microsoft YaHei" fontSize="30" color="#aa3300" align="center" vAlign="middle" text="操作(勾选即为快速开始)"/>
|
||||
<group id="n5_8h20" name="n5" xy="117,116" size="995,44" group="n6_8h20"/>
|
||||
<text id="n3_8h20" name="n3" xy="112,73" size="124,42" group="n5_8h20" font="Microsoft YaHei" fontSize="30" color="#aa3300" vAlign="middle" text="玩法名称"/>
|
||||
<text id="n4_8h20" name="n4" xy="783,71" size="324,42" group="n5_8h20" visible="false" font="Microsoft YaHei" fontSize="30" color="#aa3300" align="center" vAlign="middle" text="操作(勾选即为快速开始)"/>
|
||||
<group id="n5_8h20" name="n5" xy="112,71" size="995,44" group="n6_8h20"/>
|
||||
<image id="n2_8h20" name="n2" src="csp47i44" fileName="component/nav/sd.png" xy="20,108" size="1160,0" group="n6_8h20">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<group id="n6_8h20" name="index0" xy="20,108" size="1160,552" advanced="true"/>
|
||||
<component id="n7_8h20" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1082,-12" controller="style,0"/>
|
||||
<text id="n9_avqi" name="n9" xy="397,1" size="391,84" font="Microsoft YaHei" fontSize="60" color="#ffcc99" align="center" vAlign="middle" autoSize="none" text="设置玩法"/>
|
||||
<group id="n6_8h20" name="index0" xy="20,71" size="1160,589" advanced="true"/>
|
||||
<component id="n7_8h20" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1118,-17" controller="style,0"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -7,59 +7,59 @@
|
|||
<component id="n63_omkm" name="btn_close" src="csp47i42" fileName="btnclose.xml" xy="660,-22">
|
||||
<relation target="" sidePair="right-right,top-top"/>
|
||||
</component>
|
||||
<component id="n98_l7wn" name="btn_del" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="51,459" size="193,85" group="n120_l7wn">
|
||||
<component id="n98_l7wn" name="btn_del" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="48,459" size="193,85" group="n120_l7wn">
|
||||
<Button title="删除" titleFontSize="1" icon="ui://27vd145bl7wn7iiq"/>
|
||||
</component>
|
||||
<component id="n99_l7wn" name="btn_ok" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="475,459" size="193,85" group="n120_l7wn">
|
||||
<component id="n99_l7wn" name="btn_ok" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="472,459" size="193,85" group="n120_l7wn">
|
||||
<Button title="确认" titleFontSize="1" icon="ui://27vd145bl7wn7iip"/>
|
||||
</component>
|
||||
<component id="n100_l7wn" name="btn_1" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="51,163" size="193,85" group="n120_l7wn">
|
||||
<component id="n100_l7wn" name="btn_1" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="48,163" size="193,85" group="n120_l7wn">
|
||||
<Button title="1" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n101_l7wn" name="btn_2" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="263,163" size="193,85" group="n120_l7wn">
|
||||
<component id="n101_l7wn" name="btn_2" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="260,163" size="193,85" group="n120_l7wn">
|
||||
<Button title="2" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n102_l7wn" name="btn_3" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="475,163" size="193,85" group="n120_l7wn">
|
||||
<component id="n102_l7wn" name="btn_3" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="472,163" size="193,85" group="n120_l7wn">
|
||||
<Button title="3" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n103_l7wn" name="btn_4" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="51,262" size="193,85" group="n120_l7wn">
|
||||
<component id="n103_l7wn" name="btn_4" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="48,262" size="193,85" group="n120_l7wn">
|
||||
<Button title="4" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n104_l7wn" name="btn_5" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="263,262" size="193,85" group="n120_l7wn">
|
||||
<component id="n104_l7wn" name="btn_5" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="260,262" size="193,85" group="n120_l7wn">
|
||||
<Button title="5" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n105_l7wn" name="btn_6" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="475,262" size="193,85" group="n120_l7wn">
|
||||
<component id="n105_l7wn" name="btn_6" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="472,262" size="193,85" group="n120_l7wn">
|
||||
<Button title="6" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n106_l7wn" name="btn_7" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="51,364" size="193,85" group="n120_l7wn">
|
||||
<component id="n106_l7wn" name="btn_7" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="48,364" size="193,85" group="n120_l7wn">
|
||||
<Button title="7" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n107_l7wn" name="btn_8" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="263,364" size="193,85" group="n120_l7wn">
|
||||
<component id="n107_l7wn" name="btn_8" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="260,364" size="193,85" group="n120_l7wn">
|
||||
<Button title="8" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n108_l7wn" name="btn_9" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="475,364" size="193,85" group="n120_l7wn">
|
||||
<component id="n108_l7wn" name="btn_9" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="472,364" size="193,85" group="n120_l7wn">
|
||||
<Button title="9" titleFontSize="1" icon="ui://27vd145bb8zx7i4z"/>
|
||||
</component>
|
||||
<component id="n109_l7wn" name="btn_0" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="264,459" size="98,85" group="n120_l7wn">
|
||||
<component id="n109_l7wn" name="btn_0" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="261,459" size="98,85" group="n120_l7wn">
|
||||
<Button title="0" titleFontSize="1" icon="ui://27vd145bl7wn7iir"/>
|
||||
</component>
|
||||
<component id="n121_l7wn" name="btn_c" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="364,459" size="98,85" group="n120_l7wn">
|
||||
<component id="n121_l7wn" name="btn_c" src="c6bub0" fileName="component/dismiss_room/btn_keyboard/btn_keyboard.xml" pkg="27vd145b" xy="361,459" size="98,85" group="n120_l7wn">
|
||||
<Button title="0" titleFontSize="1" icon="ui://27vd145bp747chf"/>
|
||||
</component>
|
||||
<image id="n111_l7wn" name="n111" src="b8zx7i51" fileName="font/images/btn_keyboard/shuzi_02.png" pkg="27vd145b" xy="131,179" group="n120_l7wn"/>
|
||||
<image id="n112_l7wn" name="n112" src="b8zx7i52" fileName="font/images/btn_keyboard/shuzi_03.png" pkg="27vd145b" xy="342,179" group="n120_l7wn"/>
|
||||
<image id="n113_l7wn" name="n113" src="b8zx7i53" fileName="font/images/btn_keyboard/shuzi_04.png" pkg="27vd145b" xy="549,179" group="n120_l7wn"/>
|
||||
<image id="n114_l7wn" name="n114" src="b8zx7i54" fileName="font/images/btn_keyboard/shuzi_05.png" pkg="27vd145b" xy="131,279" group="n120_l7wn"/>
|
||||
<image id="n115_l7wn" name="n115" src="b8zx7i55" fileName="font/images/btn_keyboard/shuzi_06.png" pkg="27vd145b" xy="345,279" group="n120_l7wn"/>
|
||||
<image id="n116_l7wn" name="n116" src="b8zx7i56" fileName="font/images/btn_keyboard/shuzi_07.png" pkg="27vd145b" xy="554,279" group="n120_l7wn"/>
|
||||
<image id="n117_l7wn" name="n117" src="b8zx7i57" fileName="font/images/btn_keyboard/shuzi_08.png" pkg="27vd145b" xy="133,385" group="n120_l7wn"/>
|
||||
<image id="n118_l7wn" name="n118" src="b8zx7i58" fileName="font/images/btn_keyboard/shuzi_09.png" pkg="27vd145b" xy="344,385" group="n120_l7wn"/>
|
||||
<image id="n119_l7wn" name="n119" src="b8zx7i59" fileName="font/images/btn_keyboard/shuzi_10.png" pkg="27vd145b" xy="556,385" group="n120_l7wn"/>
|
||||
<group id="n120_l7wn" name="input_panel" xy="51,163" size="617,381" group="n92_omkm"/>
|
||||
<image id="n89_omkm" name="n89" src="oviihz1" fileName="font/images/btn_keyboard/bg_05.png" pkg="27vd145b" xy="51,77" group="n91_omkm"/>
|
||||
<text id="n90_omkm" name="tex_num" xy="58,79" size="609,70" group="n91_omkm" font="Microsoft YaHei" fontSize="36" color="#367256" vAlign="middle" autoSize="none" text="123"/>
|
||||
<group id="n91_omkm" name="show" xy="51,77" size="616,78" group="n92_omkm"/>
|
||||
<group id="n92_omkm" name="n92" xy="51,77" size="617,467" advanced="true">
|
||||
<image id="n111_l7wn" name="n111" src="b8zx7i51" fileName="font/images/btn_keyboard/shuzi_02.png" pkg="27vd145b" xy="128,179" group="n120_l7wn"/>
|
||||
<image id="n112_l7wn" name="n112" src="b8zx7i52" fileName="font/images/btn_keyboard/shuzi_03.png" pkg="27vd145b" xy="339,179" group="n120_l7wn"/>
|
||||
<image id="n113_l7wn" name="n113" src="b8zx7i53" fileName="font/images/btn_keyboard/shuzi_04.png" pkg="27vd145b" xy="546,179" group="n120_l7wn"/>
|
||||
<image id="n114_l7wn" name="n114" src="b8zx7i54" fileName="font/images/btn_keyboard/shuzi_05.png" pkg="27vd145b" xy="128,279" group="n120_l7wn"/>
|
||||
<image id="n115_l7wn" name="n115" src="b8zx7i55" fileName="font/images/btn_keyboard/shuzi_06.png" pkg="27vd145b" xy="342,279" group="n120_l7wn"/>
|
||||
<image id="n116_l7wn" name="n116" src="b8zx7i56" fileName="font/images/btn_keyboard/shuzi_07.png" pkg="27vd145b" xy="551,279" group="n120_l7wn"/>
|
||||
<image id="n117_l7wn" name="n117" src="b8zx7i57" fileName="font/images/btn_keyboard/shuzi_08.png" pkg="27vd145b" xy="130,385" group="n120_l7wn"/>
|
||||
<image id="n118_l7wn" name="n118" src="b8zx7i58" fileName="font/images/btn_keyboard/shuzi_09.png" pkg="27vd145b" xy="341,385" group="n120_l7wn"/>
|
||||
<image id="n119_l7wn" name="n119" src="b8zx7i59" fileName="font/images/btn_keyboard/shuzi_10.png" pkg="27vd145b" xy="553,385" group="n120_l7wn"/>
|
||||
<group id="n120_l7wn" name="input_panel" xy="48,163" size="617,381" group="n92_omkm"/>
|
||||
<image id="n89_omkm" name="n89" src="oviihz1" fileName="font/images/btn_keyboard/bg_05.png" pkg="27vd145b" xy="48,77" size="623,73" group="n91_omkm"/>
|
||||
<text id="n90_omkm" name="tex_num" xy="55,79" size="609,70" group="n91_omkm" font="Microsoft YaHei" fontSize="36" color="#367256" vAlign="middle" autoSize="none" text="123"/>
|
||||
<group id="n91_omkm" name="show" xy="48,77" size="623,73" group="n92_omkm"/>
|
||||
<group id="n92_omkm" name="n92" xy="48,77" size="623,467" advanced="true">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</group>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="978,603">
|
||||
<displayList>
|
||||
<image id="n51_nuxq" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="0,0" size="978,603">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<component id="n48_cvc8" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="922,-20" controller="style,0"/>
|
||||
<list id="n4_l0s4" name="lst_log" xy="37,154" size="903,349" selectionMode="none" overflow="scroll" lineGap="3" colGap="43" defaultItem="ui://m7iejg46kk3uhrq" autoClearItems="true">
|
||||
<component id="n52_hz87" name="n52" src="hz877ikv" fileName="mgr/Win_BaseWindow_H588.xml" xy="0,0" size="978,603" group="n53_hz87">
|
||||
<Button icon="ui://m7iejg46hz877ild"/>
|
||||
</component>
|
||||
<group id="n53_hz87" name="bg" xy="0,0" size="978,603"/>
|
||||
<component id="n48_cvc8" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="903,-11" controller="style,0"/>
|
||||
<list id="n4_l0s4" name="lst_log" xy="37,135" size="903,368" selectionMode="none" overflow="scroll" lineGap="3" colGap="43" defaultItem="ui://m7iejg46kk3uhrq" autoClearItems="true">
|
||||
<item/>
|
||||
<item/>
|
||||
<item/>
|
||||
|
|
@ -16,19 +17,20 @@
|
|||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<image id="n49_cvc8" name="n49" src="csp47i44" fileName="component/nav/sd.png" xy="35,90" size="907,56" group="n25_kk3u">
|
||||
<image id="n49_cvc8" name="n49" src="csp47i44" fileName="component/nav/sd.png" xy="35,70" size="907,56" group="n25_kk3u">
|
||||
<relation target="" sidePair="width-width"/>
|
||||
</image>
|
||||
<text id="n38_sbng" name="n38" xy="90,102" size="98,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="玩家昵称"/>
|
||||
<text id="n40_sbng" name="n40" xy="341,102" size="75,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="玩家ID"/>
|
||||
<text id="n42_sbng" name="n42" xy="550,102" size="98,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="提取积分"/>
|
||||
<text id="n44_sbng" name="n44" xy="794,102" size="51,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#367256" text="日期"/>
|
||||
<group id="n47_sbng" name="n47" xy="90,102" size="755,34" group="n25_kk3u"/>
|
||||
<group id="n25_kk3u" name="n25" xy="35,90" size="907,56" advanced="true"/>
|
||||
<component id="n32_p747" name="btn_date1" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="98,513" group="n31_kk3u"/>
|
||||
<text id="n33_p747" name="n33" xy="404,527" size="24,29" group="n31_kk3u" font="Microsoft YaHei" fontSize="20" color="#495f55" text="至"/>
|
||||
<component id="n34_p747" name="btn_date2" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="446,513" group="n31_kk3u"/>
|
||||
<component id="n35_p747" name="btn_search" src="dzx8hbb" fileName="component/Btn/btn_req.xml" xy="762,513" group="n31_kk3u" visible="false"/>
|
||||
<group id="n31_kk3u" name="n31" xy="98,513" size="802,74" advanced="true"/>
|
||||
<text id="n38_sbng" name="n38" xy="90,82" size="100,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="玩家昵称"/>
|
||||
<text id="n40_sbng" name="n40" xy="341,82" size="77,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="玩家ID"/>
|
||||
<text id="n42_sbng" name="n42" xy="550,82" size="100,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="提取积分"/>
|
||||
<text id="n44_sbng" name="n44" xy="794,82" size="52,34" group="n47_sbng" font="Microsoft YaHei" fontSize="24" color="#aa3300" text="日期"/>
|
||||
<group id="n47_sbng" name="n47" xy="90,82" size="755,34" group="n25_kk3u"/>
|
||||
<group id="n25_kk3u" name="n25" xy="35,70" size="907,56" advanced="true"/>
|
||||
<component id="n32_p747" name="btn_date1" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="148,513" group="n31_kk3u"/>
|
||||
<text id="n33_p747" name="n33" xy="454,527" size="24,29" group="n31_kk3u" visible="false" font="Microsoft YaHei" fontSize="20" color="#495f55" text="至"/>
|
||||
<component id="n34_p747" name="btn_date2" src="n5sxha2" fileName="component/Btn/date_set/btn_date.xml" xy="496,513" group="n31_kk3u"/>
|
||||
<component id="n35_p747" name="btn_search" src="dzx8hbb" fileName="component/Btn/btn_req.xml" xy="812,513" group="n31_kk3u" visible="false"/>
|
||||
<image id="n54_hz87" name="n54" src="m16m7ig8" fileName="component/Btn/date_set/Polygon 3.png" xy="456,525" group="n31_kk3u"/>
|
||||
<group id="n31_kk3u" name="n31" xy="148,513" size="802,74" advanced="true"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -3,22 +3,23 @@
|
|||
<controller name="ctr" pages="0,,1," selected="0"/>
|
||||
<controller name="type" pages="0,,1,,2," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n70_nuxq" name="bg" src="yscl7ibt" fileName="images/bxx/Group 570.png" xy="0,0">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<component id="n71_hz87" name="n71" src="hz877ikv" fileName="mgr/Win_BaseWindow_H588.xml" xy="0,0" size="956,588" group="n72_hz87">
|
||||
<Button icon="ui://m7iejg46hz877ikw"/>
|
||||
</component>
|
||||
<group id="n72_hz87" name="bg" xy="0,0" size="956,588"/>
|
||||
<image id="n51_r0qx" name="n51" src="csp47i46" fileName="mgr/imgs/fagpack/bt_baoxianxiang.png" xy="357,15" visible="false"/>
|
||||
<component id="n52_r0qx" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="843,-11" controller="style,0">
|
||||
<component id="n52_r0qx" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="881,-11" controller="style,0">
|
||||
<Button icon="ui://m7iejg46ilon7iax"/>
|
||||
</component>
|
||||
<list id="n35_r8m8" name="bxx_list" xy="38,106" size="798,78" layout="row" overflow="scroll" scroll="horizontal" scrollBarFlags="2" lineGap="5" colGap="11" defaultItem="ui://m7iejg46r0qx7i70" vAlign="bottom" autoClearItems="true">
|
||||
<list id="n35_r8m8" name="bxx_list" xy="38,76" size="798,78" layout="row" overflow="scroll" scroll="horizontal" scrollBarFlags="2" lineGap="5" colGap="11" defaultItem="ui://m7iejg46r0qx7i70" vAlign="bottom" autoClearItems="true">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<image id="n55_r0qx" name="n55" src="yscl7ibx" fileName="images/bxx/Rectangle 373.png" xy="351,194" size="297,74" group="n28_r8m8"/>
|
||||
<image id="n56_r0qx" name="n56" src="yscl7ibx" fileName="images/bxx/Rectangle 373.png" xy="351,281" size="297,74" group="n28_r8m8"/>
|
||||
<text id="n3_nk4v" name="n3" xy="70,209" size="281,49" group="n28_r8m8" font="Microsoft YaHei" fontSize="32" color="#aa3300" align="right" autoSize="none" bold="true" text="剩余未提取积分:"/>
|
||||
<text id="n4_nk4v" name="n4" xy="119,296" size="247,44" group="n28_r8m8" font="Microsoft YaHei" fontSize="32" color="#aa3300" align="right" autoSize="none" bold="true" text="今日收入积分:">
|
||||
<image id="n55_r0qx" name="n55" src="yscl7ibx" fileName="images/bxx/Rectangle 373.png" xy="351,173" size="297,74" group="n28_r8m8"/>
|
||||
<image id="n56_r0qx" name="n56" src="yscl7ibx" fileName="images/bxx/Rectangle 373.png" xy="351,274" size="297,74" group="n28_r8m8"/>
|
||||
<text id="n3_nk4v" name="n3" xy="70,188" size="281,49" group="n28_r8m8" font="Microsoft YaHei" fontSize="32" color="#aa3300" align="right" autoSize="none" bold="true" text="剩余未提取积分:"/>
|
||||
<text id="n4_nk4v" name="n4" xy="119,289" size="247,44" group="n28_r8m8" font="Microsoft YaHei" fontSize="32" color="#aa3300" align="right" autoSize="none" bold="true" text="今日收入积分:">
|
||||
<gearDisplay controller="type" pages="0"/>
|
||||
</text>
|
||||
<text id="n65_joap" name="n65" xy="119,296" size="247,44" group="n28_r8m8" font="Microsoft YaHei" fontSize="32" color="#aa3300" align="right" autoSize="none" bold="true" text="昨日收入积分:">
|
||||
|
|
@ -28,11 +29,11 @@
|
|||
<gearDisplay controller="type" pages="2"/>
|
||||
</text>
|
||||
<text id="n68_joap" name="n68" xy="452,112" size="94,38" group="n28_r8m8" visible="false" font="Microsoft YaHei" fontSize="24" color="#495f55" vAlign="middle" autoSize="none" text="总收益:"/>
|
||||
<text id="n6_nk4v" name="tex_left" xy="352,195" size="295,72" group="n28_r8m8" font="Microsoft YaHei" fontSize="54" color="#aa3300" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="1000000"/>
|
||||
<text id="n8_nk4v" name="tex_total" xy="350,282" size="299,73" group="n28_r8m8" font="Microsoft YaHei" fontSize="54" color="#aa3300" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="10000000"/>
|
||||
<text id="n6_nk4v" name="tex_left" xy="352,174" size="295,72" group="n28_r8m8" font="Microsoft YaHei" fontSize="54" color="#aa3300" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="1000000"/>
|
||||
<text id="n8_nk4v" name="tex_total" xy="350,275" size="299,73" group="n28_r8m8" font="Microsoft YaHei" fontSize="54" color="#aa3300" vAlign="middle" autoSize="shrink" singleLine="true" autoClearText="true" text="10000000"/>
|
||||
<text id="n67_joap" name="tex_totalshouyi" xy="550,114" size="240,36" group="n28_r8m8" visible="false" font="Microsoft YaHei" fontSize="24" color="#495f55" autoSize="none" singleLine="true" autoClearText="true" text="10000000"/>
|
||||
<component id="n11_nk4v" name="btn_hp_info" src="kk3uhrm" fileName="mgr/component/fagpack/btn_import_info.xml" xy="671,274" group="n28_r8m8" visible="false"/>
|
||||
<component id="n9_nk4v" name="btn_take_log" src="kk3uhrk" fileName="mgr/component/fagpack/btn_export_info.xml" xy="672,195" size="147,72" group="n28_r8m8"/>
|
||||
<component id="n11_nk4v" name="btn_hp_info" src="kk3uhrm" fileName="mgr/component/fagpack/btn_import_info.xml" xy="671,267" group="n28_r8m8" visible="false"/>
|
||||
<component id="n9_nk4v" name="btn_take_log" src="kk3uhrk" fileName="mgr/component/fagpack/btn_export_info.xml" xy="672,174" size="147,72" group="n28_r8m8"/>
|
||||
<component id="n10_nk4v" name="btn_take" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="297,361" size="328,100" group="n28_r8m8">
|
||||
<Button title=" " icon="ui://27vd145bk5m97i6h"/>
|
||||
</component>
|
||||
|
|
|
|||
|
|
@ -2,13 +2,18 @@
|
|||
<component size="179,78" extention="Button">
|
||||
<controller name="button" pages="0,up,1,down" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n4_yvb2" name="n4" src="yvb27ijv" fileName="component/nav/Group 882.png" xy="0,0" grayed="true">
|
||||
<gearLook controller="button" pages="0,1" values="1,0,1,0|1,0,0,0"/>
|
||||
<image id="n4_yvb2" name="n4" src="yvb27ijv" fileName="component/nav/Group 882.png" xy="0,0">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
</image>
|
||||
<text id="n2_eeqm" name="title" xy="9,4" size="161,62" grayed="true" font="ui://m7iejg46eany7iev" fontSize="32" color="#ffffff" align="center" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="个人战绩">
|
||||
<gearLook controller="button" pages="0,1" values="1,0,1,0|1,0,0,0"/>
|
||||
<image id="n6_hz87" name="n6" src="hz877ilf" fileName="component/nav/Group 907.png" xy="0,0">
|
||||
<gearDisplay controller="button" pages="0"/>
|
||||
</image>
|
||||
<text id="n2_eeqm" name="title" xy="9,4" size="161,62" font="ui://m7iejg46eany7iev" fontSize="32" color="#ffffff" align="center" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="个人战绩">
|
||||
<gearDisplay controller="button" pages="1"/>
|
||||
</text>
|
||||
<text id="n5_yvb2" name="title2" xy="9,4" size="161,62" font="ui://m7iejg46hz877ioj" fontSize="32" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="个人战绩">
|
||||
<gearDisplay controller="button" pages="0"/>
|
||||
</text>
|
||||
<text id="n5_yvb2" name="title2" xy="97,46" size="51,42" visible="false" fontSize="30" text="title"/>
|
||||
</displayList>
|
||||
<Button mode="Radio"/>
|
||||
</component>
|
||||
|
After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 7.3 KiB |
|
|
@ -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
|
||||
|
After Width: | Height: | Size: 1012 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1017 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 929 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 877 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
Before Width: | Height: | Size: 453 KiB |
|
Before Width: | Height: | Size: 491 KiB |
|
Before Width: | Height: | Size: 421 KiB After Width: | Height: | Size: 455 KiB |
|
After Width: | Height: | Size: 866 B |
|
Before Width: | Height: | Size: 274 B After Width: | Height: | Size: 311 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 459 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 27 KiB |