123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <%@page import="com.hotent.core.api.util.PropertyUtil"%>
- <html>
- <head>
- <title>编辑 公告</title>
- <%@include file="/commons/include/form.jsp"%>
- <f:link href="form.css" ></f:link>
-
- <link href="${ctx}/styles/default/css/hotent/dataRights.css" rel="stylesheet" />
- <script type="text/javascript" src="${ctx}/js/hotent/CustomValid.js"></script>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/form/AttachMent.js" ></script>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/system/HtmlUploadDialog.js" ></script>
- <script type="text/javascript" charset="utf-8" src="${ctx}/js/ueditor2/lang/zh-cn/zh-cn.js"></script>
- <script type="text/javascript" charset="utf-8" src="${ctx}/js/ueditor2/themes/default/css/ueditor.css"></script>
- <script type="text/javascript" charset="utf-8" src="${ctx}/js/ueditor2/form-setting/editor_config.js"></script>
- <script type="text/javascript" charset="utf-8" src="${ctx}/js/ueditor2/editor_api.js"></script>
- <script type="text/javascript" charset="utf-8" src="${ctx}/js/hotent/platform/system/SysDialog.js"></script>
- <script type="text/javascript" charset="utf-8" src="${ctx}/weixin/assets/js/handlebars.min.js"></script>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/system/SysPlanScript.js"></script>
- <script type="text/javascript">
- var bulletinUeditor;
-
- $(function() {
- $("#publicationType").val("1");
- bulletinUeditor = new baidu.editor.ui.Editor({minFrameHeight:300,initialFrameWidth:'100%',lang:'zh_cn'});
- bulletinUeditor.render("txtHtml");
- var options={};
- if(showResponse){
- options.success=showResponse;
- }
- var frm=$('#sysBulletinForm').form();
- $("a.save").click(function() {
- frm.ajaxForm(options);
- if(frm.valid()){
- //如果选择了值班表,则将值班表textarea的值赋值给content
- if($("#type").val()==2){
- $("#zzb").find("input,textarea").each(function(){
- var node=$(this);
- node.hide();
- node.parent().text(node.val());
- });
- $('#content').val($("#zzb").html());//获取值班表的html
- }else{
- $('#content').val(bulletinUeditor.getContent());
- }
- //当人员发布时检验人员
- if($("#publicationType").val() == 3){
- if($("input[name='participants']").val()==""||$("input[name='participants']").val()==null){
- var str = "<label class='error'>必填</label>";
- if($("input[name='participants']").parent().find(".error").length >0){
- return;
- }
- $("input[name='participants']").parent().append(str);
- return;
- }
- }
- $('#sysBulletinForm').submit();
- }
- });
- AttachMent.init("w");
- $("#templateList").change(function(){
- var temId = $(this).val();
- if(temId=="1"){
- return;
- }
- var temContent = bulletinUeditor.getContent();
- var url= __ctx + "/platform/system/sysBulletinTemplate/selector.ht?id="+temId;
- $.get(url, function(data) {
- var htmldata =data.sysbulletintemplate.template;
- var content = temContent+htmldata;
- bulletinUeditor.setContent(content);
- });
- });
-
- $("#sendWxInfo").click(function(){
- $("#trUser").toggle();
- });
-
- $("input[name='selectUser']").click(function(){
- var val=$(this).val();
- if(val==0){
- $("#usersContainer").hide();
- }
- else{
- $("#usersContainer").show();
- }
- });
-
- $("#btnSelectImg").click(function(){
- HtmlUploadDialog({max:1,callback:function(data){
- if(data.length==1){
- var fileId=data[0].fileId;
- var url=__ctx +"/platform/system/sysFile/file_"+fileId+".ht"
- $("#imgUrl").val(fileId);
- $("#columnImg").attr("src",url)
- }
- }});
- });
-
- });
-
- function showResponse(responseText) {
- var obj = new com.hotent.form.ResultMessage(responseText);
- if (obj.isSuccess()) {
- $.ligerDialog.confirm(obj.getMessage()+",是否继续操作","提示信息", function(rtn) {
- if(rtn){
- window.location.href = window.location.href;
- }else{
- window.location.href = "${returnUrl}";
- }
- });
- } else {
- $.ligerDialog.err("提示信息","发布公告出错!",obj.getMessage());
- }
- }
- function reset(obj) {
- //清楚字段信息
- $("input[name='subject']").val("");
- $("#txtHtml").html("");
- //公告模板
- $("#templateList").val(1);
- //重置文件上传
- var fileObj = $(".cancel");
- AttachMent.delFile(fileObj);
- $("#isUrgentNo").attr('checked',true);
- $("#type").val(-1);
- //发布类型
- if($("#publicationType").val()== 2){
- $("#receiverOrgName").val("");
- $("#receiverOrgId").val("");
- $("#organization").hide();
- }
- if($("#publicationType").val()== 3){
- $("#participantIds").val("");
- $("#participants").val("");
- $("#personnel").hide();
- }
- $("#publicationType").val('1');
- $("#publicationTypeList").val(1);
-
- //重置内容
- bulletinUeditor.setContent("");
- }
-
- function selectUser(){
- UserDialog({callback:function(userIds,fullnames,emails,mobiles,rtn){
- var aryAccount=rtn.accounts.split(",");
- var aryFullname=rtn.fullnames.split(",");
- var aryObj=[];
- for(var i=0;i<aryAccount.length;i++){
- var obj={};
- obj.account=aryAccount[i];
- obj.name=aryFullname[i];
- aryObj.push(obj);
- }
- var compiler = Handlebars.compile($('#tpi-list-item').html());
- var html=compiler(aryObj);
- $("#spanUsers").html(html);
- }});
- }
-
- function removeUser(obj){
- var o=$(obj).parent();
- o.remove();
- }
- function selectRows(sel) {
- var organization = document.getElementById("organization");
- var personnel = document.getElementById("personnel");
- if (organization != null && personnel != null) {
- if (sel.value == 2) {
- $("#publicationType").val("2");
- organization.style.display = "table-row";
- personnel.style.display = "none";
- }else if(sel.value == 3){
- $("#publicationType").val("3");
- personnel.style.display = "table-row";
- organization.style.display = "none";
- }else{
- $("#publicationType").val("1");
- organization.style.display = "none";
- personnel.style.display = "none";
- }
- }
- }
- // 弹出组织框
- function showOrgDialog(){
- OrgDialog({callback:dlgOrgCallBack,ids:$("#receiverOrgId").val(),names:$("#receiverOrgName").val(),isSingle:false});
- };
-
- // 组织框返回数据
- function dlgOrgCallBack(orgIds, orgNames)
- {
- $("#receiverOrgName").val(orgNames);
- $("#receiverOrgId").val(orgIds);
- //$("#receiveType").val(retypes);
- }
-
- // 清空所选组织
- function reSetOrg(obj)
- {
- $("#receiverOrgName").val("");
- $("#receiverOrgId").val("");
- }
- function isUrgentClick(str){
- $("#isUrgent").val(str);
- }
- //通知类型改变触发方法
- function selectChange(){
- var type=$("#type").val();
- //如果通知类型选择了选择了值班表
- if(type!=2){
- $("#ueditorTr").show();
- $("#zzbTr").hide();
- }else{
- $("#ueditorTr").hide();
- $("#zzbTr").show();
- }
- }
- </script>
-
- <script type="text/x-handlebars-template" id="tpi-list-item">
- {{#each this}}
- <span class="owner-span" >{{name}}
- <a class="flootbutton" title="移除该项" onclick="removeUser(this)">x</a>
- <input type="hidden" name="account" value="{{account}}"/>
- </span>
- {{/each}}
- </script>
- </head>
- <body>
- <div class="panel">
- <c:if test="${!isAddByFlow}">
- <div class="panel-top">
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group"><a class="link save" id="dataFormSave" href="javascript:;"><span></span>保存</a></div>
- <div class="l-bar-separator"></div>
- <div class="group"><a class="link back" href="list.ht"><span></span>返回</a>
- <div class="l-bar-separator"></div>
- <div class="group"><a class="link undo" onclick="reset(this)"><span></span>重置</a></div>
- <div class="l-bar-separator"></div>
- </div>
- </div>
- </div>
- </div>
- </c:if>
- <div class="panel-body">
- <c:if test="${!isAddByFlow}">
- <form id="sysBulletinForm" method="post" action="save.ht">
- </c:if>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tbody>
- <tr>
- <th width="20%">主题:<span class="required red">*</span></th>
- <td>
- <input type="text" name="subject" value="${sysBulletin.subject}" validate="{required:true,maxlength:128}" class="inputText" style="width: 50%;" />
- </td>
- </tr>
- <tr>
- <th width="15%">所属栏目: </th>
- <td>
- <select name="columnid" id="columnid" class="inputText" style="width: 250px;">
- <c:forEach items="${columnList}" var="columnList">
- <option value="${columnList.id}" <c:if test="${sysBulletin.columnid==columnList.id}">selected="selected"</c:if> >${columnList.name}</option>
- </c:forEach>
- </select>
- </td>
- </tr>
- <tr style="display:none">
- <th width="20%">标题图:</th>
- <td>
- <input type="hidden" id="imgUrl" name="imgUrl" value="${sysBulletin.imgUrl}">
- <c:choose>
- <c:when test="${empty sysBulletin.imgUrl}">
- <img id="columnImg" alt="" src="">
- </c:when>
- <c:otherwise>
- <img id="columnImg" alt="" src="${ctx }/platform/system/sysFile/file_${sysBulletin.imgUrl}.ht">
- </c:otherwise>
- </c:choose>
-
- <input id="btnSelectImg" type="button" value="选择">
- </td>
- </tr>
- <tr>
- <th width="15%">附件: </th>
- <td>
- <div name="div_attachment_container">
- <div class="attachement"></div>
- <textarea style="display: none" controltype="attachment"
- id="attachment" name="attachment" lablename="主表附件" validate="{}">${sysBulletin.attachment}</textarea>
- <a href="javascript:;" field="attachment" class="link selectFile"
- atype="select" onclick="AttachMent.addFile(this);">选择</a>
- </div>
- </td>
- </tr>
- <tr>
- <th width="15%">公告模板: </th>
- <td>
- <select name="templateList" id="templateList" class="inputText" style="width: 250px;">
- <option value="1" selected="selected">---请选择---</option>
- <c:forEach items="${templateList}" var="templateList">
- <option value="${templateList.id}" >${templateList.name}</option>
- </c:forEach>
- </select>
- </td>
- </tr>
- <tr>
- <th width="15%">是否紧急: </th>
- <td>
- <input type="hidden" id="isUrgent" name="isUrgent"/>
- <input type="radio" id="isUrgentYes" name="isUrgent" value="1" title="是" onclick="isUrgentClick(1)">是
- <input type="radio" id="isUrgentNo" name="isUrgent" value="2" title="否" checked="checked" onclick="isUrgentClick(2)">否
- </td>
- </tr>
- <tr>
- <th width="15%">通知类型: </th>
- <td>
- <c:choose>
- <c:when test="${empty dicList}">
- 请在数据字典定义一个nodeKey为gglx的分类
- </c:when>
- <c:otherwise>
- <select id="type" name="type" class="inputText" onchange="selectChange()">
- <option value="-1">--请选择--</option>
- <c:forEach items="${dicList }" var="dic">
- <c:if test="${dic.itemValue != '0'}">
- <option value="${dic.itemValue }" <c:if test="${dic.itemValue eq sysBulletin.type}">selected="selected"</c:if>>${dic.itemName }</option>
- </c:if>
- </c:forEach>
- </select>
- </c:otherwise>
- </c:choose>
- </td>
- </tr>
- <tr>
- <th width="15%">发布类型: </th>
- <td>
- <input type="hidden" id="publicationType" name="publicationType"/>
- <select name="publicationTypeList" id="publicationTypeList" class="inputText" style="width: 250px;" onchange="selectRows(this)">
- <option value="1" selected="selected">广泛发布</option>
- <option value="2">组织发布</option>
- <option value="3">人员发布</option>
- </select>
- </td>
- </tr>
- <tr id="organization" style="display:none;">
- <th width="15%">组织发布: </th>
- <td>
- <input id="receiverOrgName" name="receiverOrgName"
- size="80" readonly="readonly" validate="{required:true}"
- value="${messageSend.receiverOrgName}" /> <a href="javascript:;"
- onclick="showOrgDialog()" class="link get">选择</a> <a
- href="javascript:;" onclick="reSetOrg()" class="link clean">清空</a>
- <input type="hidden" id="receiverOrgId" name="receiverOrgId"
- value="" class="inputText" />
- </td>
- </tr>
- <tr id="personnel" style="display: none;">
- <th style="width: 15%;">人员发布:</th>
- <td>
- <input type="hidden" name="participantIds" value="${participantIds}" />
- <input type="hidden" name="participants" value="${participants}" />
- <div id='participantDiv'></div>
- <a class="link add" onclick="chooseUser(this,'participantDiv','participantIds','participants','no');" ><span></span>选择</a>
- <a class="link reset" onclick="resetSelect('participantDiv','participantIds','participants');" ><span></span>重置</a>
- </td>
- </tr>
- <tr id="ueditorTr">
- <td align="right" nowrap="nowarp" style="width: 20%;"
- class="formTitle">内容</td>
- <td class="formInput">
- <div id="editor" position="center"
- style="overflow: hidden; height: 100%;">
- <textarea id="txtHtml" name="html">${sysBulletin.content}</textarea>
- <textarea id="content" name="content" style="display:none;"></textarea>
- </div>
- </td>
- </tr>
- <tr id="zzbTr" style="display: none;">
- <td align="right" nowrap="nowarp" colspan="2" style="width: 20%;"
- class="formTitle">
- <div id="zzb" position="center"
- style="overflow: hidden; height: 100%;">
- <p style="font-size:36px;text-align:center;margin:30px 0px;">
- 四平市人民政府
- </p>
- <p style="font-size:36px;text-align:center;margin:30px 0px;">
- <input style="font-size:36px;text-align:center;margin:28px 0px;height:36px;width:200px;" placeholder="请输入表名"/>
- </p>
- <table style="border:1px solid #111;width:900px;margin:15px auto;font-family:宋体, simsun;border-collapse:collapse;margin-top:40px;" cellpadding="0" cellspacing="0">
- <tbody>
- <tr>
- <td rowspan="2" style="border:1px solid #111;font-size:20px;text-align:center;font-weight:900;" height="40" width="130">
- 时间
- </td>
- <td colspan="2" style="border:1px solid #111;font-size:20px;text-align:center;font-weight:900;" height="40">
- 白天
- </td>
- <td colspan="2" style="border:1px solid #111;font-size:20px;text-align:center;font-weight:900;" height="40">
- 晚上
- </td>
- <td colspan="2" style="border:1px solid #111;font-size:20px;text-align:center;font-weight:900;" height="40">
- 带班领导及联系方式
- </td>
- </tr>
- <tr>
- <td colspan="1" style="border:1px solid #111;width:145px;text-align:center;" height="40" width="80">
- 值班员
- </td>
- <td colspan="1" style="border:1px solid #111;text-align:center;" height="40" width="120">
- 值班电话
- </td>
- <td colspan="1" style="border:1px solid #111;text-align:center;" height="40" width="80">
- 值班员
- </td>
- <td colspan="1" style="border:1px solid #111;text-align:center;" height="40" width="120">
- 值班电话
- </td>
- <td colspan="1" style="border:1px solid #111;text-align:center;" height="40" width="80">
- 姓名
- </td>
- <td colspan="1" style="border:1px solid #111;text-align:center;" height="40" width="120">
- 联系电话
- </td>
- </tr>
- <tr>
- <td height="30" style="text-align:center;border:1px solid #111;">
- <textarea style="width: 100px;resize: none;text-align:center;"></textarea>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 上午
- </td>
- <td colspan="1" rowspan="1" height="30" style="text-align:center;border:1px solid #111;" width="124">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" rowspan="1" height="30" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 下午
- </td>
- <td colspan="1" rowspan="1" width="120" height="30" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td height="30" style="text-align:center;border:1px solid #111;">
- <textarea style="width: 100px;resize: none;text-align:center;"></textarea>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 上午
- </td>
- <td colspan="1" rowspan="1" height="30" style="text-align:center;border:1px solid #111;" width="124">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" rowspan="1" height="30" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 下午
- </td>
- <td colspan="1" rowspan="1" width="120" height="30" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td height="30" style="text-align:center;border:1px solid #111;">
- <textarea style="width: 100px;resize: none;text-align:center;"></textarea>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 上午
- </td>
- <td colspan="1" rowspan="1" height="30" style="text-align:center;border:1px solid #111;" width="124">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" rowspan="1" height="30" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 下午
- </td>
- <td colspan="1" rowspan="1" width="120" height="30" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td height="30" style="text-align:center;border:1px solid #111;">
- <textarea style="width: 100px;resize: none;text-align:center;"></textarea>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 上午
- </td>
- <td colspan="1" rowspan="1" height="30" style="text-align:center;border:1px solid #111;" width="124">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" rowspan="1" height="30" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 下午
- </td>
- <td colspan="1" rowspan="1" width="120" height="30" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td height="30" style="text-align:center;border:1px solid #111;">
- <textarea style="width: 100px;resize: none;text-align:center;"></textarea>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 上午
- </td>
- <td colspan="1" rowspan="1" height="30" style="text-align:center;border:1px solid #111;" width="124">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" rowspan="1" height="30" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 下午
- </td>
- <td colspan="1" rowspan="1" width="120" height="30" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td height="30" style="text-align:center;border:1px solid #111;">
- <textarea style="width: 100px;resize: none;text-align:center;"></textarea>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 上午
- </td>
- <td colspan="1" rowspan="1" height="30" style="text-align:center;border:1px solid #111;" width="124">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" rowspan="1" height="30" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 下午
- </td>
- <td colspan="1" rowspan="1" width="120" height="30" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td height="30" style="text-align:center;border:1px solid #111;">
- <textarea style="width: 100px;resize: none;text-align:center;"></textarea>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 上午
- </td>
- <td colspan="1" rowspan="1" height="30" style="text-align:center;border:1px solid #111;" width="124">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" rowspan="1" height="30" style="border:1px solid #111;padding:4px 5px;text-align:center;">
- 下午
- </td>
- <td colspan="1" rowspan="1" width="120" height="30" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" style="border:1px solid #111;">
- <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;border-width:0px;border-style:hidden;" border="0" height="30">
- <tbody>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- <tr>
- <td colspan="1" height="30" rowspan="1" width="145" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="80" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- <td height="30" width="120" style="text-align:center;border:1px solid #111;">
- <input style="width: 100px;" type="text"/>
- </td>
- </tr>
- </tbody>
- </table>
- <div style="width:800px;margin:15px auto;text-align:left;">
- <p>
- <span style="font-family:宋体, simsun;font-size:18px;">值班要求:</span>
- </p>
- <p>
- <span style="font-family:宋体, simsun;font-size:18px;">1、值班期间,带班领导要在岗带班,值班人员要严守值班工作纪律,坚决杜绝撤离职守现象。</span>
- </p>
- <p>
- <span style="font-family:宋体, simsun;font-size:18px;">2、ta每位值班人员要求确保通讯工具畅通,认真填写值班登记表。</span>
- </p>
- <p>
- <span style="font-family:宋体, simsun;font-size:18px;">3、遇有紧急、重要事项,要立即向带班领导请示报告,重大事项要求立即向总值(徐学智 18643957666,市政府总值班室电话3246119,传真325119)请示报告,不得迟报、瞒报、漏报,确保及时妥善处置</span>。
- </p>
- </div>
- </div>
- </td>
- </tr>
- <c:if test="${isSupportWeixin}">
- <tr>
- <td align="right" nowrap="nowarp" style="width: 20%;"
- class="formTitle">发送微信通知</td>
- <td class="formInput">
- <input type="checkbox" value="1" name="sendWxInfo" id="sendWxInfo">
- </td>
- </tr>
- <c:if test="${canSelect}">
- <tr id="trUser" style="display: none;">
- <td align="right" nowrap="nowarp" style="width: 20%;"
- class="formTitle">选择人员</td>
- <td class="formInput">
- <input type="radio" name="selectUser" value="0" id="selectUserAll" checked="checked" >
- <label for="selectUserAll" >所有人</label>
- <input type="radio" name="selectUser" value="1" id="selectUserSelect">
- <label for="selectUserSelect" >选择人员</label>
-
- <span id="usersContainer" style="display: none;">
- <span id="spanUsers" class="ht-input" style="width: initial;max-width: 260px;"></span>
- <a href="javascript:;" onclick="selectUser()" >选择</a>
- </span>
- </td>
- </tr>
- </c:if>
- </c:if>
-
- </tbody>
- </table>
-
- <input type="hidden" name="id" value="${sysBulletin.id}"/>
- <c:if test="${!isAddByFlow}">
- </form>
- </c:if>
- </div>
- </body>
- </html>
|