Exemplo n.º 1
0
    public void ClickBtSendRequest(int index)
    {
        AudioAssistant.Instance.Shot(StringHelper.SOUND_GATE_BT);

        if (string.IsNullOrEmpty(inputFieldCaptcha.text) || string.IsNullOrEmpty(inputFieldMoney.text))
        {
            LPopup.OpenPopupTop("Thông báo", "Hãy nhập đủ thông tin");
            return;
        }

        UILayerController.Instance.ShowLoading();

        if (index == 1)
        {
            SendRequest.RequestSendMoney(inputFieldMoney.text, inputFieldCaptcha.text, captchaData.Token);
        }
        else
        {
            SendRequest.RequestReceiveMoney(inputFieldMoney.text, inputFieldCaptcha.text, captchaData.Token);
        }
    }