郑许地铁

SSOShow.cshtml 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. @using ZXDT.CallCenter.MVCWeb.Models;
  2. @using ZXDT.Common;
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8" />
  7. <title></title>
  8. <meta name="keywords" content="郑州市轨道交通全媒体客服平台" />
  9. <meta name="description" content="郑州市轨道交通全媒体客服平台" />
  10. <meta name="renderer" content="webkit" />
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  12. <meta name="Author" content="larry" />
  13. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
  14. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  15. <meta name="apple-mobile-web-app-capable" content="yes" />
  16. <meta name="format-detection" content="telephone=no" />
  17. <link rel="Shortcut Icon" href="favicon.ico" />
  18. <link href="/Content/layui/css/layui.css" rel="stylesheet" />
  19. <link rel="stylesheet" type="text/css" href="/Content/css/gobal.css" media="all" />
  20. <link rel="stylesheet" type="text/css" href="/Content/css/animate.css" media="all" />
  21. <link rel="stylesheet" type="text/css" href="/Content/css/metrologin.css" media="all" />
  22. </head>
  23. <style>
  24. .infoText {
  25. font-size: 16px;
  26. text-align: center;
  27. margin-bottom: 50px;
  28. color: yellow;
  29. line-height: 30px;
  30. }
  31. .noInfo {
  32. font-size: 20px;
  33. color: #fff;
  34. text-align: center;
  35. margin: 10px 0px;
  36. font-weight: 500;
  37. color: #cccccc;
  38. line-height: 50px;
  39. }
  40. </style>
  41. <body>
  42. <div class="larry-main layui-layout animated shake larry-delay2" id="larry_login"
  43. style="margin-top: 100px; margin-bottom:50px;">
  44. <div class="title">
  45. <img src="" style="height:160px;" alt="">
  46. </div>
  47. <div class="user-info">
  48. <div style="height:120px;">&nbsp;</div>
  49. <div class="avatar" style=" width:250px; height:50px;">
  50. @if (Model.msg != "没有登录")
  51. {
  52. <p class="infoText" value="@Model.msg">
  53. 登录失败<br><span>请点击下方登录按钮</span>
  54. </p>
  55. <div class="layui-form-item" style="margin-bottom: 40px;">
  56. <button class="layui-btn larry-btn" onclick="ClickLoginIn();">
  57. 单点登录
  58. </button>
  59. </div>
  60. <div class="layui-form-item">
  61. <button class="layui-btn larry-btn" onclick="EventLoginIn();">
  62. 本地登录
  63. </button>
  64. </div>
  65. }
  66. else
  67. {
  68. <p class="noInfo">
  69. <span>抱歉!<br>您没有此权限</span><br>
  70. <span style="font-size: 14px;">如有疑问,请联系系统管理员</span>
  71. </p>
  72. <div class="layui-form-item">
  73. <button class="layui-btn larry-btn" onclick="EventLoginIn();">
  74. 本地登录
  75. </button>
  76. </div>
  77. }
  78. </div>
  79. <div class="layui-form" id="larry_form">
  80. </div>
  81. </div>
  82. <div class="copy-right" style=" color:White;">
  83. @*© 版权所有 郑州地铁集团有限公司运营分公司*@
  84. </div>
  85. </div>
  86. <!-- 加载js文件-->
  87. <script src="/Content/layui/layui.js"></script>
  88. <script src="/Content/js/ZXDT.config.js"></script>
  89. <script src="/Content/js/jquery-1.8.3.min.js"></script>
  90. <script src="/Content/js/ZXDT.http.js"></script>
  91. <div class="layui-layer-move">
  92. <ul style="visibility: visible;" id="supersized" class="quality">
  93. <li style="visibility: visible; opacity: 1;" class="slide-0 activeslide">
  94. <a target="_blank">
  95. <img id="bgimage1" src="/Content/images/login/2.jpg" style="width: 100%;" />
  96. </a>
  97. </li>
  98. </ul>
  99. </div>
  100. <script type="text/javascript">
  101. $(function () { })
  102. function ClickLoginIn() {
  103. window.location = "@Model.data";
  104. }
  105. function EventLoginIn() {
  106. window.location = "Login";
  107. }
  108. </script>
  109. </body>
  110. </html>