common.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:th="http://www.thymeleaf.org"
  4. xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  5. <head th:fragment="header(title, link)">
  6. <meta charset="utf-8" />
  7. <link rel="icon" th:href="${staticHost+'/image/logo.png'}">
  8. <meta name="Keywords" content="" />
  9. <meta name="Description" content="" />
  10. <meta name="viewport"
  11. content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1,user-scalable=no">
  12. <meta http-equiv="x-ua-compatible" content="ie=edge">
  13. <title>科德项目管理系统</title>
  14. <th:block th:replace="${link}" />
  15. <body>
  16. <th:block th:fragment="nav(mainM,subM)">
  17. <div class="container">
  18. <div class="logo">
  19. <a th:href="${basePath + '/portal/index.html'}"> <img th:src="${portalHost+'/img/Logo111.png'}" alt="" title="技淘" />
  20. </a>
  21. </div>
  22. <div class="logo_right"></div>
  23. <div class="nav">
  24. <ul>
  25. <li th:classappend="${mainM=='service'}? 'active'"><a
  26. th:href="${basePath + '/portal/service/serviceIndex.html'}">科技服务</a>
  27. <img th:src="${portalHost+'/img/hot.png'}" />
  28. <ol class="subnavigation">
  29. <li><a th:href="${basePath + '/portal/service/highTechCognizance.html'}">高企认定</a>
  30. </li>
  31. <li><a th:href="${basePath + '/portal/service/propertyRight.html'}">知识产权</a>
  32. </li>
  33. </ol></li>
  34. <li th:classappend="${mainM=='technologyTrading'}? 'active'">
  35. <a th:href="${basePath + '/portal/technologyTrading/index.html'}">技术交易</a>
  36. <ol class="subnavigation">
  37. <li><a th:href="${basePath + '/portal/technologyTrading/achievement.html'}">专利产品</a>
  38. </li>
  39. <li><a th:href="${basePath + '/portal/technologyTrading/achievement.html'}">技术成果</a>
  40. </li>
  41. <li><a th:href="${basePath + '/portal/technologyTrading/demand.html'}">技术需求</a>
  42. </li>
  43. <li><a th:href="${basePath + '/portal/technologyTrading/assessMent.html'}">技术评估</a>
  44. </li>
  45. </ol>
  46. </li>
  47. <li th:classappend="${mainM=='thinkTank'}? 'active'"><a
  48. th:href="${basePath + '/portal/thinkTank/index.html'}">智库咨询</a>
  49. <ol class="subnavigation">
  50. <li><a
  51. th:href="${basePath + '/portal/thinkTank/policyList.html'}">智政</a>
  52. </li>
  53. <li><a
  54. th:href="${basePath + '/portal/thinkTank/index.html#zizone'}">智者</a>
  55. </li>
  56. </ol></li>
  57. <!-- <li><a th:href="${basePath + '/portal/financial/index.html'}">科技金融</a>
  58. <ol class="subnavigation">
  59. <li><a
  60. th:href="${basePath + '/portal/financial/investmentInstitution.html'}">投资机构</a>
  61. </li>
  62. </ol></li> -->
  63. <li><a th:href="${basePath + '/portal/aboutUs.html'}">关于公司</a>
  64. <ol class="subnavigation">
  65. <li><a
  66. th:href="${basePath + '/portal/contactUs.html'}">联系我们</a>
  67. </li>
  68. </ol></li>
  69. <!-- <li><a href="#">科技活动</a></li> <li><a href="#">平台共建</a></li> -->
  70. </ul>
  71. </div>
  72. <div class="nav_right" th:if="${!isLogin}">
  73. <a th:href="${basePath + '/user/signIn.html'}"> <img
  74. th:src="${portalHost+'/img/index_resiter.png'}" alt="" />
  75. </a>
  76. <a href="javascript:;" class="head_login">登录</a>
  77. <div></div>
  78. </div>
  79. <div class="nav_right" th:if="${isLogin}">
  80. <a th:href="${basePath + (isAdmin? '/admin/index.html':'/user/account/index.html')}"
  81. th:text="${#strings.isEmpty(userName)?'个人中心':userName}">个人中心</a>
  82. <a th:href="${basePath + '/user/logout'}">退出</a>
  83. <a th:href="${basePath + '/portal/aboutUs.html'}">关于公司</a>
  84. <div></div>
  85. </div>
  86. </div>
  87. </th:block>
  88. <th:block th:fragment="banners">
  89. <div id="myCarousel" class="carousel slide"
  90. th:if="${banners!=null && banners.size() > 1}">
  91. <ol class="carousel-indicators">
  92. <th:block th:each="banner,bannerStat:${banners}">
  93. <li data-target="#myCarousel" data-slide-to="0"
  94. th:class="${bannerStat.first?'active':''}"></li>
  95. </th:block>
  96. </ol>
  97. <div class="carousel-inner">
  98. <th:block th:each="banner,bannerStat:${banners}">
  99. <div class="item" th:classappend="${bannerStat.first?'active':''}">
  100. <img th:src="${staticDomain +'/upload'+ banner.imgurl}"
  101. th:alt="${banner.text}">
  102. </div>
  103. </th:block>
  104. </div>
  105. <a class="carousel-control left" href="#myCarousel" data-slide="prev"><span
  106. class="glyphicon glyphicon-chevron-left"></span></a> <a
  107. class="carousel-control right" href="#myCarousel" data-slide="next"><span
  108. class="glyphicon glyphicon-chevron-right"></span></a>
  109. </div>
  110. <div class="banner-item" th:if="${banners!=null && banners.size()==1}">
  111. <img th:src="${staticDomain +'/upload'+ banners[0].imgurl}"
  112. th:alt="${banners[0].text}">
  113. </div>
  114. </th:block>
  115. <th:block th:fragment="copyright">
  116. <div id="bottom">
  117. <div class="bottom">
  118. <div class="bottom_text">
  119. <div class="text_top">
  120. <a th:href="${basePath + '/portal/aboutUs.html'}">关于公司</a>
  121. <a th:href="${basePath + '/portal/contactUs.html'}">联系我们</a>
  122. <p>Copyright &copy 2016-2017 科德 版权所有 湘ICP备15019731号 -2
  123. 技术支持:湖南阿凡提科技有限公司</p>
  124. </div>
  125. <div class="text_center" id="qrCode">
  126. <div class="cont_left">
  127. <img th:src="${portalHost+'/img/dizhi.jpg'}" alt="" />
  128. <p>湖南省长沙市营盘东路19号金山大厦八楼</p>
  129. </div>
  130. <div class="cont_center">
  131. <img th:src="${portalHost+'/img/dianhua.jpg'}" alt="" />
  132. <p>合作电话:400-8800-962</p>
  133. </div>
  134. <div class="cont_guanli">
  135. <a th:href="${basePath + '/admin/login'}">
  136. <img th:src="${portalHost+'/img/guanli.png'}" alt="" />
  137. <p>管理员入口</p>
  138. </a>
  139. </div>
  140. <div class="cont_rightapp">
  141. <img th:src="${portalHost+'/img/erweima_iphone.png'}" alt="" />
  142. <p>iPhone版</p>
  143. </div>
  144. <div class="cont_right android">
  145. <img th:src="${portalHost+'/img/erweima_android.jpg'}" alt="" />
  146. <p>Android版</p>
  147. </div>
  148. <div class="cont_right">
  149. <img th:src="${portalHost+'/img/erweima.jpg'}" alt="" />
  150. <p>微信公众号</p>
  151. </div>
  152. </div>
  153. <div class="text_bottom">
  154. <p>友情链接</p>
  155. <a href="http://www.hnst.gov.cn/" target="_blank">湖南省科技厅/</a> <a
  156. href="http://www.cssti.cn/" target="_blank">长沙市科技局/</a> <a
  157. href="http://www.cast.org.cn/" target="_blank">中国科学技术协会/</a> <a
  158. href="http://www.chinatorch.gov.cn/" target="_blank">科技部火炬中心/</a> <a
  159. href="http://www.nosta.gov.cn/web/index.aspx" target="_blank">国家科技成果奖励办/</a> <a
  160. href="http://www.nast.org.cn/" target="_blank">国家科技成果网/</a> <a
  161. href="http://www.hnast.org.cn/portal/comm/index.action" target="_blank">湖南省科学技术协会/</a>
  162. <a href="http://www.hncgw.gov.cn/" target="_blank">湖南省科技成果转化公共服务平台/</a> <a
  163. href="http://www.hnjxw.gov.cn/" target="_blank">湖南省经济信息化委员会/</a> <a
  164. href="http://kyy.hnu.cn/" target="_blank">湖南大学科学技术研究院/</a> <a
  165. href="http://www.gxst.gov.cn/gxkjt/" target="_blank">广西省科技厅/</a> <a
  166. href="http://www.nmkjt.gov.cn/" target="_blank">内蒙古自治区科技厅/</a> <a
  167. href="http://www.cshtz.gov.cn/" target="_blank">长沙市高新区管委会/</a> <a
  168. href="http://www.jxas.ac.cn/" target="_blank">江西省科学院/</a> <a
  169. href="http://www.cnic.cn/front/index.html#/cnicSite/home" target="_blank">中科院计算机网络信息中心/</a>
  170. <a href="http://kxyjb.csu.edu.cn/" target="_blank">中南大学科学研究部/</a> <a
  171. href="http://www.cast.org.cn/" target="_blank">中国科协创新创业服务中心/</a> <a
  172. href="http://www.hbstd.gov.cn/" target="_blank">湖北省科技厅/</a> <a
  173. href="http://www.gdstc.gov.cn/" target="_blank">广东省科技厅/</a> <a
  174. href="http://www.hnkjt.gov.cn/" target="_blank">河南省科技厅/</a> <a
  175. href="http://www.cbtm.gov.cn/" target="_blank">技术合同登记官网</a>
  176. </div>
  177. </div>
  178. </div>
  179. </div>
  180. <div onclick="_MEIQIA('showPanel')" id="lxkf" style="display:none"></div>
  181. <div th:if="${!isAdmin}" class="pub_fix">
  182. <span class="index_blur"></span>
  183. <ul class="ret_top">
  184. <li th:classappend="${!isLogin}? 'head_login'"><a
  185. th:if="${!isLogin || userData.lvl == 1}"
  186. th:href="${isLogin?(basePath + '/portal/member') : 'javascript:;'}">
  187. <img th:src="${portalHost+'/img/index_fix0.png'}" alt="" />
  188. <p>申请会员</p>
  189. </a> <a th:if="${isLogin && userData.lvl == 0}"
  190. th:href="${basePath + '/user/certify'}"> <img
  191. th:src="${portalHost+'/img/index_fix0.png'}" alt="" />
  192. <p>实名认证</p>
  193. </a></li>
  194. <li><a onclick="_MEIQIA('showPanel')"> <img
  195. th:src="${portalHost+'/img/index_fix3.png'}" alt="" />
  196. <p>联系客服</p>
  197. </a></li>
  198. <li><a href="" class="pendent_box"> <img
  199. th:src="${portalHost+'/img/index_fix4.png'}" alt="" />
  200. <p>返回顶部</p>
  201. </a></li>
  202. </ul>
  203. <span class="index_orange"></span>
  204. </div>
  205. <div class="message">
  206. <span></span>
  207. </div>
  208. </th:block>
  209. <th:block th:fragment="login">
  210. <div class="login">
  211. <div class="login_mian">
  212. <div class="login_left">
  213. <div class="login_ewm">
  214. <img th:src="${portalHost+'/img/Android.jpg'}" alt="二维码" />
  215. <p>Android版</p>
  216. <p>客户端</p>
  217. </div>
  218. <div class="login_ewm">
  219. <img th:src="${portalHost+'/img/iPhone.jpg'}" alt="二维码" />
  220. <p>iPhone版</p>
  221. <p>客户端</p>
  222. </div>
  223. </div>
  224. <div class="login_right">
  225. <h5>
  226. 用户登录<a href="/user/signIn.html">免费注册有好礼呦!!</a>
  227. </h5>
  228. <form id="form_login">
  229. <div class="login_uesr">
  230. <label for="uesname"><img
  231. th:src="${portalHost+'/img/login_use.png'}" /></label> <input
  232. type="text" name="mobile" id="Lo_user" placeholder="请输入手机号码" />
  233. <img th:src="${portalHost+'/img/login_del.png'}" class="log_del" />
  234. </div>
  235. <div class="login_pass">
  236. <label for="pass"><img
  237. th:src="${portalHost+'/img/login_password.png'}" /></label> <input
  238. type="password" name="password" id="Lo_pass" placeholder="请输入密码" />
  239. </div>
  240. <div class="login_check">
  241. <label for="checks" class="lab_check"> <input
  242. type="checkbox" name="type" id="checks" value="0" />专家登录
  243. </label> <label for="checkst" class="lab_checkno"> <input
  244. type="checkbox" name="type" id="checkst" value="1" />企业登录
  245. </label> <a href="">忘记密码?</a>
  246. </div>
  247. <input type="submit" value="登 陆" class="login_submit" />
  248. </form>
  249. <img th:src="${portalHost+'/img/login_hua.png'}" alt=""
  250. class="login_hua" /> <img
  251. th:src="${portalHost+'/img/login_shadow.png'}" alt="阴影效果"
  252. class="login_shadow" /> <img
  253. th:src="${portalHost+'/img/login_close.png'}" alt=""
  254. class="login_close" />
  255. </div>
  256. </div>
  257. </div>
  258. <div id="forget">
  259. <div class="forget">
  260. <form id="forget_form">
  261. <div class="forget_top">
  262. <a href="">忘记密码?</a>
  263. <div class="login_check">
  264. <label for="forget_checks" class="lab_check"> <input
  265. type="checkbox" name="type" id="forget_checks" />专家登录
  266. </label> <label for="forget_checkst" class="lab_checkno"> <input
  267. type="checkbox" name="type" id="forget_checkst" />企业登录
  268. </label>
  269. </div>
  270. </div>
  271. <div class="forget_center">
  272. <div class="phone">
  273. <label for="forget_phone"> 手机号码:<input type="text"
  274. name="type" id="forget_phone" placeholder="请输入您的手机号码..." />
  275. </label>
  276. </div>
  277. <div class="yanzheng">
  278. <label for="forget_yanzheng"> 图形验证码:<input type="text"
  279. name="type" id="forget_yanzheng" />
  280. </label>
  281. <div class="yanzhengma_cont_">
  282. <img th:src="${basePath+'/open/getVCode'}" />
  283. </div>
  284. </div>
  285. <div class="cellcode_">
  286. <div>
  287. 验证码:<input type="text" name="cellCode" placeholder="手机验证码"
  288. id="photo_n" />
  289. </div>
  290. <input type="button" id="photo_m" value="获取验证码" disabled />
  291. </div>
  292. <div class="fastener">
  293. <input type="submit" class="forget_sub" value="确认" />
  294. <div class="fastener_right">取消</div>
  295. </div>
  296. </div>
  297. </form>
  298. <img th:src="${portalHost+'/img/login_close.png'}" alt=""
  299. class="login_close" /> <img
  300. th:src="${portalHost+'/img/login_shadow.png'}" alt="阴影效果"
  301. class="login_shadow" />
  302. </div>
  303. </div>
  304. <div id="new_password">
  305. <div class="new_password">
  306. <form id="new_password_form">
  307. <div class="password_top">
  308. <h4>设置新密码</h4>
  309. <span>密码长度为6-20个字符,区分大小写</span>
  310. </div>
  311. <div class="password_center">
  312. <div>
  313. <label for="new_pass"> 新密码:<input type="password"
  314. name="type" id="new_pass" placeholder="请输入您的新密码..." />
  315. </label>
  316. </div>
  317. <div>
  318. <label for="new_pass_again"> 确认密码:<input type="password"
  319. name="type" id="new_pass_again" placeholder="请确认您的密码..." />
  320. </label>
  321. </div>
  322. <div class="fastener">
  323. <input type="submit" class="new_password_sub" value="确认" />
  324. <div class="fastener_right">取消</div>
  325. </div>
  326. </div>
  327. </form>
  328. <img th:src="${portalHost+'/img/login_close.png'}" alt=""
  329. class="login_close" /> <img
  330. th:src="${portalHost+'/img/login_shadow.png'}" alt="阴影效果"
  331. class="login_shadow" />
  332. </div>
  333. </div>
  334. <div class="smg">
  335. <input type="text" name="msg" value="" id="msg" readonly="readonly" />
  336. </div>
  337. </th:block>
  338. <th:block th:fragment="footer(scripts)">
  339. <script th:inline="javascript">
  340. /*<![CDATA[*/
  341. window.globalConfig = {};
  342. globalConfig.context = /*[[${basePath}]]*/'';
  343. globalConfig.portalHost = /*[[${portalHost}]]*/'';
  344. globalConfig.staticDomain = /*[[${staticDomain}]]*/'';
  345. globalConfig.staticHost = /*[[${staticHost}]]*/'';
  346. globalConfig.uploadPath = /*[[${uploadPath}]]*/'';
  347. globalConfig.uploadPrivatePath = /*[[${uploadPrivatePath}]]*/'';
  348. globalConfig.avatarHost = /*[[${avatarHost}]]*/'';
  349. globalConfig.avatarUploadHost = /*[[${avatarUploadHost}]]*/'';
  350. globalConfig.csrfToken = /*[[${csrf}]]*/'';
  351. globalConfig.kfqq = '2035994611';
  352. /*]]>*/
  353. </script>
  354. <script th:inline="javascript" th:if="${adminData!=null}">
  355. /*<![CDATA[*/
  356. window.adminData = {
  357. mobile : /*[[${adminData.mobile}]]*/'',
  358. name : /*[[${adminData.name}]]*/'',
  359. email : /*[[${adminData.email}]]*/'',
  360. createTime : /*[[${adminData.createTime}]]*/'',
  361. uid : /*[[${adminData.id}]]*/'',
  362. departmentId : /*[[${adminData.departmentId}]]*/'',
  363. province : /*[[${adminData.province}]]*/null,
  364. isSuperAdmin : /*[[${shiro.hasRole('999999')}]]*/false,
  365. isApprovalDecision : /*[[${shiro.hasRole('99999')}]]*/false,
  366. isLegal: /*[[${shiro.hasRole('82')}]]*/false,
  367. shiroList:/*[[${shiroList}]]*/'',
  368. }
  369. /*]]>*/
  370. </script>
  371. <th:block th:replace="${scripts}" />
  372. </th:block>
  373. </body>
  374. </html>