ClassStudentReport.cshtml 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  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_StudentsReport, new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ID = "selReport", Name = "selReport", OnSelect = "Report", SelectedValue = 2 })
  24. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  25. @*<select id="selReport" onchange="Report()">
  26. <option value="1">班级学生名单</option>
  27. <option value="2" selected="selected">学生学籍卡</option>
  28. <option value="3">学生准考证卡</option>
  29. </select>*@
  30. <div class="search_list">
  31. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute;
  32. left: 5px;"></iframe>
  33. </div>
  34. </div>