123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @model EMIS.ViewModel.PaymentManage.LevelStandardView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script src="~/Scripts/Business/PaymentManage/LevelStandardEdit.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.PaymentLevelID):
- </td>
- <td>@Html.DictionaryDropDownListFor((EMIS.ViewModel.DictionaryItem.TP_PaymentLevel), (x => x.PaymentLevelID))
- </td>
- <td>@Html.LabelFor(x => x.TeacherType)
- </td>
- <td>@Html.DictionaryDropDownListFor((EMIS.ViewModel.DictionaryItem.CF_TeacherType), (x => x.TeacherType))
- </td>
- </tr>
- <tr>
- <td>@Html.LabelFor(x => x.Amount):
- </td>
- <td>@Html.TextBoxFor(x => x.Amount)
- </td>
- <td><label></label>
- </td>
- <td>
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|