1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @model EMIS.ViewModel.PaymentManage.PracticeRateView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script src="~/Scripts/Business/PaymentManage/PracticeRateEdit.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </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"
- }))
- {
- <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("Edit")</div>
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>@Html.LabelFor(x => x.CourseTypeID):
- </td>
- <td>@Html.DictionaryDropDownListFor((EMIS.ViewModel.DictionaryItem.CF_CourseType), (x => x.CourseTypeID))
- </td>
- <td>@Html.LabelFor(x => x.Rate)
- </td>
- <td>@Html.TextBoxFor(x => x.Rate)
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|