补交附件时没有填写理由点击确定,页面没有给出任何提示

This commit is contained in:
cxt 2017-06-29 16:55:06 +08:00
parent f78b0ed448
commit dcd34e1098
1 changed files with 2 additions and 2 deletions

View File

@ -191,10 +191,10 @@
}
function regex_des() {
if ($.trim($("#attachment_des").val()) == "") {
$("#hint_message").text("补交理由不能为空");
$("#hint_message").html("补交理由不能为空").show();
return false;
} else {
$("#hint_message").text("");
$("#hint_message").html("").hide();
return true;
}
}