123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
- <link rel="stylesheet" href="${contextPath}/css/forum.css">
- <link rel="stylesheet" href="${contextPath}/css/bootstrap/bootstrap.min.css">
- <link rel="stylesheet" href="${contextPath}/css/font-awesome.min.css">
- <title>吉林省产业技术创新联盟管理平台-技术问答</title>
- </head>
- <body style="background-color:#F5F5F5;">
- <header>
- <form id="layoutForm1" role="form" action="${contextPath}/TechnicalQa/layout" method="post">
- <div class="fo-navbar">
- <div class="container">
- <a href="${contextPath}/TechnicalQaWeb/" class="fo-navbar-logo">
- <img src="${contextPath}/img/forum/3.png" alt="">
- </a>
- <div class="fo-navbar-info">
- <ul>
- <%if(session.LoginQaUser!'' == ''){%>
- <li class="dropdown">
- <a href="${contextPath}/TechnicalQaWeb/tologin" target="_blank">登陆</a>
- </li>
- <%}else{%>
- <li class="dropdown">
- <a href="#" class="dropdown-toggle" data-toggle="dropdown">
- 导航<span class="caret" id="myTabDrop"></span>
- </a>
- <ul class="dropdown-menu" role="menu" aria-labelledby="myTabDrop">
- <li>
- <a href="${contextPath}/TechnicalQa/toQuestionPage">等我回答</a>
- </li>
- <li>
- <a href="${contextPath}/TechnicalQa/toMyAnswerPage">我的提问</a>
- </li>
- <li>
- <a href="${contextPath}/TechnicalQa/toMyQuestionPage">我的回答</a>
- </li>
- </ul>
- </li>
- <%}%>
- <li>
- <a href="${contextPath}/TechnicalQaWeb/">主页</a>
- </li>
- <%if(session.LoginQaUser.role!0 > 0){%>
- <li>
- <a href="${contextPath}/TechnicalQa/tomanage">管理</a>
- </li>
- <%}%>
- </ul>
- </div>
- </div>
- </div>
- <div class="container">
- <div class="fo-info">
- <%if(session.LoginQaUser!'' == ''){%>
- <h3>欢迎进入用技术问答系统,登录后可以使用更多功能!</h3>
- <%}else{%>
- <img src="${contextPath}/img/forum/defaultHead1.png" alt="${session.LoginQaUser.name!''}" width="200" height="300"/>
-
- <div class="fo-info-jianli">
- <a href="${contextPath}/TechnicalQa/toQuestionPage" class="fo-navbar-logo">
- <h3>${session.LoginQaUser.name }</h3>
- </a>
- <%if(session.LoginQaUser.isexperts == 1){%>
- <p><span class="label label-info" style="margin-right:10px;">专家</span></p>
- <p>专家编号:${session.LoginQaUser.expertsid }</p>
- <%}else{%>
- <p><span class="label label-warning">非专家</span></p>
- <%}%>
- 个人签名:<input name="signature" type="text" id="signature" style="color:#666;" placeholder="请输入个人签名" value="${session.LoginQaUser.signature }" onkeyup="layoutSignatureKeyup(event);"/>
- <p>注册日期:${session.LoginQaUser.createdate }</p>
- </div>
- <%}%>
- </div>
- </div>
- </form>
- </header>
- ${layoutContent}
-
- <footer class="fo-footer">
- <p>地址:吉林省长春市朝阳区前进大街1244号</p>
- <p>邮编:123456 电话:123456789 传真:239823982 邮箱:1243456@163.com</p>
- <p>版权所有 吉林省计算中心</p>
- <p>技术支持:长春市福瑞科技有限公司</p>
- </footer>
- <script src="${contextPath}/js/jquery.min.js"></script>
- <script src="${contextPath}/js/bootstrap.min.js"></script>
- <%if(session.LoginQaUser!'' != ''){%>
- <script >
- function layoutSignatureKeyup(event){
- if(event.keyCode == 13){
- $("#layoutForm1").submit();
- }
- }
- </script>
- <%}%>
- <!-- 页面中自定义的脚本写在下面 -->
- ${jsParam!''}
- </body>
- </html>
|