This commit is contained in:
2020-07-11 18:34:05 +08:00
parent d587401a58
commit 096f0ae4a1
38 changed files with 964 additions and 787 deletions

View File

@@ -9,7 +9,7 @@ function TRPResetPasswordStep1:init(csObj)
TRPResetPasswordStep1.super.init(self, csObj)
---@type CLUIFormRoot
uiobjs.formRoot = self.csSelf:GetComponent("CLUIFormRoot")
uiobjs.InputPhoneNum = getCC(self.transform, "InputPhoneNum", "UIInput")
uiobjs.InputPhoneNum = getCC(self.transform, "Top/InputPhoneNum", "UIInput")
self:setEventDelegate()
end

View File

@@ -11,7 +11,7 @@ function TRPResetPasswordStep2:init(csObj)
self:setEventDelegate()
---@type CLUIFormRoot
uiobjs.formRoot = self.csSelf:GetComponent("CLUIFormRoot")
uiobjs.ButtonReGetCodeLb = getCC(self.transform, "InputCode/ButtonReGetCode", "UILabel")
uiobjs.ButtonReGetCodeLb = getCC(self.transform, "Top/InputCode/ButtonReGetCode", "UILabel")
end
-- 设置数据

View File

@@ -12,7 +12,7 @@ function TRPResetPasswordStep3:init(csObj)
uiobjs.formRoot = self.csSelf:GetComponent("CLUIFormRoot")
---@type UIInput
uiobjs.InputPassword = getCC(self.transform, "InputPassword", "UIInput")
uiobjs.InputPassword = getCC(self.transform, "Top/InputPassword", "UIInput")
uiobjs.ButtonShowHidePasswordBg = getCC(uiobjs.InputPassword.transform, "ButtonShowHidePassword", "UISprite")
end