1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script type="text/javascript">
- function Confirm() {
- if ($("#ddlAction").combobox("getValue") == "" || $("#ddlAction").combobox("getValue") == "@DropdownList.SELECT_ALL"){
- $.messager.alert("系统提示", "请选择处理动作。");
- return;
- }
- top.$("#@(Request["WindowID"])").data("resultData", {
- Action: $("#ddlAction").combobox("getValue"), Comment: $("#txtOpinioncomment").val()
- });
- top.$("#@(Request["WindowID"])").dialog("close");
- }
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true">
- @using (Html.BeginForm("AuditProcess", "SpecialtyAuditing", new { MNU = "Mnu05-01-03" }, FormMethod.Post))
- {
- <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;">
- <div class="current_navbar toolbar">
- <div class="func_info">
- <a class="easyui-linkbutton" href="javascript:Confirm()" data-options="iconCls:'icon-ok',plain:'true'"
- onfocus="this.blur()">确定</a>
- </div>
- </div>
- </div>
- </div>
- <div class="search_list">
- <table id="specialtytable">
- <tr>
- <td style="padding: 0px 0px 0px 10px;">
- 处理动作:
- </td>
- <td>@Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.None,
- ID = "ddlAction",
- Name = "ddlAction",
- ItemSourceUrl = "~/Common/ApproveActionDropDown?bindType="+
- ((int)DropdownListBindType.None).ToString() + "&tableName=" +
- Request["TableName"] + "&formID=" + Request["FormID"]
- })
- </td>
- </tr>
- <tr>
- <td style="padding: 10px 0px 0px 10px;">
- 处理意见:
- </td>
- <td style="padding: 10px 0px 0px 0px;">@Html.TextArea("txtOpinioncomment", "", 5, 30, new { id = "txtOpinioncomment" })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|