| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- cc.Class({
- extends: cc.BaseClass,
- properties: {
- m_Editbox : cc.EditBox,
- },
- onLoad () {},
- start () {
- },
- OnBtBind : function () {
- cc.gSoundRes.PlaySound('Button');
- if (this.m_Editbox.string.length < 1) {
- this.ShowTips('請輸入正確的邀請碼!');
- return;
- }
- g_Lobby.ShowLoading();
- var Cmd = new CMD_GP_ModifyIndividual();
- Cmd.dwUserID = g_GlobalUserInfo.GetGlobalUserData().dwUserID;
- Cmd.cbGender = g_GlobalUserInfo.GetGlobalUserData().cbGender;
- Cmd.szPassword = g_GlobalUserInfo.GetGlobalUserData().szPassword;
- Cmd.DataDescribe = new tagDataDescribe();
- Cmd.DataDescribe.wDataSize = window.LEN_ACCOUNTS * cc.TCHAR_SIZE;
- Cmd.DataDescribe.wDataDescribe = DTP_GP_UI_SPREADER;
- Cmd.szSpreader = this.m_Editbox.string;
- Cmd.len_szSpreader = window.LEN_ACCOUNTS * cc.TCHAR_SIZE;
- var LoginMission = new CGPLoginMission(this, MDM_GP_USER_SERVICE, SUB_GP_MODIFY_INDIVIDUAL, Cmd);
- },
- OnBindSpreaderRes: function (dwCode, strDes) {
- g_Lobby.StopLoading();
- this.m_Hook.m_CheckNewPlayer = 0;
- if (dwCode == 0) {
- this.m_Hook.ShowAlert("恭喜您成功綁定推廣員!");
- this.m_Hook.OnBtRefeshRoomCard();
- this.HideView();
- } else {
- this.m_Hook.ShowAlert(strDes);
- }
- },
- // update (dt) {},
- });
|