JLChen
2020-11-13 017af840d60fd6a56da9711308bf8239cb7fc1e6
HDL_ON/UI/UI2/4-PersonalCenter/ResetAccountPassword/ResetPasswordPage.cs
@@ -1,6 +1,7 @@
using System;
using Shared;
using HDL_ON.UI.CSS;
using HDL_ON.DAL.Server;
namespace HDL_ON.UI
{
@@ -28,8 +29,8 @@
        {
            var waitPage = new Loading();
            waitPage.Start("Please wait...");
            var resetResult = new DAL.Server.HttpServerRequest().ResetPassword(MainPage.LoginUser.accountString, password, repeatPassword, 86);
            if (resetResult.StateCode.ToUpper() == "SUCCESS")
            var resetResult = new HttpServerRequest().ResetPassword(MainPage.LoginUser.accountString, password, repeatPassword, 86);
            if (resetResult.StateCode.ToUpper() == HttpUtil.SUCCESS_CODE)
            {
                Application.RunOnMainThread(() =>
                {
@@ -63,7 +64,7 @@
                    waitPage.Hide();
                    new Tip()
                    {
                        CloseTime = 3,
                        CloseTime = 1,
                        Direction = AMPopTipDirection.None,
                        Text = erorrInfo,
                    }.Show(bodyView);