| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>消息管理主表</title>
- <style>
- .ui-button {
- display: inline-block;
- padding: 2px 2px;
- margin-bottom: 0;
- font-size: 8px;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 4px;
- }
- </style>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script type="text/javascript">
- $(document).ready(function(){
- $('#tt').tabs({
- onSelect:function(title){
- $('#tt .panel-body').css('width','auto');
- }
- });
- $(".tabs-wrap").css('width','100%');
- });
- </script>
- </head>
- <body style="overflow-x: hidden;">
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" tiptype="1" action="mMessageController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${mMessagePage.id }"/>
- <table cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">标题:</label>
- </td>
- <td class="value">
- <input id="title" name="title" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${mMessagePage.title}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">标题</label>
- </td>
- <td align="right">
- <label class="Validform_label">发送范围:</label>
- </td>
- <td class="value">
- <t:dictSelect field="sendScope" type="radio" typeGroupCode="message_send_scope" defaultVal="${mMessagePage.sendScope}" hasLabel="false" title="发送范围"></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">发送范围</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">发送方式:</label>
- </td>
- <td class="value">
- <t:dictSelect field="sendWay" type="checkbox" typeGroupCode="message_send_way" defaultVal="${mMessagePage.sendWay}" hasLabel="false" title="发送方式"></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">发送方式</label>
- </td>
- <td align="right">
- <label class="Validform_label">发送时间类型:</label>
- </td>
- <td class="value">
- <t:dictSelect field="sendTimeType" type="radio" datatype="n" typeGroupCode="message_send_time_type" defaultVal="${mMessagePage.sendTimeType}" hasLabel="false" title="发送时间类型"></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">发送时间类型</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">通知类型:</label>
- </td>
- <td class="value">
- <t:dictSelect field="noticeType" type="radio" datatype="*" typeGroupCode="message_notice_type" defaultVal="${mMessagePage.noticeType}" hasLabel="false" title="通知类型"></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">通知类型</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">内容:</label>
- </td>
- <td class="value" colspan="3">
- <script type="text/javascript" charset="utf-8" src="plug-in/ueditor/ueditor.config.js"></script>
- <script type="text/javascript" charset="utf-8" src="plug-in/ueditor/ueditor.all.min.js"></script>
- <textarea name="text" id="text" style="width: 650px;height:300px">${mMessagePage.text }</textarea>
- <script type="text/javascript">
- var text_editor = UE.getEditor('text');
- </script>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">内容</label>
- </td>
- </tr>
- </table>
- <div style="width: auto;height: 200px;">
- <%-- 增加一个div,用于调节页面大小,否则默认太小 --%>
- <div style="width:800px;height:1px;"></div>
- <t:tabs id="tt" iframe="false" tabPosition="top" fit="false">
- <t:tab href="mMessageController.do?mMessageSendScopeList&id=${mMessagePage.id}" icon="icon-search" title="范围详情" id="mMessageSendScope"></t:tab>
- </t:tabs>
- </div>
- </t:formvalid>
- <!-- 添加 附表明细 模版 -->
- <table style="display:none">
- <tbody id="add_mMessageSendScope_table_template">
- <tr>
- <td align="center"><div style="width: 25px;" name="xh"></div></td>
- <td align="center"><input style="width:20px;" type="checkbox" name="ck"/></td>
- </tr>
- </tbody>
- </table>
- </body>
- <script src = "webpage/cn/com/lzt/message/mMessage.js"></script>
|