common.html 17 KB

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