Commit 2ccc5b6f authored by 姜春辉's avatar 姜春辉

修正登记页面自动退出时提示框没有正确关闭的BUG

Signed-off-by: 姜春辉's avatar姜春辉 <gaigai3355@163.com>
parent 427f6232
...@@ -111,6 +111,8 @@ namespace GS.Terminal.VisitorSelfService.Logic.Core ...@@ -111,6 +111,8 @@ namespace GS.Terminal.VisitorSelfService.Logic.Core
byte[] _secondcardphoto = null; byte[] _secondcardphoto = null;
internal void ShowDetail(List<Appointment> datas, string secondcardid, byte[] idphoto, IViewModel exitView = null) internal void ShowDetail(List<Appointment> datas, string secondcardid, byte[] idphoto, IViewModel exitView = null)
{ {
VM.ShowAlert = false;
VM.ShowConfirm = false;
_secondcardid = secondcardid; _secondcardid = secondcardid;
_secondcardphoto = idphoto; _secondcardphoto = idphoto;
Handlers.GetHandler<HeadHandler>().Start(); Handlers.GetHandler<HeadHandler>().Start();
......
...@@ -18,7 +18,7 @@ namespace GS.Terminal.VisitorSelfService.Logic ...@@ -18,7 +18,7 @@ namespace GS.Terminal.VisitorSelfService.Logic
internal static IAddonContext _Context; internal static IAddonContext _Context;
internal static IObjectSpace _ObjectSpace; internal static IObjectSpace _ObjectSpace;
internal static Locator vmLocator; internal static Locator vmLocator;
internal static string _logicVersion = "0718.15"; internal static string _logicVersion = "0721.11";
public void Start(IAddonContext Context) public void Start(IAddonContext Context)
{ {
......
...@@ -171,6 +171,8 @@ namespace ViewModels.Pages.AppointmentDetailPage ...@@ -171,6 +171,8 @@ namespace ViewModels.Pages.AppointmentDetailPage
{ {
Datas = new List<AppointmentItem>(); Datas = new List<AppointmentItem>();
Appointment = null; Appointment = null;
ShowConfirm = false;
ShowAlert = false;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment