地铁二期项目正式开始

SSOShow.cshtml 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. @using YTSoft.BaseCallCenter.MVCWeb.Models;
  2. @using YTSoft.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: 60px 0px;
  36. font-weight: 500;
  37. color: #32CD32;
  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="/Content/images/logo2.png" 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. @Model.msg<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>
  70. </p>
  71. }
  72. </div>
  73. <div class="layui-form" id="larry_form">
  74. </div>
  75. </div>
  76. <div class="copy-right" style=" color:White;">
  77. © 版权所有 郑州市轨道交通
  78. </div>
  79. </div>
  80. <!-- 加载js文件-->
  81. <script src="~/Content/layui/layui.js"></script>
  82. <script src="~/Content/js/ytsoft.config.js"></script>
  83. <script src="~/Content/js/jquery-1.8.3.min.js"></script>
  84. <script src="~/Content/js/ytsoft.http.js"></script>
  85. <div class="layui-layer-move">
  86. <ul style="visibility: visible;" id="supersized" class="quality">
  87. <li style="visibility: visible; opacity: 1;" class="slide-0 activeslide">
  88. <a target="_blank">
  89. <img id="bgimage1" src="/Content/images/login/2.jpg" style="width: 100%;" />
  90. </a>
  91. </li>
  92. </ul>
  93. </div>
  94. <script type="text/javascript">
  95. $(function () { })
  96. function ClickLoginIn() {
  97. window.location = "@Model.data";
  98. }
  99. function EventLoginIn() {
  100. window.location = "Login";
  101. }
  102. </script>
  103. </body>
  104. </html>