|
|
@@ -0,0 +1,112 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
+ xmlns:th="http://www.thymeleaf.org"
|
|
|
+ xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
|
+<head th:replace="common::header(~{::title},~{::link})">
|
|
|
+ <meta charset="utf-8" />
|
|
|
+ <link rel="icon" th:href="${portalHost +'/img/ico_logo.ico'}">
|
|
|
+ <meta name="Keywords" content=""/>
|
|
|
+ <meta name="Description" content=""/>
|
|
|
+ <meta name="viewport" content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1,user-scalable=no">
|
|
|
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
+ <title>项目详情</title>
|
|
|
+ <link rel="stylesheet" th:href="${portalHost +'/src/css/bootstrap.css'}" />
|
|
|
+ <link rel="stylesheet" th:href="${portalHost +'/src/css/public.css'}" />
|
|
|
+ <link rel="stylesheet" th:href="${portalHost +'/src/css/main_banner.css'}" />
|
|
|
+ <link rel="stylesheet" th:href="${portalHost +'/src/css/service/projectDetails.css'}"/>
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <header>
|
|
|
+ <div th:replace="common::nav('service','highTechCognizance')"></div>
|
|
|
+ </header>
|
|
|
+ <div id="counselor_title">
|
|
|
+ <div class="line"></div>
|
|
|
+ <div class="zi">
|
|
|
+ >
|
|
|
+ <a href="#">技术交易</a>
|
|
|
+ >
|
|
|
+ <a href="#">技术专利</a>
|
|
|
+ >
|
|
|
+ <a href="#" class="a_detail">专利详情</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id='det_content'>
|
|
|
+ <div id='content_left'>
|
|
|
+ <div class="title" th:text="${projectDetail.name}">
|
|
|
+ </div>
|
|
|
+ <div class="cont_img">
|
|
|
+ <img th:src="${projectDetail.maxLogo}" alt="" />
|
|
|
+ </div>
|
|
|
+ <div class="guanzhu">
|
|
|
+ <div class="loves">
|
|
|
+ <span class="box_love"></span>
|
|
|
+ <span class="dem_number" th:text="${projectDetail.countInterest}"></span>
|
|
|
+ <span>关注</span>
|
|
|
+ <input type="hidden" th:isInterester="${projectDetail.interest}" id="isInterester">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="guige">
|
|
|
+ <h5>
|
|
|
+ 服务规格
|
|
|
+ </h5>
|
|
|
+ <div class="guigeone" th:text="${projectDetail.projectSize[0]}">
|
|
|
+ </div>
|
|
|
+ <div class="guigetwo" th:text="${projectDetail.projectSize[1]}">
|
|
|
+ </div>
|
|
|
+ <div class="guigethree" th:text="${projectDetail.projectSize[2]}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="cont">
|
|
|
+ <div class="miaoshu">
|
|
|
+ <div class="lineB">
|
|
|
+ 项目描述
|
|
|
+ </div>
|
|
|
+ <div th:utext="${projectDetail.introduce}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="jiazi">
|
|
|
+ <div class="lineB">
|
|
|
+ 项目价值
|
|
|
+ </div>
|
|
|
+ <div th:utext="${projectDetail.valueEffect}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="ziliao">
|
|
|
+ <div class="lineB">
|
|
|
+ 所需资料
|
|
|
+ </div>
|
|
|
+ <div th:utext="${projectDetail.clientSize}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="lianxi">
|
|
|
+ <div class="fuwu">
|
|
|
+ 我要服务
|
|
|
+ </div>
|
|
|
+ <div class="dianhua">
|
|
|
+ 一键电话
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id='content_right'>
|
|
|
+ <div class="fine">
|
|
|
+ <div class="fine_title">推荐项目</div>
|
|
|
+ <div th:each="recommend:${recommend}">
|
|
|
+ <img th:src="${portalHost+recommend.minLogoUrl}" alt=""/>
|
|
|
+ <p th:text="${recommend.name}"></p>
|
|
|
+ <input type="hidden" th:isInterester="${recommend.id}" id="projectId">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <footer>
|
|
|
+ <div th:replace="common::copyright"></div>
|
|
|
+ <div th:replace="common::login"></div>
|
|
|
+ </footer>
|
|
|
+ <div class="msg"><span></span></div>
|
|
|
+ <div th:replace="common::footer(~{::script})">
|
|
|
+ <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
|
|
|
+ <script type="text/javascript" th:src="${portalHost + '/service/highTechCognizance.js'}"></script>
|
|
|
+ </div>
|
|
|
+ </body>
|
|
|
+</html>
|