12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @model EMIS.ViewModel.SystemView.AnnouncementView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "UserAnnouncementSend";
- }
- @section scripts{
- <script src="~/Scripts/Business/Common/UserAnnouncementSend.js" type="text/javascript"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions
- {
- OnSuccess = "EMISFunction.FormSuccess",
- OnBegin = "EMISFunction.FormSubmit",
- OnComplete = "EMISFunction.FormComplete"
- }))
- {
- @Html.Hidden("UserIDs")
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;"></div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("UserAnnouncementSend")</div>
- </div>
- <div class="search_list popupWindowContent">
- @Html.HiddenFor(x => x.textContent)
- <table cellpadding="0" cellspacing="0" id="departmenttable" width="100%">
- <tr>
- <td>
- @Html.LabelFor(x => x.Title):
- </td>
- <td colspan="3">
- @Html.TextBoxFor(x => x.Title, new { style = "width: 90%" })
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.AnnouncementTypeID):
- </td>
- <td>
- @Html.DropdownListFor(x => x.AnnouncementTypeID, new DropdownListOptions { ItemSourceUrl = Url.Content("~/Announcement/TypeDropdownList"), TextField = "Text", ValueField = "Value" })
- </td>
- <td>
- @Html.LabelFor(x => x.IsSendWX):
- </td>
- <td>
- @Html.CheckBoxFor(x => x.IsSendWXEdit, new Dictionary<string, object> { { "onclick", "selectSendWX()" } })
- </td>
- </tr>
- <tr class="msgtr" style="display:none">
- <td colspan="4" style="color:red">
- 温馨提示:由于微信平台的消息显示限制,目前仅支持无特殊格式的纯文本信息,信息中的图片及特殊格式将无法显示,且内容字数不超过100字,请知悉,谢谢。
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.Content):
- </td>
- <td colspan="3">
- @Html.RichTextFor(x => x.Content, new RichTextOptions { Width = 700, Height = 520 })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|