ClassStudentReport.cshtml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "ClassStudentReport";
  5. var status = ViewBag.Status;
  6. string LoginUserID = ViewBag.UserID;
  7. var DataRange = ViewBag.DataRange;
  8. }
  9. @section scripts{
  10. <script type="text/javascript">
  11. var curWwwPath = window.document.location.href;
  12. var pathName = window.document.location.pathname;
  13. var pos = curWwwPath.indexOf(pathName);
  14. var localhostPaht = curWwwPath.substring(0, pos) + "/";
  15. var nonSelect = "@DropdownList.SELECT_ALL";
  16. var endStatusID = "@BaseExtensions.GetEndFlowStatus("CF_DifferentDynamic")";
  17. var LoginUserID='@LoginUserID';
  18. var DataRange='@DataRange';
  19. var SchoolName = '@EMIS.Utility.RSL.Get("UniversityName")';
  20. </script>
  21. <script src="../../Scripts/Business/Studentfile/ClassStudentReport.js" type="text/javascript"></script>
  22. }
  23. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentCradReport, new DropdownListOptions
  24. {
  25. ID = "selReport",
  26. Name = "selReport",
  27. BindType = DropdownListBindType.PleaseSelect,
  28. SelectedValue = (int)(int)EMIS.ViewModel.CF_StudentCradReport.Card,
  29. OnSelect = "Report"
  30. })
  31. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  32. @*<select id="selReport" onchange="Report()">
  33. <option value="1">班级学生名单</option>
  34. <option value="2" selected="selected">学生学籍卡</option>
  35. <option value="3">学生准考证卡</option>
  36. </select>*@
  37. <div class="search_list">
  38. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute;
  39. left: 5px;"></iframe>
  40. </div>
  41. </div>