WJC
2019-12-30 f1c3921b08bb22ac6f5db22d620e01d7e8e5c49f
ZigbeeApp/Shared/Phone/UserCenter/Member/AddMemberByIdForm.cs
@@ -49,7 +49,6 @@
            var txtCode = new TextInputControl(Application.GetRealWidth(900), rowAccount.Height, false);
            txtCode.X = ControlCommonResourse.XXLeft;
            txtCode.PlaceholderText = Language.StringByID(R.MyInternationalizationString.uPleaseInputAddMenberID);
            txtCode.PlaceholderTextColor = UserCenterColor.Current.TextTipColor;
            rowAccount.AddChidren(txtCode, ChidrenBindMode.NotBind);
            //下一步
@@ -85,12 +84,20 @@
            var pra = new AccountInfoPra();
            pra.Account = accountId;
            string result = await UserCenterLogic.GetResponseDataByRequestHttps("ZigbeeUsers/GetSubAccountInfo", false, pra);
            string result = await UserCenterLogic.GetResponseDataByRequestHttps("ZigbeeUsers/GetSubAccountInfo", false, pra, new System.Collections.Generic.List<string>() { "AccountNoExists" });
            //关闭进度条
            this.CloseProgressBar();
            if (result == null)
            {
                //异常
                return;
            }
            if (result == string.Empty)
            {
                //成员不存在
                var form = new MemberNotEsixtForm();
                form.AddForm();
                return;
            }