20230630人员自定义卡号验证

This commit is contained in:
2023-06-30 16:24:19 +08:00
parent 5d70c6f745
commit f20df61fe5
12 changed files with 343 additions and 4049 deletions
@@ -752,7 +752,16 @@ namespace FineUIPro.Web.Person
}
else
{
Alert.ShowInParent(personInfo ?? "" + projectPersonInfo ?? "", MessageBoxIcon.Warning);
string info="提示:";
if (!string.IsNullOrEmpty(personInfo))
{
info += personInfo;
}
if (!string.IsNullOrEmpty(projectPersonInfo))
{
info += projectPersonInfo;
}
Alert.ShowInParent(info, MessageBoxIcon.Warning);
}
}
#endregion