123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- @model EMIS.ViewModel.ChargeManage.ArrearsSituation.ChargeControlView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Entities;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @Html.Position()
- @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("List")
- </div>
- </div>
- <div class="noPopupContent">
- <table cellpadding="0" cellspacing="0" id="departmenttable" width="100%">
- <tr style="display:@Model.IsStudentChargeLoginDisplay">
- <td width="80">
- @Html.LabelFor(x => x.IsStudentChargeLoginLock):
- </td>
- <td style="background-color: white; width: 1px;">
- @Html.CheckBoxFor(x => x.IsStudentChargeLoginLock)
- </td>
- <td width="80">
- @Html.LabelFor(x => x.StudentChargeLoginLockMessage):
- </td>
- <td style="background-color: white;">
- @Html.TextBoxFor(x => x.StudentChargeLoginLockMessage, new { style = "width: 90%" })
- </td>
- </tr>
- <tr style="display:@Model.IsStudentChargeSelectCourseDisplay">
- <td>
- @Html.LabelFor(x => x.IsStudentChargeSelectCourseLock):
- </td>
- <td style="background-color: white;">
- @Html.CheckBoxFor(x => x.IsStudentChargeSelectCourseLock)
- </td>
- <td>
- @Html.LabelFor(x => x.StudentChargeSelectCourseMessage):
- </td>
- <td style="background-color: white;">
- @Html.TextBoxFor(x => x.StudentChargeSelectCourseMessage, new { style = "width: 90%" })
- </td>
- </tr>
- <tr style="display:@Model.IsStudentChargeExaminationApplyDisplay">
- <td>
- @Html.LabelFor(x => x.IsStudentChargeExaminationApplyLock):
- </td>
- <td style="background-color: white;">
- @Html.CheckBoxFor(x => x.IsStudentChargeExaminationApplyLock)
- </td>
- <td>
- @Html.LabelFor(x => x.StudentChargeExaminationApplyMessage):
- </td>
- <td style="background-color: white;">
- @Html.TextBoxFor(x => x.StudentChargeExaminationApplyMessage, new { style = "width: 90%" })
- </td>
- </tr>
- <tr style="display:@Model.IsStudentChargeScoreDisplay">
- <td>
- @Html.LabelFor(x => x.IsStudentChargeScoreLock):
- </td>
- <td style="background-color: white;">
- @Html.CheckBoxFor(x => x.IsStudentChargeScoreLock)
- </td>
- <td>
- @Html.LabelFor(x => x.StudentChargeScoreLockMessage):
- </td>
- <td style="background-color: white;">
- @Html.TextBoxFor(x => x.StudentChargeScoreLockMessage, new { style = "width: 90%" })
- </td>
- </tr>
- <tr style="display:@Model.IsStudentChargeLevelScoreDisplay">
- <td>
- @Html.LabelFor(x => x.IsStudentChargeLevelScoreLock):
- </td>
- <td style="background-color: white;">
- @Html.CheckBoxFor(x => x.IsStudentChargeLevelScoreLock)
- </td>
- <td>
- @Html.LabelFor(x => x.StudentChargeLevelScoreMessage):
- </td>
- <td style="background-color: white;">
- @Html.TextBoxFor(x => x.StudentChargeLevelScoreMessage, new { style = "width: 90%" })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
- @section scripts{
- <script type="text/javascript">
- //保存
- function ChargeControl_Save() {
- $(document.forms[0]).submit();
- }
- </script>
- }
|