achievement.html 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  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:replace="common::header(~{::title},~{::link})">
  6. <title>科技成果</title>
  7. <link th:href="${portalHost+ '/vendors.css'}" rel="stylesheet">
  8. <link th:href="${portalHost+ '/newMenu/achievement.css'}" rel="stylesheet">
  9. </head>
  10. <body>
  11. <div th:replace="common::nav('','trading')"></div>
  12. <!-- search -->
  13. <div class="container">
  14. <div class="clearFix search">
  15. <div class="navMeau">
  16. <div>
  17. <span class="selfun">行业选择</span>
  18. <div class="menuList">
  19. <ul>
  20. <li th:each="industry:${industryList}" >
  21. <a th:href="@{/portal/technologyTrading/achievementList(fieldA=${industry.id})}" th:text="${industry.name}"></a>
  22. </li>
  23. </ul>
  24. </div>
  25. </div>
  26. </div>
  27. <div>
  28. <div class="search-inp">
  29. <div class="input-group">
  30. <input type="text" class="form-control demandSearch" placeholder="输入你感兴趣的内容">
  31. <span class="input-group-btn">
  32. <button class="btn btn-default searchBtn" type="button">
  33. <img th:src="${portalHost+'/img/newMenu/search-icon.jpg'}" alt=""> 搜索
  34. </button>
  35. </span>
  36. <div class="txtVal"></div>
  37. </div>
  38. </div>
  39. <div class="searchMain">
  40. <ol>
  41. <li class="active">热搜</li>
  42. <li><a th:href="@{/portal/technologyTrading/achievementList(name=人工智能)}" target="_blank">人工智能</a></li>
  43. <li><a th:href="@{/portal/technologyTrading/achievementList(name=区块链)}">区块链</a></li>
  44. <li><a th:href="@{/portal/technologyTrading/achievementList(name=环保)}">环保</a></li>
  45. <li><a th:href="@{/portal/technologyTrading/achievementList(name=金属材料)}">金属材料</a></li>
  46. <li><a th:href="@{/portal/technologyTrading/achievementList(name=软件开发)}">软件开发</a></li>
  47. </ol>
  48. </div>
  49. <div>
  50. <ol>
  51. <li>
  52. <a href="#patentTitle">专利技术</a>
  53. </li>
  54. <li>/</li>
  55. <li>
  56. <a href="#practicalTitle">实用技术</a>
  57. </li>
  58. <li>/</li>
  59. <li>
  60. <a href="#transactionTitle">知识产权交易政策</a>
  61. </li>
  62. </ol>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. <!-- banner -->
  68. <div class="carousel">
  69. <img th:src="${portalHost+'/img/technology_trading_banner01.jpg'}" alt="First slide">
  70. </div>
  71. <!-- 主体内容区域 -->
  72. <div class="container">
  73. <div class="demand-marq">
  74. <span></span>
  75. <marquee direction="left" behavior="scroll" scrollamount="10" loop="-1">
  76. <ul>
  77. <li>匿名***,查看了“智慧水务自动化系统解决方案”</li>
  78. <li>匿名***,查看了“小城镇生活污水处理实用技术”</li>
  79. <li>匿名***,查看了“ 球形分子印迹硅胶吸附剂”</li>
  80. <li>匿名***,查看了“搅拌摩擦焊接”</li>
  81. <li>匿名***,查看了“文本分类方法”</li>
  82. <li>匿名***,查看了“建模的多视角目标跟踪方法研究”</li>
  83. <li>匿名***,查看了“乙醇型发酵生物制氢技术”</li>
  84. <li>匿名***,查看了“物质光谱测量”</li>
  85. <li>匿名***,查看了“激光器专用冷却器”</li>
  86. <li>匿名***,查看了“产品创新设计集成管理平台”</li>
  87. </ul>
  88. </marquee>
  89. </div>
  90. <div class="newRelease">
  91. <div></div>
  92. <ul>
  93. <li th:each="ra:${recentAchievements}" >
  94. <a th:href="@{/portal/technologyTrading/achievementDetail(id=${ra.id},type=${ra.dataCategory})}">
  95. <img th:src="${ra.firstPicture}==null?${portalHost+'/img/initPic/achievementInit.jpg'}:${avatarUploadHost+ra.firstPicture}" alt="">
  96. <div>
  97. <p th:text="${#strings.abbreviate(ra.name,15)}"></p>
  98. <p><span class="orange" th:text="${ra.dataCategoryS}"></span>
  99. <span class="blur" th:text="${ra.releaseDate}==null?'未知时间':${#dates.format(ra.releaseDate,'yyyy-MM-dd')}"></span></p>
  100. </div>
  101. </a>
  102. </li>
  103. </ul>
  104. <a th:href="@{/portal/technologyTrading/achievementList}"> 查看更多 >></a>
  105. </div>
  106. <div class="achievementHot">
  107. <div></div>
  108. <ol>
  109. <li><a th:href="@{/portal/technologyTrading/achievementList(name=人工智能)}" target="_blank">人工智能</a></li>
  110. <li><a th:href="@{/portal/technologyTrading/achievementList(name=区块链)}">区块链</a></li>
  111. <li><a th:href="@{/portal/technologyTrading/achievementList(name=环保)}">环保</a></li>
  112. <li><a th:href="@{/portal/technologyTrading/achievementList(name=金属材料)}">金属材料</a></li>
  113. <li><a th:href="@{/portal/technologyTrading/achievementList(name=软件开发)}">软件开发</a></li>
  114. </ol>
  115. <a th:href="@{/portal/technologyTrading/achievementList}">查看更多 > </a>
  116. </div>
  117. <hr />
  118. <div class="achievementHot-list">
  119. <ul class="row">
  120. <li class="col-sm-4" th:each="hota:${hotAchievements}">
  121. <a th:href="@{/portal/technologyTrading/achievementDetail(id=${hota.id},type=${hota.dataCategory})}">
  122. <div>
  123. <img th:src="${hota.firstPicture}==null?${portalHost+'/img/initPic/achievementInit.jpg'}:${avatarUploadHost+hota.firstPicture}" alt="">
  124. <div>
  125. <h4 th:text="${hota.name}">高压电极加热技术和蓄热技术巨物无...</h4>
  126. <p><span class="orange" th:text="${hota.interestCount}==null?'已关注:0人':${'已关注'+hota.interestCount+'人'}">
  127. </span></p>
  128. <p>
  129. <span class="follow">关注</span>
  130. <span class="technology" th:text="${hota.categoryS}"></span></p>
  131. </div>
  132. </a>
  133. </div>
  134. </li>
  135. </ul>
  136. </div></div>
  137. <div class="container">
  138. <div class="study" id="patentTitle">
  139. <h4>专利技术
  140. <a th:href="@{/portal/technologyTrading/achievementList}">查看更多 > </a>
  141. </h4>
  142. </div>
  143. <div class="patent">
  144. <div class="imgPatent">
  145. </div>
  146. <a th:href="@{/portal/technologyTrading/achievementList}">
  147. </a>
  148. </div>
  149. <div class="patentList">
  150. <div class="row">
  151. <div class="col-sm-4">
  152. <div class="demandAdviser">
  153. <img th:src="${portalHost+'/img/newMenu/achievement_10.png'}" alt="">
  154. <a onclick="_MEIQIA('showPanel')"></a>
  155. </div>
  156. <div class="demandDeclare">
  157. <img th:src="${portalHost+'/img/newMenu/achievement_11.png'}" alt="">
  158. <a onclick="_MEIQIA('showPanel')"></a>
  159. </div>
  160. </div>
  161. <div class="col-sm-8">
  162. <ul class="row">
  163. <li class="col-sm-4" th:each="pts:${patents}">
  164. <a th:href="@{/portal/technologyTrading/achievementDetail(id=${pts.id},type=${pts.dataCategory})}">
  165. <div>
  166. <img th:src="${pts.firstPicture}==null?${portalHost+'/img/initPic/achievementInit.jpg'}:${avatarUploadHost+pts.firstPicture}" alt="">
  167. <p th:text="${pts.name}"></p>
  168. </div>
  169. </a>
  170. </li>
  171. </ul>
  172. </div>
  173. </div>
  174. </div>
  175. <div class="achieveBj">
  176. <img th:src="${portalHost+'/img/newMenu/achievement_15.png'}" alt="">
  177. </div>
  178. <div class="studyT" id="practicalTitle">
  179. <h4>实用技术
  180. <a th:href="@{/portal/technologyTrading/achievementList}">查看更多 &gt; </a>
  181. </h4>
  182. </div>
  183. <div class="practical">
  184. <div class="practicalLeft">
  185. <ul>
  186. <li th:each="pt,ptStat:${practicalTechnology}" th:if="${ptStat.index}<5">
  187. <a th:href="@{/portal/technologyTrading/achievementDetail(id=${pt.id},type=${pt.dataCategory})}">
  188. <div class="imgBj" >
  189. <img th:src="${pt.firstPicture}==null?${portalHost+'/img/initPic/achievementInit.jpg'}:${avatarUploadHost+pt.firstPicture}" alt="">
  190. <span></span>
  191. </div>
  192. <div class="txts">
  193. <h5 th:text="${pt.name}"></h5>
  194. <p><span th:text="${pt.dataCategoryS}">
  195. </span><span th:text="${pt.transferModeS}==null?'未知类型':${pt.transferModeS}"></span><span class="hotImg"></span></p>
  196. </div>
  197. <div class="hr"></div>
  198. <div class="btnTxt">
  199. <span class="float-left" th:text="${pt.fieldAS}==null?'未知类型':${pt.fieldAS}"></span>
  200. <span class="float-right" th:text="${pt.fieldBS}==null?'未知类型':${pt.fieldBS}"></span>
  201. </div>
  202. </a>
  203. </li>
  204. </ul>
  205. <div class="practicalGrounp">
  206. <ol>
  207. <li th:each="pt,ptStat:${practicalTechnology}" th:if="${ptStat.index}>=5 and ${ptStat.index}<8">
  208. <a th:href="@{/portal/technologyTrading/achievementDetail(id=${pt.id},type=${pt.dataCategory})}">
  209. <img th:src="${pt.firstPicture}==null?${portalHost+'/img/initPic/achievementInit.jpg'}:${avatarUploadHost+pt.firstPicture}" alt="">
  210. <div class="practicalGrounpTxt">
  211. <div class="txts">
  212. <h5 th:text="${pt.name}"></h5>
  213. <p><span th:text="${pt.dataCategoryS}"></span>
  214. <span th:text="${pt.transferModeS}==null?'未知类型':${pt.transferModeS}"></span><span th:if="${pt.isHot}==1" class="hotImg"></span></p>
  215. </div>
  216. <div class="hr"></div>
  217. <div class="btnTxt">
  218. <span class="float-left" th:text="${pt.fieldAS}==null?'未知类型':${pt.fieldAS}">环保</span>
  219. <span class="float-right" th:text="${pt.fieldBS}==null?'未知类型':${pt.fieldBS}">医疗</span>
  220. </div>
  221. </div>
  222. </a>
  223. </li>
  224. </ol>
  225. </div>
  226. </div>
  227. <div class="practicalRight">
  228. </div>
  229. </div>
  230. <div class="studyT" id="transactionTitle">
  231. <h4>知识产权交易政策
  232. <a th:href="@{/portal/thinkTank/policyList}">查看更多 &gt; </a>
  233. </h4>
  234. </div>
  235. <div class="transaction">
  236. <div class="transactionImg">
  237. <img th:src="${portalHost+'/img/newMenu/achievement_29.jpg'}" alt="">
  238. <div th:each="policy,policyStat:${policyList}" th:if="${policyStat.index}==0">
  239. <a th:href="@{/portal/news/newsDetail(id=${policy.id},type=0)}">
  240. <address><img th:src="${portalHost+'/img/newMenu/achievement_28.jpg'}" alt="">
  241. <span th:if="${policy.provinceS}!=null and ${policy.cityS}!=null" th:text="${#strings.abbreviate(policy.provinceS+policy.cityS,8)}"></span>
  242. <time th:text="${#dates.format(policy.editTime,'yyyy-MM-dd')}"></time>
  243. </address>
  244. <h5>《<span th:text="${#strings.abbreviate(policy.title,12)}"></span>》</h5>
  245. <p th:text="${#strings.abbreviate(policy.summary,45)}"></p>
  246. </a>
  247. </div>
  248. </div>
  249. <ul>
  250. <li th:each="policy,policyStat:${policyList}" th:if="${policyStat.index}>0 and ${policyStat.index}<3">
  251. <a th:href="@{/portal/news/newsDetail(id=${policy.id},type=0)}">
  252. <div class="time">
  253. <p th:text="${#dates.format(policy.editTime,'dd')}"></p>
  254. <hr>
  255. <span th:text="${#dates.format(policy.editTime,'yyyy-MM')}"></span>
  256. </div>
  257. <div class="introduce">
  258. <address><img th:src="${portalHost+'/img/newMenu/achievement_28.jpg'}" alt="">
  259. <span th:if="${policy.provinceS}!=null and ${policy.cityS}!=null" th:text="${#strings.abbreviate(policy.provinceS+policy.cityS,8)}"></span>
  260. <span class="title" >《<span th:text="${#strings.abbreviate(policy.title,12)}"></span>》</span></address>
  261. <p th:text="${#strings.abbreviate(policy.summary,45)}"></p>
  262. </div>
  263. </a>
  264. </li>
  265. </ul>
  266. </div>
  267. <div class="transactionList">
  268. <ol>
  269. <li th:each="policy,policyStat:${policyList}" th:if="${policyStat.index}>=3 and ${policyStat.index}<5">
  270. <a th:href="@{/portal/news/newsDetail(id=${policy.id},type=0)}">
  271. <div class="time">
  272. <p th:text="${#dates.format(policy.editTime,'dd')}">23</p>
  273. <hr>
  274. <span th:text="${#dates.format(policy.editTime,'yyyy-MM')}">2018-06</span>
  275. </div>
  276. <div class="introduce">
  277. <address><img th:src="${portalHost+'/img/newMenu/achievement_28.jpg'}" alt="">
  278. <span th:if="${policy.provinceS}!=null and ${policy.cityS}!=null" th:text="${#strings.abbreviate(policy.provinceS+policy.cityS,8)}"></span>
  279. <span class="title">《<span th:text="${#strings.abbreviate(policy.title,15)}"></span>》</span></address>
  280. <p th:text="${#strings.abbreviate(policy.summary,45)}"></p>
  281. </div>
  282. </a>
  283. </li>
  284. </ol>
  285. </div>
  286. </div>
  287. <footer>
  288. <div th:replace="common::copyright"></div>
  289. <div th:replace="common::login"></div>
  290. </footer>
  291. <div th:replace="common::footer(~{::script})">
  292. <script type="text/javascript" th:src="${portalHost+'/vendors.js'}"></script>
  293. <script type="text/javascript" th:src="${portalHost+'/newMenu/achievement.js'}"></script>
  294. </div>
  295. </body>
  296. </html>