找回账号
|
|
@ -437,3 +437,25 @@ function M:RetrievePassword(data, callback)
|
||||||
callback(res)
|
callback(res)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--找回账号信息
|
||||||
|
function M:GetAccInfo(data, callback)
|
||||||
|
local _client = ControllerManager.WebClient
|
||||||
|
local _data = {}
|
||||||
|
data.id = 1534852132465
|
||||||
|
_data.data = RSAHelper.Encrypt(json.encode(data))
|
||||||
|
_client:send(Protocol.WEB_GET_ACC, _data, function(res)
|
||||||
|
callback(res)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
--设置
|
||||||
|
function M:SetAccInfo(data, callback)
|
||||||
|
local _client = ControllerManager.WebClient
|
||||||
|
local _data = {}
|
||||||
|
-- _data.data = RSAHelper.Encrypt(json.encode(data))
|
||||||
|
_data = data
|
||||||
|
_client:send(Protocol.WEB_SET_ACC, _data, function(res)
|
||||||
|
callback(res)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@ local function __Login(cmd, _data, callBack)
|
||||||
user.agent = account["mng"]
|
user.agent = account["mng"]
|
||||||
user.bind_pwd = data["havePassword"]
|
user.bind_pwd = data["havePassword"]
|
||||||
user.retri_pwd = data["havegroup"]
|
user.retri_pwd = data["havegroup"]
|
||||||
|
user.isBangding = tonumber(data.isBangding)
|
||||||
|
|
||||||
user.real_info = account.real_info
|
user.real_info = account.real_info
|
||||||
user.phone = account.phone
|
user.phone = account.phone
|
||||||
|
|
@ -87,7 +88,6 @@ local function __getCode(cmd, _data, callBack)
|
||||||
end
|
end
|
||||||
|
|
||||||
function __getCode_test(cmd, _data, callBack)
|
function __getCode_test(cmd, _data, callBack)
|
||||||
|
|
||||||
local _client = ControllerManager.WebClient
|
local _client = ControllerManager.WebClient
|
||||||
_client:send(Protocol.WEB_GET_CODE, { id = _data.id }, function(res)
|
_client:send(Protocol.WEB_GET_CODE, { id = _data.id }, function(res)
|
||||||
if (res.ReturnCode == 0) then
|
if (res.ReturnCode == 0) then
|
||||||
|
|
@ -97,8 +97,6 @@ function __getCode_test(cmd, _data, callBack)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--得到app信息
|
--得到app信息
|
||||||
function M:GetAppInfo()
|
function M:GetAppInfo()
|
||||||
local _client = ControllerManager.WebClient
|
local _client = ControllerManager.WebClient
|
||||||
|
|
@ -165,10 +163,13 @@ end
|
||||||
function M:Login(callback)
|
function M:Login(callback)
|
||||||
local user = DataManager.SelfUser
|
local user = DataManager.SelfUser
|
||||||
local _data = {}
|
local _data = {}
|
||||||
|
printlog("lingmeng Login", UnityEngine.SystemInfo.deviceUniqueIdentifier)
|
||||||
local result = pcall(function(...)
|
local result = pcall(function(...)
|
||||||
_data.data = RSAHelper.Encrypt(json.encode({
|
_data.data = RSAHelper.Encrypt(json.encode({
|
||||||
acc = user.acc,
|
acc = user.acc,
|
||||||
|
-- acc = "hjksa456asfas2sadg454dsdas354djbrdsdqadasd7fadij97845bd56r4",
|
||||||
nick = user.nick_name,
|
nick = user.nick_name,
|
||||||
|
-- nick = "test1",
|
||||||
sex = user.sex,
|
sex = user.sex,
|
||||||
portrait = user.head_url,
|
portrait = user.head_url,
|
||||||
deviceCode = UnityEngine.SystemInfo.deviceUniqueIdentifier
|
deviceCode = UnityEngine.SystemInfo.deviceUniqueIdentifier
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,10 @@ Protocol = {
|
||||||
WEB_BACK_PASSWORD = "acc/set_back_password",
|
WEB_BACK_PASSWORD = "acc/set_back_password",
|
||||||
--得到app信息
|
--得到app信息
|
||||||
WEB_GET_APP_INFO = "acc/get_app_info",
|
WEB_GET_APP_INFO = "acc/get_app_info",
|
||||||
|
--获得同设备号的acc
|
||||||
|
WEB_GET_ACC = "acc/get_bangding_account",
|
||||||
|
--平移同设备号的acc
|
||||||
|
WEB_SET_ACC = "acc/bangding_account",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,119 @@
|
||||||
|
local SelectAcc = {}
|
||||||
|
|
||||||
|
local M = SelectAcc
|
||||||
|
|
||||||
|
function SelectAcc.new(data, callback)
|
||||||
|
setmetatable(M, { __index = BaseWindow })
|
||||||
|
local self = setmetatable({}, { __index = M })
|
||||||
|
self.class = "SelectAcc"
|
||||||
|
self._callback = callback
|
||||||
|
self._close_zone = false
|
||||||
|
self._close_destroy = true
|
||||||
|
self._data = data
|
||||||
|
local url = "ui://Lobby/win_selectAccont"
|
||||||
|
self:init(url)
|
||||||
|
return self
|
||||||
|
end
|
||||||
|
|
||||||
|
function M:init(url)
|
||||||
|
getmetatable(M).__index.init(self, url)
|
||||||
|
local lobbyCtr1 = ControllerManager.GetController(LoddyController)
|
||||||
|
|
||||||
|
local user = DataManager.SelfUser
|
||||||
|
self._view:GetChild('text_nick').text = user.nick_name
|
||||||
|
self._view:GetChild('text_id').text = user.account_id
|
||||||
|
ImageLoad.Load(user.head_url, self._view:GetChild('head_url'))
|
||||||
|
|
||||||
|
self._view:GetChild('btn_ok').onClick:Set(function()
|
||||||
|
self._view:GetController('choose').selectedIndex = 1
|
||||||
|
end)
|
||||||
|
|
||||||
|
self._view:GetChild('btn_cancle').onClick:Set(function()
|
||||||
|
self:Destroy()
|
||||||
|
end)
|
||||||
|
|
||||||
|
self._list_acc = self._view:GetChild('list_acc')
|
||||||
|
self._list_acc:SetVirtual()
|
||||||
|
self._list_acc.itemRenderer = function(index, obj)
|
||||||
|
ImageLoad.Load(self._resData[index + 1].portrait, obj._iconObject)
|
||||||
|
obj:GetChild('text_id').text = self._resData[index + 1].id
|
||||||
|
obj:GetChild('text_name').text = self._resData[index + 1].nick
|
||||||
|
obj:GetChild('btn_bing').onClick:Set(function(context)
|
||||||
|
self._view:GetChild('tex_phone').text = self._resData[index + 1].id
|
||||||
|
self._view:GetController('choose').selectedIndex = 2
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
self._view:GetChild('btn_ok_pws').onClick:Set(function()
|
||||||
|
self:Bind()
|
||||||
|
end)
|
||||||
|
|
||||||
|
self._view:GetChild('btn_cancel_pws').onClick:Set(function()
|
||||||
|
self._view:GetController('choose').selectedIndex = 1
|
||||||
|
end)
|
||||||
|
|
||||||
|
self:initInfo()
|
||||||
|
end
|
||||||
|
|
||||||
|
function M:initInfo()
|
||||||
|
local lobbyCtr1 = ControllerManager.GetController(LoddyController)
|
||||||
|
lobbyCtr1:GetAccInfo({}, function(res)
|
||||||
|
if res.ReturnCode ~= 0 then
|
||||||
|
ViewUtil.ErrorTip(res.ReturnCode)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
self._resData = res.Data.accounts
|
||||||
|
self._list_acc.numItems = #self._resData
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
function M:Bind()
|
||||||
|
local tex_passwd = self._view:GetChild("tex_passwd")
|
||||||
|
local password = tex_passwd.text
|
||||||
|
if string.len(password) < 6 then
|
||||||
|
ViewUtil.ShowTips("请输入5位以上的密码")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
-- local flg_xiaozimu = false
|
||||||
|
-- local flg_dazimu = false
|
||||||
|
-- local fla_shuzi = false
|
||||||
|
-- for i = 1, #password do
|
||||||
|
-- local oneChar = string.sub(password, i, i)
|
||||||
|
-- if string.byte(oneChar) >= 65 and string.byte(oneChar) <= 90 then
|
||||||
|
-- flg_dazimu = true
|
||||||
|
-- elseif string.byte(oneChar) >= 97 and string.byte(oneChar) <= 122 then
|
||||||
|
-- flg_xiaozimu = true
|
||||||
|
-- elseif string.byte(oneChar) >= 48 and string.byte(oneChar) <= 57 then
|
||||||
|
-- fla_shuzi = true
|
||||||
|
-- end
|
||||||
|
-- end
|
||||||
|
-- if not (flg_xiaozimu or flg_dazimu) then
|
||||||
|
-- ViewUtil.ShowTips("密码必须包含字母")
|
||||||
|
-- return
|
||||||
|
-- end
|
||||||
|
|
||||||
|
local _data = {}
|
||||||
|
|
||||||
|
ViewUtil.ShowModalWait(self._root_view, "正在提交...")
|
||||||
|
local loddyctr = ControllerManager.GetController(LoddyController)
|
||||||
|
_data.password = password
|
||||||
|
_data.tagId = tonumber(self._view:GetChild("tex_phone").text)
|
||||||
|
|
||||||
|
loddyctr:SetAccInfo(_data, function(res)
|
||||||
|
ViewUtil.CloseModalWait()
|
||||||
|
if res.ReturnCode ~= 0 then
|
||||||
|
ViewUtil.ErrorTip(res.ReturnCode, "密码错误")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
PlayerPrefs.DeleteKey('session_id')
|
||||||
|
PlayerPrefs.Save()
|
||||||
|
RestartGame()
|
||||||
|
self:Destroy()
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
function M:Destroy()
|
||||||
|
BaseWindow.Destroy(self)
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
|
|
@ -12,6 +12,7 @@ local PhoneBindView = import(".Lobby.PhoneBindView")
|
||||||
local RealAddressView = import(".Lobby.RealAddressView")
|
local RealAddressView = import(".Lobby.RealAddressView")
|
||||||
local LobbyHeadView = import(".Lobby.LobbyHeadView")
|
local LobbyHeadView = import(".Lobby.LobbyHeadView")
|
||||||
local IDPasswordAlone = import(".Lobby.IDPasswordAlone")
|
local IDPasswordAlone = import(".Lobby.IDPasswordAlone")
|
||||||
|
local SelectAcc = import(".Lobby.SelectAcc")
|
||||||
LobbyView = {}
|
LobbyView = {}
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
@ -372,20 +373,14 @@ function M:Destroy()
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:Show()
|
function M:Show()
|
||||||
print("on lobbyView show~~~~~~")
|
|
||||||
BaseView.Show(self)
|
BaseView.Show(self)
|
||||||
ViewUtil.PlaySoundBg()
|
ViewUtil.PlaySoundBg()
|
||||||
UpdateBeat:Add(self.OnUpdate, self)
|
UpdateBeat:Add(self.OnUpdate, self)
|
||||||
print("lingmeng show1")
|
|
||||||
if self.alldonhua then
|
if self.alldonhua then
|
||||||
print("lingmeng show2", coroutine.status(self.alldonhua))
|
|
||||||
if not coroutine.status(self.alldonhua) == "running" then
|
if not coroutine.status(self.alldonhua) == "running" then
|
||||||
print("lingmeng show2")
|
|
||||||
coroutine.resume(self.alldonhua)
|
coroutine.resume(self.alldonhua)
|
||||||
print("lingmeng show3")
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
print("lingmeng show4")
|
|
||||||
self:InitClip()
|
self:InitClip()
|
||||||
end
|
end
|
||||||
-- 如果在圈子内的房间,显示tip
|
-- 如果在圈子内的房间,显示tip
|
||||||
|
|
@ -430,6 +425,11 @@ function M:Show()
|
||||||
elseif not DataManager.SelfUser.retri_pwd then
|
elseif not DataManager.SelfUser.retri_pwd then
|
||||||
local idPasswordAlone = IDPasswordAlone.new({ only_retrieve = true })
|
local idPasswordAlone = IDPasswordAlone.new({ only_retrieve = true })
|
||||||
idPasswordAlone:Show()
|
idPasswordAlone:Show()
|
||||||
|
elseif DataManager.SelfUser.isBangding and DataManager.SelfUser.isBangding == 0 then
|
||||||
|
local selectAcc = SelectAcc.new({}, function()
|
||||||
|
self._close_destroy = true
|
||||||
|
end)
|
||||||
|
selectAcc:Show()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"objectStatus": {
|
||||||
|
"n55_qflm": {
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"n58_qflm": {
|
||||||
|
"collapsed": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="900,100" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n7_qflm" name="n7" src="qflm7e2r" fileName="component/index/select_acc/Rectangle 333.png" xy="0,0" size="900,100"/>
|
||||||
|
<loader id="n3_qflm" name="icon" xy="10,2" size="95,95" aspect="true" fill="scaleFree">
|
||||||
|
<relation target="" sidePair="middle-middle,left-left"/>
|
||||||
|
</loader>
|
||||||
|
<text id="n5_qflm" name="text_id" xy="107,25" size="144,49" font="Arial" fontSize="36" align="center" vAlign="middle" singleLine="true" autoClearText="true" text="1234567">
|
||||||
|
<relation target="" sidePair="middle-middle,left-left"/>
|
||||||
|
</text>
|
||||||
|
<text id="n4_qflm" name="text_name" xy="257,10" size="539,79" font="Arial" fontSize="36" align="center" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="最长可以几个字最长可以几个字"/>
|
||||||
|
<component id="n6_qflm" name="btn_bing" src="qflm7e2s" fileName="component/index/select_acc/btn_bing.xml" xy="785,19" size="115,61"/>
|
||||||
|
</displayList>
|
||||||
|
<Button/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="100,20" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n3_qflm" name="n3" src="qflm7e2t" fileName="commpoent/select_acc/Group 1053.png" xy="0,0" size="100,20">
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
</displayList>
|
||||||
|
<Button/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,58 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="960,595">
|
||||||
|
<controller name="choose" pages="0,,1,,2," selected="2"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n47_nuxq" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="0,0" size="960,603">
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
<component id="n1_r6cy" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="878,1" controller="style,0">
|
||||||
|
<Button icon="ui://2zlli80mj5sg7ct4"/>
|
||||||
|
</component>
|
||||||
|
<image id="n49_qflm" name="n49" src="qflm7e2p" fileName="component/index/绑定账号.png" xy="362,12">
|
||||||
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
|
</image>
|
||||||
|
<list id="n50_qflm" name="list_acc" xy="26,147" size="900,426" group="n55_qflm" overflow="scroll" lineGap="5" defaultItem="ui://2d9xdj6zqflm7e2q" autoClearItems="true">
|
||||||
|
<item/>
|
||||||
|
<item/>
|
||||||
|
</list>
|
||||||
|
<text id="n51_qflm" name="n51" xy="47,94" size="64,42" group="n55_qflm" font="Arial" fontSize="30" text="头像"/>
|
||||||
|
<text id="n52_qflm" name="n52" xy="166,94" size="88,42" group="n55_qflm" font="Arial" fontSize="30" text="账号id"/>
|
||||||
|
<text id="n53_qflm" name="n53" xy="486,94" size="124,42" group="n55_qflm" font="Arial" fontSize="30" text="账号昵称"/>
|
||||||
|
<group id="n55_qflm" name="acc" xy="26,94" size="900,479" advanced="true">
|
||||||
|
<gearDisplay controller="choose" pages="1"/>
|
||||||
|
</group>
|
||||||
|
<text id="n56_qflm" name="n56" xy="193,106" size="574,42" group="n58_qflm" fontSize="30" text="检测到该设备有多个账号,是否要平移账号"/>
|
||||||
|
<text id="n57_qflm" name="n57" xy="193,149" size="184,42" group="n58_qflm" fontSize="30" text="目前账号为:"/>
|
||||||
|
<component id="n61_qflm" name="btn_ok" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="207,473" group="n58_qflm" scale="0.8,0.8">
|
||||||
|
<Button title=" " icon="ui://2d9xdj6zqflm7e2u"/>
|
||||||
|
</component>
|
||||||
|
<component id="n62_qflm" name="btn_cancle" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="564,471" group="n58_qflm" scale="0.8,0.8">
|
||||||
|
<Button title=" " icon="ui://27vd145bcvc87i5s"/>
|
||||||
|
</component>
|
||||||
|
<loader id="n60_qflm" name="head_url" xy="272,212" size="150,150" group="n58_qflm"/>
|
||||||
|
<text id="n63_qflm" name="text_nick" xy="437,218" size="184,42" group="n58_qflm" fontSize="30" singleLine="true" autoClearText="true" text="目前账号为:"/>
|
||||||
|
<text id="n64_qflm" name="text_id" xy="438,265" size="184,42" group="n58_qflm" fontSize="30" singleLine="true" autoClearText="true" text="目前账号为:"/>
|
||||||
|
<group id="n58_qflm" name="tip" xy="193,106" size="633,449" advanced="true">
|
||||||
|
<gearDisplay controller="choose" pages="0"/>
|
||||||
|
</group>
|
||||||
|
<text id="n76_qflm" name="n76" xy="328,114" size="304,42" group="n75_qflm" fontSize="30" text="请输入当前账号的密码"/>
|
||||||
|
<component id="n65_qflm" name="btn_ok_pws" src="ab5pcj5" fileName="component/user_info/btn_ok.xml" xy="130,421" size="319,117" group="n75_qflm">
|
||||||
|
<Button icon="ui://2d9xdj6zqflm7e2v"/>
|
||||||
|
</component>
|
||||||
|
<component id="n77_qflm" name="btn_cancel_pws" src="ab5pcj5" fileName="component/user_info/btn_ok.xml" xy="510,421" size="319,117" group="n75_qflm">
|
||||||
|
<Button icon="ui://2d9xdj6zqflm7e2w"/>
|
||||||
|
</component>
|
||||||
|
<text id="n66_qflm" name="n66" xy="165,192" size="164,49" group="n69_qflm" font="Microsoft YaHei" fontSize="36" color="#aa3300" align="right" autoSize="none" bold="true" text="账号:"/>
|
||||||
|
<image id="n67_qflm" name="n67" src="qflm7e2r" fileName="component/index/select_acc/Rectangle 333.png" xy="339,183" size="446,68" group="n69_qflm"/>
|
||||||
|
<text id="n68_qflm" name="tex_phone" xy="343,187" size="434,59" group="n69_qflm" touchable="false" font="Microsoft YaHei" fontSize="34" color="#333333" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="" input="true" prompt="请输入账号"/>
|
||||||
|
<group id="n69_qflm" name="n69" xy="165,183" size="620,68" group="n75_qflm" advanced="true"/>
|
||||||
|
<text id="n70_qflm" name="n70" xy="196,300" size="133,49" group="n74_qflm" font="Microsoft YaHei" fontSize="36" color="#aa3300" align="right" autoSize="none" bold="true" text="密码:"/>
|
||||||
|
<image id="n71_qflm" name="n71" src="qflm7e2r" fileName="component/index/select_acc/Rectangle 333.png" xy="339,291" size="446,68" group="n73_qflm"/>
|
||||||
|
<text id="n72_qflm" name="tex_passwd" xy="343,295" size="435,61" group="n73_qflm" font="Microsoft YaHei" fontSize="30" color="#333333" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" text="" input="true" prompt="请输入密码" maxLength="15" keyboardType="1" password="true"/>
|
||||||
|
<group id="n73_qflm" name="n73" xy="339,291" size="446,68" group="n74_qflm"/>
|
||||||
|
<group id="n74_qflm" name="passwd" xy="196,291" size="589,68" group="n75_qflm"/>
|
||||||
|
<group id="n75_qflm" name="password" xy="130,114" size="699,424" advanced="true">
|
||||||
|
<gearDisplay controller="choose" pages="2"/>
|
||||||
|
</group>
|
||||||
|
</displayList>
|
||||||
|
</component>
|
||||||
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
|
@ -694,6 +694,15 @@
|
||||||
<component id="jg0y7e2k" name="btn_mul.xml" path="/component/user_info/"/>
|
<component id="jg0y7e2k" name="btn_mul.xml" path="/component/user_info/"/>
|
||||||
<image id="jg0y7e2l" name="Group 924.png" path="/component/user_info/real/"/>
|
<image id="jg0y7e2l" name="Group 924.png" path="/component/user_info/real/"/>
|
||||||
<image id="wyyf7e2n" name="长虹.png" path="/component/group/images/"/>
|
<image id="wyyf7e2n" name="长虹.png" path="/component/group/images/"/>
|
||||||
|
<component id="qflm7e2o" name="win_selectAccont.xml" path="/component/index/" exported="true"/>
|
||||||
|
<image id="qflm7e2p" name="绑定账号.png" path="/component/index/"/>
|
||||||
|
<component id="qflm7e2q" name="btnChild_acc.xml" path="/component/index/select_acc/"/>
|
||||||
|
<image id="qflm7e2r" name="Rectangle 333.png" path="/component/index/select_acc/"/>
|
||||||
|
<component id="qflm7e2s" name="btn_bing.xml" path="/component/index/select_acc/"/>
|
||||||
|
<image id="qflm7e2t" name="Group 1053.png" path="/component/index/select_acc/"/>
|
||||||
|
<image id="qflm7e2u" name="ann_queding.png" path="/font/images/"/>
|
||||||
|
<image id="qflm7e2v" name="Group 467.png" path="/component/user_info/real/"/>
|
||||||
|
<image id="qflm7e2w" name="Group 516.png" path="/component/user_info/real/"/>
|
||||||
</resources>
|
</resources>
|
||||||
<publish name="Lobby" path="..\wb_unity_pro\Assets\ART\base\lobby\ui" packageCount="2">
|
<publish name="Lobby" path="..\wb_unity_pro\Assets\ART\base\lobby\ui" packageCount="2">
|
||||||
<atlas name="默认" index="0"/>
|
<atlas name="默认" index="0"/>
|
||||||
|
|
|
||||||
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="900,100" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n7_qflm" name="n7" src="qflm7cta" fileName="commpoent/select_acc/Rectangle 333.png" xy="0,0" size="900,100"/>
|
||||||
|
<loader id="n3_qflm" name="icon" xy="10,2" size="95,95" aspect="true">
|
||||||
|
<relation target="" sidePair="middle-middle,left-left"/>
|
||||||
|
</loader>
|
||||||
|
<text id="n5_qflm" name="text_id" xy="107,25" size="144,49" font="Arial" fontSize="36" align="center" vAlign="middle" singleLine="true" autoClearText="true" text="1234567">
|
||||||
|
<relation target="" sidePair="middle-middle,left-left"/>
|
||||||
|
</text>
|
||||||
|
<text id="n4_qflm" name="text_name" xy="257,10" size="539,79" font="Arial" fontSize="36" align="center" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="最长可以几个字最长可以几个字"/>
|
||||||
|
<component id="n6_qflm" name="n6" src="qflm7ctb" fileName="commpoent/select_acc/btn_bing.xml" xy="797,24" size="103,51"/>
|
||||||
|
</displayList>
|
||||||
|
<Button/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="100,20" extention="Button">
|
||||||
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n3_qflm" name="n3" src="qflm7ct9" fileName="commpoent/select_acc/Group 1053.png" xy="0,0" size="100,20">
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
</displayList>
|
||||||
|
<Button/>
|
||||||
|
</component>
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<component size="960,595">
|
||||||
|
<controller name="code" pages="0,,1," selected="0"/>
|
||||||
|
<controller name="nav" pages="0,pw,1,code" selected="0"/>
|
||||||
|
<displayList>
|
||||||
|
<image id="n47_nuxq" name="bg" src="nuxq7ije" fileName="font/images/win/bxx_bg_01.png" pkg="27vd145b" xy="0,0" size="960,603">
|
||||||
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
|
</image>
|
||||||
|
<component id="n1_r6cy" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="878,1" visible="false" controller="style,0">
|
||||||
|
<Button icon="ui://2zlli80mj5sg7ct4"/>
|
||||||
|
</component>
|
||||||
|
<image id="n49_qflm" name="n49" src="qflm7ct7" fileName="images/绑定账号.png" xy="362,12">
|
||||||
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
|
</image>
|
||||||
|
<list id="n50_qflm" name="list_acc" xy="26,147" size="900,426" overflow="scroll" lineGap="5" defaultItem="ui://2zlli80mqflm7ct8" autoClearItems="true">
|
||||||
|
<item/>
|
||||||
|
<item/>
|
||||||
|
</list>
|
||||||
|
<text id="n51_qflm" name="n51" xy="47,94" size="64,42" font="Arial" fontSize="30" text="头像"/>
|
||||||
|
<text id="n52_qflm" name="n52" xy="166,94" size="88,42" font="Arial" fontSize="30" text="账号id"/>
|
||||||
|
<text id="n53_qflm" name="n53" xy="486,94" size="124,42" font="Arial" fontSize="30" text="账号昵称"/>
|
||||||
|
</displayList>
|
||||||
|
</component>
|
||||||
|
After Width: | Height: | Size: 6.1 KiB |
|
|
@ -150,6 +150,12 @@
|
||||||
<image id="yvb27ct3" name="xuehua_00120.png" path="/images/clip_xuehua/" exported="true"/>
|
<image id="yvb27ct3" name="xuehua_00120.png" path="/images/clip_xuehua/" exported="true"/>
|
||||||
<image id="j5sg7ct4" name="Group 448.png" path="/component/setting/" exported="true"/>
|
<image id="j5sg7ct4" name="Group 448.png" path="/component/setting/" exported="true"/>
|
||||||
<image id="j5sg7ct5" name="登录.png" path="/component/setting/" exported="true"/>
|
<image id="j5sg7ct5" name="登录.png" path="/component/setting/" exported="true"/>
|
||||||
|
<component id="qflm7ct6" name="win_selectAccont.xml" path="/commpoent/" exported="true"/>
|
||||||
|
<image id="qflm7ct7" name="绑定账号.png" path="/images/"/>
|
||||||
|
<component id="qflm7ct8" name="btnChild_acc.xml" path="/commpoent/select_acc/"/>
|
||||||
|
<image id="qflm7ct9" name="Group 1053.png" path="/commpoent/select_acc/"/>
|
||||||
|
<image id="qflm7cta" name="Rectangle 333.png" path="/commpoent/select_acc/"/>
|
||||||
|
<component id="qflm7ctb" name="btn_bing.xml" path="/commpoent/select_acc/"/>
|
||||||
</resources>
|
</resources>
|
||||||
<publish name="Login" path="..\wb_unity_pro\Assets\ART\base\login\ui" packageCount="2">
|
<publish name="Login" path="..\wb_unity_pro\Assets\ART\base\login\ui" packageCount="2">
|
||||||
<atlas name="默认" index="0"/>
|
<atlas name="默认" index="0"/>
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 923 KiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 875 KiB After Width: | Height: | Size: 877 KiB |
|
Before Width: | Height: | Size: 876 KiB After Width: | Height: | Size: 875 KiB |
|
Before Width: | Height: | Size: 874 KiB After Width: | Height: | Size: 871 KiB |
|
Before Width: | Height: | Size: 872 KiB After Width: | Height: | Size: 871 KiB |
|
Before Width: | Height: | Size: 880 KiB After Width: | Height: | Size: 876 KiB |
|
Before Width: | Height: | Size: 872 KiB After Width: | Height: | Size: 876 KiB |
|
Before Width: | Height: | Size: 872 KiB After Width: | Height: | Size: 871 KiB |
|
Before Width: | Height: | Size: 873 KiB After Width: | Height: | Size: 870 KiB |
|
Before Width: | Height: | Size: 877 KiB After Width: | Height: | Size: 871 KiB |
|
Before Width: | Height: | Size: 871 KiB After Width: | Height: | Size: 876 KiB |
|
Before Width: | Height: | Size: 468 KiB After Width: | Height: | Size: 468 KiB |
|
Before Width: | Height: | Size: 872 KiB After Width: | Height: | Size: 881 KiB |
|
Before Width: | Height: | Size: 878 KiB After Width: | Height: | Size: 876 KiB |
|
Before Width: | Height: | Size: 880 KiB After Width: | Height: | Size: 881 KiB |
|
Before Width: | Height: | Size: 881 KiB After Width: | Height: | Size: 880 KiB |
|
Before Width: | Height: | Size: 873 KiB After Width: | Height: | Size: 875 KiB |
|
Before Width: | Height: | Size: 873 KiB After Width: | Height: | Size: 878 KiB |
|
Before Width: | Height: | Size: 874 KiB After Width: | Height: | Size: 871 KiB |
|
Before Width: | Height: | Size: 878 KiB After Width: | Height: | Size: 878 KiB |
|
Before Width: | Height: | Size: 872 KiB After Width: | Height: | Size: 876 KiB |
|
Before Width: | Height: | Size: 872 KiB After Width: | Height: | Size: 872 KiB |
|
Before Width: | Height: | Size: 462 KiB After Width: | Height: | Size: 461 KiB |
|
Before Width: | Height: | Size: 875 KiB After Width: | Height: | Size: 871 KiB |
|
Before Width: | Height: | Size: 875 KiB After Width: | Height: | Size: 876 KiB |
|
Before Width: | Height: | Size: 874 KiB After Width: | Height: | Size: 873 KiB |
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 133 KiB |
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 464 KiB After Width: | Height: | Size: 463 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 138 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 462 KiB After Width: | Height: | Size: 469 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 473 KiB After Width: | Height: | Size: 470 KiB |
|
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 133 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 133 KiB |
|
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 138 KiB |
|
Before Width: | Height: | Size: 916 KiB After Width: | Height: | Size: 914 KiB |
|
Before Width: | Height: | Size: 687 KiB After Width: | Height: | Size: 685 KiB |
|
Before Width: | Height: | Size: 3.2 MiB After Width: | Height: | Size: 3.3 MiB |
|
Before Width: | Height: | Size: 587 KiB After Width: | Height: | Size: 727 KiB |
|
Before Width: | Height: | Size: 468 KiB After Width: | Height: | Size: 394 KiB |
|
Before Width: | Height: | Size: 463 KiB After Width: | Height: | Size: 456 KiB |
|
Before Width: | Height: | Size: 474 KiB After Width: | Height: | Size: 471 KiB |
|
Before Width: | Height: | Size: 481 KiB After Width: | Height: | Size: 476 KiB |
|
Before Width: | Height: | Size: 488 KiB After Width: | Height: | Size: 484 KiB |
|
Before Width: | Height: | Size: 361 KiB After Width: | Height: | Size: 476 KiB |
|
Before Width: | Height: | Size: 414 KiB After Width: | Height: | Size: 363 KiB |
|
Before Width: | Height: | Size: 440 KiB After Width: | Height: | Size: 400 KiB |
|
Before Width: | Height: | Size: 504 KiB After Width: | Height: | Size: 450 KiB |
|
Before Width: | Height: | Size: 514 KiB After Width: | Height: | Size: 500 KiB |
|
Before Width: | Height: | Size: 438 KiB After Width: | Height: | Size: 420 KiB |
|
Before Width: | Height: | Size: 398 KiB After Width: | Height: | Size: 415 KiB |
|
Before Width: | Height: | Size: 467 KiB After Width: | Height: | Size: 460 KiB |
|
Before Width: | Height: | Size: 467 KiB After Width: | Height: | Size: 473 KiB |
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 474 KiB |
|
Before Width: | Height: | Size: 501 KiB After Width: | Height: | Size: 495 KiB |