diff --git a/dp2weixin.service/dp2WeiXinService.cs b/dp2weixin.service/dp2WeiXinService.cs index a057dd7c..2fc57072 100644 --- a/dp2weixin.service/dp2WeiXinService.cs +++ b/dp2weixin.service/dp2WeiXinService.cs @@ -4221,10 +4221,13 @@ private string GetFullComment(string comment, bool bWorker) { string thisComment = ""; string dateTime = DateTimeUtil.DateTimeToString(DateTime.Now); - if (bWorker == true) - thisComment = dateTime + " 馆员备注:" + comment; - else - thisComment = dateTime + " 读者备注:" + comment; + if (string.IsNullOrEmpty(comment) == false) + { + if (bWorker == true) + thisComment = dateTime + " 馆员备注:" + comment; + else + thisComment = dateTime + " 读者备注:" + comment; + } return thisComment; } diff --git a/dp2weixinP2P/Views/Patron/ChangePhone.cshtml b/dp2weixinP2P/Views/Patron/ChangePhone.cshtml index 3786b3db..7f8d566a 100644 --- a/dp2weixinP2P/Views/Patron/ChangePhone.cshtml +++ b/dp2weixinP2P/Views/Patron/ChangePhone.cshtml @@ -143,7 +143,7 @@ // 2020-3-12 去掉这项 //$("#_recPath").text(result.recPath); - alert("手机号修改成功。"); + alert("修改成功。"); //清空编辑界面信息,todo