first commit

This commit is contained in:
2025-02-20 14:58:55 +08:00
parent 687bda5ead
commit d7be84fac6
1158 changed files with 127232 additions and 0 deletions
@@ -0,0 +1,48 @@
${request.getValidateScript()}
${zhiqim_manager_history ("noticeList.htm")}
${zhiqim_manager_breadcrumb_parent ("noticeModify.htm", "公告内容", "修改公告")}
${zhiqim_manager_content()}
<form name="theForm" action="noticeUpdate.htm" method="post" onsubmit="return validateForm(this);" data-role="z-call-frame">
<input name="noticeId" type="hidden" value="${notice.getId()}">
<table class="z-table z-bordered z-h50-tr z-pd10 z-bg-white">
<tr class="zi-h40 z-bg-gray z-bold">
<td colspan="2">修改公告</td>
</tr>
<tr>
<td>是否发布:<span class="z-color-999">(请选择)</span></td>
<td>
<span style="margin-left:30px">保存草稿:</span><input name="status" type="radio" data-class="${zmr_color_class}" value="0" style="margin-right:50px"/>
<span>立即发布:</span><input name="status" type="radio" checked data-class="${zmr_color_class}" value="1"/>
</td>
</tr>
<tr>
<td>公告标题:<span class="z-color-999">32位不定长字符)</span></td>
<td><input name="title" class="z-input z-w300 ${zmr_color_class}" maxlength="32" value="${notice.getTitle()}"><span class="z-color-red">&nbsp;*</span></td>
</tr>
<tr>
<td colspan="2">
<div class="z-mg-t20">公告内容:<span class="z-color-999">(不能超过50000个字符)</span><span class="z-color-red">&nbsp;*</span></div>
<div class="z-pd-t20 z-pd-b20" style="margin-top:20px">
<textarea id="content" name="content" class="z-textarea ckeditor z-w100p ${zmr_color_class}" rows="15" size="30" maxlength="50000">${notice.getContent()}</textarea>
</div>
</td>
</tr>
</table>
${zhiqim_manager_submit()}
</form>
${zhiqim_manager_content_end()}
<!--
<script charset="utz-8" src="/inc/ckeditor/ckeditor.js"></script>
-->
<link rel="stylesheet" type="text/css" href="/zres/zteditor/zteditor.css">
<script type="text/javascript" src="/zres/zteditor/zteditor.js"></script>
<script>
//CKEDITOR.replace("articleContent");
Z.onload(function()
{
var editor = new Z.ZhiqimEditor();
editor.setId("content");
editor.execute();
});
</script>