CradReport.cshtml 1.1 KB

123456789101112131415161718192021222324
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "CradReport";
  5. string loginUserID = ViewBag.LoginUserID;
  6. }
  7. @section scripts{
  8. <script src="../../Scripts/Business/StudentWeb/InfoCenter/PersonalInfoCradReport.js" type="text/javascript"></script>
  9. <script type="text/javascript">
  10. var nonSelect = "@DropdownList.SELECT_ALL";
  11. var approveEndStatusID = "@BaseExtensions.GetEndFlowStatus("CF_DifferentDynamic")";
  12. var universityName = '@EMIS.Utility.RSL.Get("UniversityName")';
  13. var curWwwPath = window.document.location.href;
  14. var pathName = window.document.location.pathname;
  15. var pos = curWwwPath.indexOf(pathName);
  16. var localhostPaht = curWwwPath.substring(0, pos);
  17. var loginUserID = '@loginUserID';
  18. </script>
  19. }
  20. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  21. <div class="search_list">
  22. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute; left: 5px;"></iframe>
  23. </div>
  24. </div>