//注册回调
    private void OnRegisterClick()
    {
        PlayClickSound();
        if (string.IsNullOrEmpty(userInput.text) || string.IsNullOrEmpty(pwdInput.text) || string.IsNullOrEmpty(rePwdInput.text))
        {
            UIMng.ShowMessage("用户名和密码不能为空");
            return;
        }

        if (pwdInput.text != rePwdInput.text)
        {
            UIMng.ShowMessage("两次输入的密码不一致");
        }

        registerRequest.SendRegisterRequest(userInput.text, pwdInput.text);
    }