|
|
@@ -0,0 +1,114 @@
|
|
|
+<!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">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
+ <title>服务商主页</title>
|
|
|
+ <link th:href="${portalHost + '/vendors.css'}" rel="stylesheet">
|
|
|
+ <link th:href="${portalHost+'/facilitator.css'}" rel="stylesheet">
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div th:replace="common::nav('','index')"></div>
|
|
|
+ <!--主体部分-->
|
|
|
+ <div id="facili" class="container">
|
|
|
+ <div class="facImg">
|
|
|
+ <div>
|
|
|
+ <div><img th:src="${org.companyLogoUrl}==null or ${org.companyLogoUrl}==''?${portalHost+'/img/fac/fea1.png'}:${avatarUploadHost+org.companyLogoUrl}" alt=""></div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <h3 th:text="${org.identifyName}">湖南阿凡提有限公司</h3>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="facTab">
|
|
|
+ <span class="facActive">首页</span>
|
|
|
+ <span>所有项目</span>
|
|
|
+ </div>
|
|
|
+ <div class="facFirst">
|
|
|
+ <div class="jianjie">
|
|
|
+ <h4>公司简介</h4>
|
|
|
+ <p th:text="(${org.introduction}==null or ${org.introduction}=='')?'暂无':${org.introduction}"></p>
|
|
|
+ </div>
|
|
|
+ <div class="jianjie">
|
|
|
+ <h4>业务范围</h4>
|
|
|
+ <p th:text="(${org.businessScope}==null or${org.businessScope}=='')?'暂无':${org.businessScope}"></p>
|
|
|
+ </div>
|
|
|
+ <div class="RecommendTitle">
|
|
|
+ <h2>荣誉资质</h2>
|
|
|
+ <span></span>
|
|
|
+ </div>
|
|
|
+ <div class="rongyuCont" >
|
|
|
+ <div th:each="pic:${honors}">
|
|
|
+ <img th:src="(${pic}==null or ${pic}=='')?${portalHost+'/img/fac/fea2.png'}:${avatarUploadHost+pic}" alt="" >
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="RecommendTitle">
|
|
|
+ <h2>联系我们</h2>
|
|
|
+ <span></span>
|
|
|
+ </div>
|
|
|
+ <ol class="contantUs">
|
|
|
+ <li>
|
|
|
+ <span class="glyphicon glyphicon-earphone"></span>
|
|
|
+ <div>
|
|
|
+ <p>联系方式<span class="pho" th:text="(${org.fixedTel}==null or ${org.fixedTel}=='')?'暂无':${org.fixedTel}"></span></p>
|
|
|
+ <p>QQ号码<span class="pho" th:text="(${org.qq}==null or ${org.qq}=='')?'暂无':${org.qq}"></span></p>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <span class="glyphicon glyphicon-envelope"></span>
|
|
|
+ <div>
|
|
|
+ <p>公司邮箱</span></p>
|
|
|
+ <p><span th:text="(${org.email}==null or ${org.email}=='')?'暂无':${org.email}">3846252890@qq.com</span> </p>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <span class="glyphicon glyphicon-map-marker"></span>
|
|
|
+ <div>
|
|
|
+ <p>公司地址</span></p>
|
|
|
+ <p><span th:text="(${org.postalAddress}==null or ${org.postalAddress}=='')?'暂无':${org.postalAddress}">湖南省长沙市营盘东路</span> </p>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ </ol>
|
|
|
+ </div>
|
|
|
+ <div id="facAll">
|
|
|
+ <div class="facAll">
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="pagination_box">
|
|
|
+ <nav aria-label="Page navigation" class="clearfix">
|
|
|
+ <ul class="pagination">
|
|
|
+ <li class="pagePre">
|
|
|
+ <a href="#" aria-label="Previous">
|
|
|
+ <span aria-hidden="true">«</span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li class="pageNumber"><a href="#" value="1">1</a></li>
|
|
|
+ <li class="pageNext">
|
|
|
+ <a href="#" aria-label="Next">
|
|
|
+ <span aria-hidden="true">»</span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <div class="inp">
|
|
|
+ <input type="text" class=""><button class="btn btn-default">跳转</button>
|
|
|
+ </div>
|
|
|
+ <span class="totalCount">共0条数据</span>
|
|
|
+ </nav>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <footer>
|
|
|
+ <div th:replace="common::copyright"></div>
|
|
|
+ <div th:replace="common::login"></div>
|
|
|
+ </footer>
|
|
|
+ <div th:replace="common::footer(~{::script})">
|
|
|
+ <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
|
|
|
+ <script type="text/javascript" th:src="${portalHost+'/facilitator.js'}"></script>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+<!-- <script language="javascript" src="https://put.zoosnet.net/JS/LsJS.aspx?siteid=PUT70876498&float=1&lng=cn"></script> -->
|
|
|
+</html>
|