Authored by 张帅

编辑页面

... ... @@ -98,7 +98,7 @@
<td style="width:100% ">
<label style="font-size: 14px;">正文内容</label> <br>
<div style="float: left;width:700px;" >
<textarea id="content" name="content" type="text/plain" style="width:1024px;height:500px;"></textarea>
<textarea id="content" type="text/plain" style="width:1024px;height:500px;"></textarea>
</div>
</td>
</tr>
... ... @@ -538,7 +538,8 @@
}
if(!$("#appurl").is(":checked")){
var content = ue.getContent();
var content = handleGoodsBeforeSubmit(ue.getContent());
param.content=content;
if(content ==null ||content == ''){
$.messager.alert("发布失败", "正文内容不能为空", "error");
return false;
... ... @@ -713,7 +714,8 @@
}
if(!$("#appurl").is(":checked")){
var content = ue.getContent();
var content = handleGoodsBeforeSubmit(ue.getContent());
param.content=content;
if(content ==null ||content == ''){
$.messager.alert("发布失败", "正文内容不能为空", "error");
return false;
... ...