Statistic2.cshtml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "Statistic2";
  5. }
  6. @section scripts{
  7. <script src="~/Scripts/Business/Studentfile/Statistic/Statistic2.js"
  8. type="text/javascript"></script>
  9. <script type="text/javascript">
  10. var nonSelect = "@DropdownList.SELECT_ALL";
  11. </script>
  12. }
  13. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  14. @Html.Position()
  15. <div class="search_keyword">
  16. <div class="search_input">
  17. <ul>
  18. <li class="sn" style="padding-left: 5px;">统计类型:</li>
  19. <li class="sv">
  20. @Html.DropdownList(new DropdownListOptions
  21. {
  22. BindType = DropdownListBindType.None,
  23. ItemList = new List<DropdownListItem> {
  24. new DropdownListItem { Text = "在校生统计报表", Value = 1 },
  25. new DropdownListItem { Text = "新生统计报表", Value = 2 },
  26. new DropdownListItem { Text = "拟毕业生统计报表", Value = 3 }
  27. },
  28. //SelectedValue = 1,
  29. ID = "ddlReportType",
  30. Name = "ddlReportType",
  31. OnSelect = "reload",
  32. OnLoadSuccess = "reload"
  33. })
  34. </li>
  35. </ul>
  36. </div>
  37. </div>
  38. <div class="search_list">
  39. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 85%; position: absolute;
  40. left: 5px;"></iframe>
  41. </div>
  42. </div>