Commit 079b7b9bd9968e065a6540718e685dddda888789
1 parent
aa98d46e
修改直播审核打回需要填写审核消息
Showing
1 changed file
with
4 additions
and
0 deletions
src/main/resources/templates/page/live.html
| ... | ... | @@ -626,6 +626,10 @@ |
| 626 | 626 | var action_note_type = $("#action_note_type").val(); |
| 627 | 627 | var ids = $("#action_note_id").val(); |
| 628 | 628 | var msg = $("#reviewMsg").val(); |
| 629 | + if (msg.trim() == '') { //消息为空 不行 | |
| 630 | + alert('请输入审核意见!'); | |
| 631 | + return false; | |
| 632 | + } | |
| 629 | 633 | if (action_note_type == 'offline_live') { |
| 630 | 634 | $.post("/live/repulse?ids=" + ids + "&msg=" + msg, function (data) { |
| 631 | 635 | if (data.errorCode == 0) { | ... | ... |