2022-12-18 焊接修改

This commit is contained in:
2022-12-18 22:40:49 +08:00
parent 5b119bcb98
commit 802a091833
21 changed files with 280 additions and 60 deletions
@@ -6,6 +6,7 @@ using System.Data;
using System.Data.OleDb;
using System.IO;
using System.Linq;
using System.Net.Mail;
namespace FineUIPro.Web.HJGL.WeldingManage
{
@@ -125,7 +126,13 @@ namespace FineUIPro.Web.HJGL.WeldingManage
}
catch (Exception ex)
{
ShowNotify("'" + ex.Message + "'", MessageBoxIcon.Warning);
Alert alert = new Alert
{
Message = "'" + ex.Message + "'",
Target = Target.Self
};
alert.Show();
//ShowNotify("'" + ex.Message + "'", MessageBoxIcon.Warning);
}
}
@@ -154,7 +161,13 @@ namespace FineUIPro.Web.HJGL.WeldingManage
}
else
{
ShowNotify(responeData.message, MessageBoxIcon.Success);
Alert alert = new Alert
{
Message = responeData.message,
Target = Target.Self
};
alert.Show();
// ShowNotify(responeData.message, MessageBoxIcon.Success);
}
}