servicePage.html 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <!-- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"> -->
  6. <!-- <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> -->
  7. <meta name="Generator" content="EditPlus®">
  8. <link rel="shortcut icon" href="favicon.ico"/>
  9. <meta name="Author" content="">
  10. <meta name="Keywords" content="">
  11. <meta name="Description" content="">
  12. <title></title>
  13. <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
  14. <link rel="stylesheet" href="${contextPath}/WebPages_170421/css/service/service.css" type="text/css">
  15. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jquery.js"></script>
  16. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/service/service.js"></script>
  17. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jump.js"></script>
  18. <script type='text/javascript'>
  19. function tim(){
  20. var date = new Date();
  21. var seperator1 = "-";
  22. var year = date.getFullYear();
  23. var month = date.getMonth() + 1;
  24. var strDate = date.getDate();
  25. if (month >= 1 && month <= 9) {
  26. month = "0" + month;
  27. }
  28. if (strDate >= 0 && strDate <= 9) {
  29. strDate = "0" + strDate;
  30. }
  31. var mydate=new Date();
  32. var myddy=mydate.getDay();
  33. var weekday=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"];
  34. document.getElementById('days').innerHTML=year+seperator1+month+seperator1+strDate+'&nbsp;&nbsp;'+weekday[myddy];
  35. }
  36. setInterval(tim,1000);
  37. </script>
  38. <script>
  39. $(function(){
  40. //tab选项卡点击
  41. //$(".title li").click(function(){ 标题点击
  42. //var index=$(this).index(); 获得当前点击标题的下标
  43. //$(this).addClass("active").siblings().removeClass("active"); 给当前选项添加选中,其他移除选中
  44. // $(".content .contentlist").eq(index).show().siblings().hide(); 对应下标的内容框显示,其他隐藏
  45. //});
  46. //tab选项卡悬停
  47. $("#title ul li").first().addClass("active");
  48. $(".title li").hover(function(){ ////标题悬停
  49. var index=$(this).index(); //获得当前点击标题的下标
  50. $(this).addClass("active").siblings().removeClass("active"); //给当前选项添加选中,其他移除选中
  51. $(".content .contentlist").eq(index).show().siblings().hide(); //对应下标的内容框显示,其他隐藏
  52. });
  53. $("#title1 ul li").first().addClass("active");
  54. $(".title1 li").hover(function(){
  55. var index=$(this).index();
  56. $(this).addClass("active").siblings().removeClass("active");
  57. $(".content1 .contentlist1").eq(index).show().siblings().hide();
  58. });
  59. })
  60. </script>
  61. </head>
  62. <body>
  63. <!-- wrapper 开始 -->
  64. <div class="wrapper">
  65. <div class="topbar">
  66. <div class="some">
  67. <div class="date" id='days'></div><!-- 2018-07-07 星期六 -->
  68. <div class="sign">
  69. <%if(null != session.LoginUser!){%>
  70. <a href="${contextPath}/toindex">个人中心</a>
  71. <%}else{%>
  72. <a style="float:left;" href="${contextPath}/toindex?typeCode=0" >注册</a>
  73. <div style="float:left; color:#fff; margin-left:10px;"> | </div>
  74. <a style="float:left;" href="${contextPath}/toindex?typeCode=1">登录</a>
  75. <%}%>
  76. </div>
  77. </div>
  78. </div>
  79. <!-- wrapper contents 开始 -->
  80. <div class="contents">
  81. <!-- wrapper contents head 开始 -->
  82. <div class="head">
  83. <div class="logo">
  84. <img src="${contextPath}/WebPages_170421/img/homepage/logo.png">
  85. </div>
  86. <div class="nav">
  87. <a href="${contextPath}/">首页</a><!--
  88. --><a href="${contextPath}/GovernmentAffairs">科技政务</a><!--
  89. --><a href="${contextPath}/Policy/findListByType?typeCode=ZHZDZC&pageNumber=1">科技政策</a><!--
  90. --><a href="${contextPath}/Supermarket">科技超市</a><!--
  91. --><a href="${contextPath}/Data/toindex">科技数据</a><!--
  92. --><a href="${contextPath}/Service/toInnovativeServices">科技服务</a><!--
  93. --><a href="${contextPath}/mapApply/getMap">科技资源</a><!--
  94. --><a href="${contextPath}/Talent/toTech">科技人才</a><!--
  95. <a href="#this">创新联盟</a>-->
  96. </div>
  97. </div>
  98. <!-- wrapper contents head 结束 -->
  99. <!-- wrapper contents main 开始 -->
  100. <div class="main">
  101. <!-- wrapper contents main partone 开始 -->
  102. <div class="partone">
  103. <div class="notification2">
  104. <a href="#"><h2>视频会议中心</h2></a>
  105. <ul style="margin-top:0px !important; height:188px;">
  106. <%for(tempOrder in proceedList){%>
  107. <li>
  108. <a>
  109. <span class="dian"></span>
  110. <span class="tt">${tempOrder.startTime}</span>
  111. <span class="nam">${tempOrder.meetingName}</span>
  112. </a>
  113. </li>
  114. <!-- 多余 数据库中有足够数据删除 -->
  115. <li>
  116. <a>
  117. <span class="dian"></span>
  118. <span class="tt">${tempOrder.startTime}</span>
  119. <span class="nam">科技部关于发布国家重点研发家重点</span>
  120. </a>
  121. </li>
  122. <li>
  123. <a>
  124. <span class="dian"></span>
  125. <span class="tt">${tempOrder.startTime}</span>
  126. <span class="nam">${tempOrder.meetingName}</span>
  127. </a>
  128. </li>
  129. <!-- // 多余 数据库中有足够数据删除 -->
  130. <%}elsefor{%>
  131. <li><span class="title">还没有正在召开的会议。</span></li>
  132. <%}%>
  133. </ul>
  134. <!-- 进入视频中心 -->
  135. <div class="entermore">
  136. <a href="${contextPath}/Meeting/toindex">进入视频中心 ></a>
  137. </div>
  138. <!-- // 进入视频中心 -->
  139. </div>
  140. </div>
  141. <!-- wrapper contents main partone 结束 -->
  142. <div class="parttwo">
  143. <div class="latestinfo">
  144. <div class="tab">
  145. <ul class="title" id="title">
  146. <li class="active"><a href="#">专题研讨</a><span></span></li>
  147. <li><a href="#">技术问答</a><span></span></li>
  148. <li><a href="#">行业研究</a><span></span></li>
  149. <li><a href="#">科技培训</a></li>
  150. </ul>
  151. <div class="content" id="content">
  152. <div class="contentlist">
  153. <ul style=" height:196px;">
  154. <%for(tempData in topicsList){%>
  155. <li style="overflow:hidden; height:31px;">
  156. <a href="${contextPath}/TFDPublic/getTopicsAndThemeList?topicsId=${tempData.id}">
  157. <span class="dian"></span>
  158. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.name}</span>
  159. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  160. </a>
  161. </li>
  162. <!-- 可删除 -->
  163. <li style="overflow:hidden; height:31px;">
  164. <a href="${contextPath}/TFDPublic/getTopicsAndThemeList?topicsId=${tempData.id}">
  165. <span class="dian"></span>
  166. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验</span>
  167. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  168. </a>
  169. </li>
  170. <li style="overflow:hidden; height:31px;">
  171. <a href="${contextPath}/TFDPublic/getTopicsAndThemeList?topicsId=${tempData.id}">
  172. <span class="dian"></span>
  173. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.name}</span>
  174. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  175. </a>
  176. </li>
  177. <li style="overflow:hidden; height:31px;">
  178. <a href="${contextPath}/TFDPublic/getTopicsAndThemeList?topicsId=${tempData.id}">
  179. <span class="dian"></span>
  180. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.name}</span>
  181. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  182. </a>
  183. </li>
  184. <!-- // 可删除 -->
  185. <%}%>
  186. </ul>
  187. <div class="entermore" style="width:756px; margin-left:0;">
  188. <a href="${contextPath}/GovernmentAffairs/findListByType?typeCode=CXJL&pageNumber=1">查看更多 ></a>
  189. </div>
  190. </div>
  191. <!-- 技术问答 -->
  192. <div class="contentlist">
  193. <ul style=" height:196px;">
  194. <%for(tempData in qaThemeList){%>
  195. <li style="overflow:hidden; height:31px;">
  196. <a href="${contextPath}/TechnicalQaWeb/answer?id=${tempData.id}">
  197. <span class="dian"></span>
  198. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.title}</span>
  199. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  200. </a>
  201. </li>
  202. <!-- 可删除 -->
  203. <li style="overflow:hidden; height:31px;">
  204. <a href="${contextPath}/TechnicalQaWeb/answer?id=${tempData.id}">
  205. <span class="dian"></span>
  206. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验</span>
  207. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  208. </a>
  209. </li>
  210. <li style="overflow:hidden; height:31px;">
  211. <a href="${contextPath}/TechnicalQaWeb/answer?id=${tempData.id}">
  212. <span class="dian"></span>
  213. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.title}</span>
  214. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  215. </a>
  216. </li>
  217. <li style="overflow:hidden; height:31px;">
  218. <a href="${contextPath}/TechnicalQaWeb/answer?id=${tempData.id}">
  219. <span class="dian"></span>
  220. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.title}</span>
  221. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  222. </a>
  223. </li>
  224. <!-- // 可删除 -->
  225. <%}%>
  226. </ul>
  227. <div class="entermore" style="width:756px; margin-left:0;">
  228. <a href="${contextPath}/TechnicalQaWeb/">查看更多 ></a>
  229. </div>
  230. </div>
  231. <!-- 行业研究开始 -->
  232. <div class="contentlist">
  233. <ul style=" height:196px;">
  234. <%for(tempData in irIndustryForecastList){%>
  235. <li style="overflow:hidden; height:31px;">
  236. <a href="${contextPath}/IndustryForecast/view?id=${tempData.id}">
  237. <span class="dian"></span>
  238. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.name}</span>
  239. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  240. </a>
  241. </li>
  242. <!-- 可删除 -->
  243. <li style="overflow:hidden; height:31px;">
  244. <a href="${contextPath}/IndustryForecast/view?id=${tempData.id}">
  245. <span class="dian"></span>
  246. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验</span>
  247. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  248. </a>
  249. </li>
  250. <li style="overflow:hidden; height:31px;">
  251. <a href="${contextPath}/IndustryForecast/view?id=${tempData.id}">
  252. <span class="dian"></span>
  253. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.name}</span>
  254. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  255. </a>
  256. </li>
  257. <li style="overflow:hidden; height:31px;">
  258. <a href="${contextPath}/IndustryForecast/view?id=${tempData.id}">
  259. <span class="dian"></span>
  260. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">${tempData.name}</span>
  261. <span style="float:right; margin-right:0;" class="tt">${tempData.createDate}</span>
  262. </a>
  263. </li>
  264. <!-- // 可删除 -->
  265. <%}%>
  266. </ul>
  267. <div class="entermore" style="width:756px; margin-left:0;">
  268. <a href="${contextPath}/IndustryResearch/toqindex">查看更多 ></a>
  269. </div>
  270. </div>
  271. <!-- 科技培训开始 -->
  272. <div class="contentlist">
  273. <ul style=" height:196px;">
  274. <li style="overflow:hidden; height:31px;">
  275. <a href="#">
  276. <span class="dian"></span>
  277. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验</span>
  278. <span style="float:right; margin-right:0;" class="tt">2018-03-19</span>
  279. </a>
  280. </li>
  281. <!-- 可删除 -->
  282. <li style="overflow:hidden; height:31px;">
  283. <a href="#">
  284. <span class="dian"></span>
  285. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验</span>
  286. <span style="float:right; margin-right:0;" class="tt">2018-03-19</span>
  287. </a>
  288. </li>
  289. <li style="overflow:hidden; height:31px;">
  290. <a href="#">
  291. <span class="dian"></span>
  292. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">工业产品生产许可证管理目录再“瘦身”</span>
  293. <span style="float:right; margin-right:0;" class="tt">2018-03-19</span>
  294. </a>
  295. </li>
  296. <li style="overflow:hidden; height:31px;">
  297. <a href="#">
  298. <span class="dian"></span>
  299. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">工业产品生产许可证管理目录再“瘦身”</span>
  300. <span style="float:right; margin-right:0;" class="tt">2018-03-19</span>
  301. </a>
  302. </li>
  303. <li style="overflow:hidden; height:31px;">
  304. <a href="#">
  305. <span class="dian"></span>
  306. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验尼日利亚传统领袖:尼应学习借鉴中国自贸区建设经验</span>
  307. <span style="float:right; margin-right:0;" class="tt">2018-03-19</span>
  308. </a>
  309. </li>
  310. <li style="overflow:hidden; height:31px;">
  311. <a href="#">
  312. <span class="dian"></span>
  313. <span style="float:left; width:600px; margin-right:20px;overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ">工业产品生产许可证管理目录再“瘦身”</span>
  314. <span style="float:right; margin-right:0;" class="tt">2018-03-19</span>
  315. </a>
  316. </li>
  317. <!-- // 可删除 -->
  318. </ul>
  319. <div class="entermore" style="width:756px; margin-left:0;">
  320. <a href="#">查看更多 ></a>
  321. </div>
  322. </div>
  323. <!-- 科技培训结束 -->
  324. </div>
  325. </div>
  326. </div>
  327. </div>
  328. <div class="clear"></div>
  329. </div>
  330. <!-- wrapper contents main 结束 -->
  331. <div class="main1">
  332. <div class="maintop">
  333. <h2>常用服务</h2>
  334. </div>
  335. <ul class="fuwu">
  336. <li class="fuwui"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/zscqfw.png" alt=""></a></li>
  337. <li class="fuwui"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/kjwxfu.png" alt=""></a></li>
  338. <li class=" fuwui w355"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/kjcxfu.png" alt=""></a></li>
  339. <li class="fuwui"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/ggjspt.png" alt=""></a></li>
  340. <li class="fuwui"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/kjjr.png" alt=""></a></li>
  341. <li class=" fuwui w355"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/dxyqxzw.png" alt=""></a></li>
  342. <li class="fuwui"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/vrzt.png" alt=""></a></li>
  343. <li class="fuwui"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/wckj.png" alt=""></a></li>
  344. <li class=" fuwui w355"><a href="#this"><img src="${contextPath}/WebPages_170421/img/service/kjyj.png" alt=""></a></li>
  345. </ul>
  346. </div>
  347. <div class="footer">
  348. <div>
  349. <p>版权所有:吉林省计算中心</p>
  350. <p>技术支持:长春市福瑞科技有限公司</p>
  351. <p>邮编:130000</p>
  352. <p>传真:239823982</p>
  353. <p>地址:吉林省长春市朝阳区前进大街1244号</p>
  354. <p>电话:0431-1234567</p>
  355. <p>邮箱:123456@163.com</p>
  356. </div>
  357. </div>
  358. </div>
  359. <!-- wrapper contents 结束 -->
  360. </div>
  361. <!-- wrapper 结束 -->
  362. </body>
  363. </html>