AppraiseReport.cshtml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "AppraiseReport";
  5. string loginUserID = ViewBag.LoginUserID;
  6. var dataRangeID = ViewBag.DataRangeID;
  7. }
  8. @section scripts{
  9. <script src="../../Scripts/Business/StudentManage/StudentProfile/StudentAppraiseReport.js" type="text/javascript"></script>
  10. <script type="text/javascript">
  11. var nonSelect = "@DropdownList.SELECT_ALL";
  12. var graduateAppraise = "@((int)EMIS.ViewModel.CF_StudentAppraiseReport.Graduate)";
  13. var postPracticeAppraise = "@((int)EMIS.ViewModel.CF_StudentAppraiseReport.PostPractice)";
  14. var universityName = '@EMIS.Utility.RSL.Get("UniversityName")';
  15. var curWwwPath = window.document.location.href;
  16. var pathName = window.document.location.pathname;
  17. var pos = curWwwPath.indexOf(pathName);
  18. var localhostPaht = curWwwPath.substring(0, pos);
  19. var loginUserID = '@loginUserID';
  20. var dataRangeID = '@dataRangeID';
  21. </script>
  22. }
  23. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentAppraiseReport, new DropdownListOptions
  24. {
  25. ID = "DictionaryStudentAppraiseReport",
  26. Name = "DictionaryStudentAppraiseReport",
  27. BindType = DropdownListBindType.PleaseSelect,
  28. SelectedValue = (int)(int)EMIS.ViewModel.CF_StudentAppraiseReport.Graduate,
  29. OnSelect = "StudentAppraiseReport"
  30. })
  31. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  32. <div class="search_list">
  33. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute; left: 5px;"></iframe>
  34. </div>
  35. </div>