Showing
1 changed file
with
5 additions
and
3 deletions
@@ -98,7 +98,7 @@ | @@ -98,7 +98,7 @@ | ||
98 | <td style="width:100% "> | 98 | <td style="width:100% "> |
99 | <label style="font-size: 14px;">正文内容</label> <br> | 99 | <label style="font-size: 14px;">正文内容</label> <br> |
100 | <div style="float: left;width:700px;" > | 100 | <div style="float: left;width:700px;" > |
101 | - <textarea id="content" name="content" type="text/plain" style="width:1024px;height:500px;"></textarea> | 101 | + <textarea id="content" type="text/plain" style="width:1024px;height:500px;"></textarea> |
102 | </div> | 102 | </div> |
103 | </td> | 103 | </td> |
104 | </tr> | 104 | </tr> |
@@ -538,7 +538,8 @@ | @@ -538,7 +538,8 @@ | ||
538 | } | 538 | } |
539 | 539 | ||
540 | if(!$("#appurl").is(":checked")){ | 540 | if(!$("#appurl").is(":checked")){ |
541 | - var content = ue.getContent(); | 541 | + var content = handleGoodsBeforeSubmit(ue.getContent()); |
542 | + param.content=content; | ||
542 | if(content ==null ||content == ''){ | 543 | if(content ==null ||content == ''){ |
543 | $.messager.alert("发布失败", "正文内容不能为空", "error"); | 544 | $.messager.alert("发布失败", "正文内容不能为空", "error"); |
544 | return false; | 545 | return false; |
@@ -713,7 +714,8 @@ | @@ -713,7 +714,8 @@ | ||
713 | } | 714 | } |
714 | 715 | ||
715 | if(!$("#appurl").is(":checked")){ | 716 | if(!$("#appurl").is(":checked")){ |
716 | - var content = ue.getContent(); | 717 | + var content = handleGoodsBeforeSubmit(ue.getContent()); |
718 | + param.content=content; | ||
717 | if(content ==null ||content == ''){ | 719 | if(content ==null ||content == ''){ |
718 | $.messager.alert("发布失败", "正文内容不能为空", "error"); | 720 | $.messager.alert("发布失败", "正文内容不能为空", "error"); |
719 | return false; | 721 | return false; |
-
Please register or login to post a comment