You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

133 lines
5.1 KiB

  1. @using Learun.Util
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  7. <meta name="renderer" content="webkit" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
  9. <meta name="format-detection" content="telephone=no" />
  10. <link rel="shortcut icon" href="" />
  11. <title>网上办事大厅</title>
  12. <meta name="keywords" content="网上办事大厅" />
  13. <meta name="description" content="网上办事大厅" />
  14. <link href="/Content/css/bootstrap.css" rel="stylesheet" />
  15. <link href="/Content/font/css/font-awesome.css" rel="stylesheet" />
  16. <link href="/Content/css/swiper.min1.css" rel="stylesheet" />
  17. <link href="/Content/css/commontwo.css" rel="stylesheet" />
  18. <link href="/Content/css/indextwo.css" rel="stylesheet" />
  19. <link href="/Content/css/styletwo.css" rel="stylesheet" />
  20. <!-- 蓝色背景 -->
  21. <!-- <link rel="stylesheet" type="text/css" href="css/blue.css"> -->
  22. <!-- 红色背景 -->
  23. <!-- <link rel="stylesheet" type="text/css" href="css/red.css"> -->
  24. <!-- 绿色背景 -->
  25. <link id="skinLink" href="/Content/css/green.css" rel="stylesheet" />
  26. <style>
  27. body, html {
  28. min-height: 900;
  29. }
  30. </style>
  31. <!----自适应----->
  32. <script src="/Content/js/jquery.min.js"></script>
  33. <script src="/Content/js/easing.js"></script>
  34. <script src="/Content/js/jquery-ui.min.js"></script>>
  35. <script src="/Content/js/bootstrap.js"></script>
  36. <script src="/Content/js/swiper.min1.js"></script>
  37. <!----自适应----->
  38. <script src="/Content/js/indexTwo.js"></script>
  39. <script src="/Content/js/mainTwo.js"></script>
  40. <!--[if lte IE 9]>
  41. <script src="js/respond.min.js"></script>
  42. <script src="js/html5shiv.js"></script>
  43. <![endif]-->
  44. </head>
  45. <body>
  46. @{
  47. var logininfo = LoginUserInfo.Get();
  48. if (logininfo == null)
  49. {
  50. logininfo = new UserInfo();
  51. }
  52. }
  53. <div class="header">
  54. <a href="/SSOSystem/Index" class="headLogo"><img src="/LR_SystemModule/LogoImg/GetImg?code=data" style="height: 70px;width:144px" /></a>
  55. <ul class="headTab">
  56. <li class="active">
  57. <a href="/SSOSystem/Index">
  58. <img src="/Content/images/SsoSystem/head1.png"/>
  59. </a>
  60. </li>
  61. <li><a href="/SSOSystem/workTwo"><img src="/Content/images/SsoSystem/head2.png" alt="" /></a></li>
  62. <li><a href="/SSOSystem/newsTwo"><img src="/Content/images/SsoSystem/head3.png" alt="" /></a></li>
  63. <li><a href="/飞星客户端.exe"><span style="display: inline-block;margin-top: 24px;line-height: 28px;border-radius: 14px;color: #198BE3;background-color: #fff;padding: 0 10px;">飞星下载</span></a></li>
  64. </ul>
  65. <div class="headSearch">
  66. <input id="imgText" type="text" placeholder="查找服务" />
  67. <img id="imgSearch" src="/Content/images/SsoSystem/search.png" alt="" />
  68. </div>
  69. <div class="headUser">
  70. <div class="skinBox">
  71. <img src="/Content/images/SsoSystem/head4.png" alt="" />
  72. <div class="skin">
  73. <div>选择皮肤 :</div>
  74. <div skin="blue" class="skins blue"></div>
  75. <div skin="red" class="skins red"></div>
  76. <div skin="green" class="skins green"></div>
  77. </div>
  78. </div>
  79. <div class="headUserImg"><img src="/LR_OrganizationModule/User/GetImg?userId=@logininfo.userId " alt="" /></div>
  80. <div class="headUserTxt">@logininfo.realName</div>
  81. <div class="headLine1"></div>
  82. <div class="headNumBox">
  83. <div class="headNum">工号 @logininfo.account</div>
  84. <div class="headNumTxt">@logininfo.departmentName <span></span> @logininfo.roleName</div>
  85. </div>
  86. <!-- 登录后 -->
  87. <div class="headLine2"></div>
  88. </div>
  89. </div>
  90. @RenderBody()
  91. @Html.AppendJsFile(
  92. "/Views/LR_Content/script/lr-base.js",
  93. "/Views/LR_Content/script/lr-clientdata.js",
  94. "/Views/LR_Content/script/lr-ajax.js"
  95. )
  96. </body>
  97. </html>
  98. <script>
  99. $(function () {
  100. $("#imgSearch").bind("click", function () {
  101. var text = $("#imgText").val();
  102. if (text) {
  103. location.href = '/SSOSystem/workTwo?keyValue=' + text;
  104. }
  105. })
  106. $('pre').hide();
  107. var bodyhtml = $("body").html();
  108. if (bodyhtml[0] == '&') {
  109. $("body").html(bodyhtml.replace(/&gt;/, ''));
  110. }
  111. //回车事件绑定
  112. $('#imgText').bind('keyup', function (event) {
  113. if (event.keyCode == "13") {
  114. //回车执行查询
  115. $('#imgSearch').click();
  116. }
  117. });
  118. })
  119. </script>