|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- @using Learun.Util
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="renderer" content="webkit" />
- <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
- <meta name="format-detection" content="telephone=no" />
- <link rel="shortcut icon" href="" />
- <title>网上办事大厅</title>
- <meta name="keywords" content="网上办事大厅" />
- <meta name="description" content="网上办事大厅" />
- <link href="/Content/css/bootstrap.css" rel="stylesheet" />
- <link href="/Content/font/css/font-awesome.css" rel="stylesheet" />
- <link href="/Content/css/swiper.min1.css" rel="stylesheet" />
- <link href="/Content/css/commontwo.css" rel="stylesheet" />
- <link href="/Content/css/indextwo.css" rel="stylesheet" />
- <link href="/Content/css/styletwo.css" rel="stylesheet" />
- <!-- 蓝色背景 -->
- <!-- <link rel="stylesheet" type="text/css" href="css/blue.css"> -->
- <!-- 红色背景 -->
- <!-- <link rel="stylesheet" type="text/css" href="css/red.css"> -->
- <!-- 绿色背景 -->
- <link id="skinLink" href="/Content/css/green.css" rel="stylesheet" />
- <style>
- body, html {
- min-height: 900;
- }
- </style>
- <!----自适应----->
-
- <script src="/Content/js/jquery.min.js"></script>
-
- <script src="/Content/js/easing.js"></script>
- <script src="/Content/js/jquery-ui.min.js"></script>>
- <script src="/Content/js/bootstrap.js"></script>
- <script src="/Content/js/swiper.min1.js"></script>
- <!----自适应----->
-
-
- <script src="/Content/js/indexTwo.js"></script>
- <script src="/Content/js/mainTwo.js"></script>
-
- <!--[if lte IE 9]>
- <script src="js/respond.min.js"></script>
- <script src="js/html5shiv.js"></script>
- <![endif]-->
- </head>
- <body>
- @{
- var logininfo = LoginUserInfo.Get();
- if (logininfo == null)
- {
- logininfo = new UserInfo();
- }
- }
- <div class="header">
- <a href="/SSOSystem/Index" class="headLogo"><img src="/LR_SystemModule/LogoImg/GetImg?code=data" style="height: 70px;width:144px" /></a>
- <ul class="headTab">
- <li class="active">
- <a href="/SSOSystem/Index">
- <img src="/Content/images/SsoSystem/head1.png"/>
- </a>
- </li>
- <li><a href="/SSOSystem/workTwo"><img src="/Content/images/SsoSystem/head2.png" alt="" /></a></li>
- <li><a href="/SSOSystem/newsTwo"><img src="/Content/images/SsoSystem/head3.png" alt="" /></a></li>
- <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>
- </ul>
- <div class="headSearch">
- <input id="imgText" type="text" placeholder="查找服务" />
- <img id="imgSearch" src="/Content/images/SsoSystem/search.png" alt="" />
- </div>
- <div class="headUser">
- <div class="skinBox">
- <img src="/Content/images/SsoSystem/head4.png" alt="" />
- <div class="skin">
- <div>选择皮肤 :</div>
- <div skin="blue" class="skins blue"></div>
- <div skin="red" class="skins red"></div>
- <div skin="green" class="skins green"></div>
- </div>
- </div>
- <div class="headUserImg"><img src="/LR_OrganizationModule/User/GetImg?userId=@logininfo.userId " alt="" /></div>
- <div class="headUserTxt">@logininfo.realName</div>
- <div class="headLine1"></div>
- <div class="headNumBox">
- <div class="headNum">工号 @logininfo.account</div>
- <div class="headNumTxt">@logininfo.departmentName <span></span> @logininfo.roleName</div>
- </div>
- <!-- 登录后 -->
- <div class="headLine2"></div>
- </div>
- </div>
- @RenderBody()
- @Html.AppendJsFile(
- "/Views/LR_Content/script/lr-base.js",
- "/Views/LR_Content/script/lr-clientdata.js",
- "/Views/LR_Content/script/lr-ajax.js"
- )
-
- </body>
-
- </html>
- <script>
- $(function () {
-
- $("#imgSearch").bind("click", function () {
-
- var text = $("#imgText").val();
- if (text) {
- location.href = '/SSOSystem/workTwo?keyValue=' + text;
- }
- })
- $('pre').hide();
-
- var bodyhtml = $("body").html();
- if (bodyhtml[0] == '&') {
- $("body").html(bodyhtml.replace(/>/, ''));
- }
-
-
- //回车事件绑定
- $('#imgText').bind('keyup', function (event) {
- if (event.keyCode == "13") {
- //回车执行查询
- $('#imgSearch').click();
- }
- });
-
- })
- </script>
|