anderx hace 4 años
padre
commit
20a309da2d

+ 29 - 15
src/main/java/com/kede/common/controller/WebpageController.java

@@ -12,6 +12,7 @@ import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
 import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.servlet.ModelAndView;
@@ -67,9 +68,9 @@ public class WebpageController extends BaseController {
 	 * @return
 	 */
 	@SuppressWarnings("unchecked")
-	@RequestMapping(value = "/aboutKede", method = RequestMethod.GET)
+	@RequestMapping(value = "/about", method = RequestMethod.GET)
 	public ModelAndView portalAboutKede(HttpServletRequest request, ModelAndView modelview) {
-		modelview.setViewName("/portal/aboutKede");
+		modelview.setViewName("/portal/about");
 		InputBannerDetails ibd=new InputBannerDetails(1,5);
 		OutBannerDetails o=new OutBannerDetails();
 		List<OutBannerDetails> list=(List<OutBannerDetails>) bannersService.listBannersDetails(ibd, 1, 1).getList();
@@ -113,6 +114,19 @@ public class WebpageController extends BaseController {
 		modelview.addObject("news",newsService.selectNews(new InputNews(id)));
 		return modelview;
 	}
+
+	@SuppressWarnings("unchecked")
+	@RequestMapping(value = "/news/{id}", method = RequestMethod.GET)
+	public ModelAndView newsDetails(HttpServletRequest request, ModelAndView modelview,@PathVariable Integer id) {
+		modelview.setViewName("/portal/newsDetails");
+		InputBannerDetails ibd=new InputBannerDetails(1,4);
+		OutBannerDetails o=new OutBannerDetails();
+		List<OutBannerDetails> list=(List<OutBannerDetails>) bannersService.listBannersDetails(ibd, 1, 1).getList();
+		o=list.size()>0?list.get(0):null;
+		modelview.addObject("banners",o);
+		modelview.addObject("news",newsService.selectNews(new InputNews(id)));
+		return modelview;
+	}
 	/**
 	 * 新闻列表
 	 * @param request
@@ -172,7 +186,7 @@ public class WebpageController extends BaseController {
 	 * @param modelview
 	 * @return
 	 */
-	@RequestMapping(value = "/productService", method = RequestMethod.GET)
+	@RequestMapping(value = "/service", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalProductService(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productService");
@@ -184,7 +198,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/productServiceCaisui", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/caisui", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceCaisui(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceCaisui");
@@ -196,7 +210,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/productServiceGaoxin", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/gaoxin", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceGaoxin(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceGaoxin");
@@ -207,7 +221,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/productServiceZhishi", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/zhishi", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceZhishi(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceZhishi");
@@ -218,7 +232,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/productServiceXinyong", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/xinyong", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceXinyong(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceXinyong");
@@ -229,7 +243,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/productServiceCprz", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/cprz", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceCprz(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceCprz");
@@ -240,7 +254,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/productServiceJunming", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/junming", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceJunming(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceJunming");
@@ -252,7 +266,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/productServiceRencai", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/rencai", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceRencai(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceRencai");
@@ -264,7 +278,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/productServiceXxlei", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/xxlei", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceXxlei(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceXxlei");
@@ -276,7 +290,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/productServiceKejixiangmu", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/kejixiangmu", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceKejixiangmu(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceKejixiangmu");
@@ -287,7 +301,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/productServiceKjjr", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/Kjjr", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceKjjr(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceKjjr");
@@ -299,7 +313,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/productServiceTxrz", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/txrz", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceTxrz(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceTxrz");
@@ -310,7 +324,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/productServicePingtai", method = RequestMethod.GET)
+	@RequestMapping(value = "/service/pingtai", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServicePingtai(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServicePingtai");

+ 114 - 114
src/main/webapp/WEB-INF/views/common.html

@@ -34,11 +34,11 @@
         <div class="m_contant">
             <ul>
                 <li><a th:href="${basePath + '/'}">首页</a></li>
-                <li><a th:href="${basePath + '/productService'}">产品中心</a></li>
+                <li><a th:href="${basePath + '/service'}">产品中心</a></li>
                 <li><a th:href="${basePath + '/strategic'}">战略合作</a></li>
                 <li><a th:href="${basePath + '/client'}">服务客户</a></li>
                 <li><a th:href="${basePath + '/news'}">新闻动态</a></li>
-                <li><a th:href="${basePath + '/aboutKede'}">关于科德</a></li>
+                <li><a th:href="${basePath + '/about'}">关于科德</a></li>
                 <li><a th:href="${basePath + '/contactUs'}">联系我们</a></li>
             </ul>
         </div>
@@ -54,13 +54,13 @@
             <div class="nav-dog"></div>
             <li><a th:href="${basePath+'/'}">首页</a></li>
             <li class="product_nav">
-                <a th:href="${basePath+'/productService'}">产品中心</a>
+                <a th:href="${basePath+'/service'}">产品中心</a>
 
             </li>
             <li><a th:href="${basePath+'/strategic'}">战略合作</a></li>
             <li><a th:href="${basePath+'/client'}">服务客户</a></li>
             <li><a th:href="${basePath+'/news'}">新闻动态</a></li>
-            <li><a th:href="${basePath+'/aboutKede'}">关于科德</a></li>
+            <li><a th:href="${basePath+'/about'}">关于科德</a></li>
             <li><a th:href="${basePath+'/contactUs'}">联系我们</a></li>
         </ul>
         <div class="kede_phone">
@@ -73,13 +73,13 @@
                 <div class="">
                     <p>技术转移</p>
                     <ul>
-                        <li><a th:href="${basePath+'/productService?0'}">技术需求</a></li>
-                        <li><a th:href="${basePath+'/productService?1'}">成果推介</a></li>
-                        <li><a th:href="${basePath+'/productService?2'}">承接活动</a></li>
-                        <li><a th:href="${basePath+'/productService?3'}">技术合同登记(免费)</a></li>
-                        <li><a th:href="${basePath+'/productService?4'}">院士工作站</a></li>
-                        <li><a th:href="${basePath+'/productService?5'}">博士工作站</a></li>
-                        <li><a th:href="${basePath+'/productService?6'}">国外高精尖人才引进</a></li>
+                        <li><a th:href="${basePath+'/service?0'}">技术需求</a></li>
+                        <li><a th:href="${basePath+'/service?1'}">成果推介</a></li>
+                        <li><a th:href="${basePath+'/service?2'}">承接活动</a></li>
+                        <li><a th:href="${basePath+'/service?3'}">技术合同登记(免费)</a></li>
+                        <li><a th:href="${basePath+'/service?4'}">院士工作站</a></li>
+                        <li><a th:href="${basePath+'/service?5'}">博士工作站</a></li>
+                        <li><a th:href="${basePath+'/service?6'}">国外高精尖人才引进</a></li>
                     </ul>
                 </div>
             </div>
@@ -87,13 +87,13 @@
                 <div class=" ">
                     <p>高企培育</p>
                     <ul>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?0'}">高新技术企业认定</a></li>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?1'}">高新技术企业培育</a></li>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?2'}">高新技术企业会员服务</a></li>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?3'}">种子基金</a></li>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?4'}">创客空间</a></li>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?5'}">创业基金</a></li>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?6'}">政策融资</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?0'}">高新技术企业认定</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?1'}">高新技术企业培育</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?2'}">高新技术企业会员服务</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?3'}">种子基金</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?4'}">创客空间</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?5'}">创业基金</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?6'}">政策融资</a></li>
                     </ul>
                 </div>
             </div>
@@ -101,12 +101,12 @@
                 <div class=" ">
                     <p>知识产权</p>
                     <ul>
-                        <li><a th:href="${basePath+'/productServiceZhishi?0'}">国内外专利申请</a></li>
-                        <li><a th:href="${basePath+'/productServiceZhishi?1'}">知识产权挖掘/布局</a></li>
-                        <li><a th:href="${basePath+'/productServiceZhishi?2'}">商标注册</a></li>
-                        <li><a th:href="${basePath+'/productServiceZhishi?3'}">软件著作权申请</a></li>
-                        <li><a th:href="${basePath+'/productServiceZhishi?4'}">科技查新</a></li>
-                        <li><a th:href="${basePath+'/productServiceZhishi?5'}">知识产权贯标认证</a></li>
+                        <li><a th:href="${basePath+'/service/zhishi?0'}">国内外专利申请</a></li>
+                        <li><a th:href="${basePath+'/service/zhishi?1'}">知识产权挖掘/布局</a></li>
+                        <li><a th:href="${basePath+'/service/zhishi?2'}">商标注册</a></li>
+                        <li><a th:href="${basePath+'/service/zhishi?3'}">软件著作权申请</a></li>
+                        <li><a th:href="${basePath+'/service/zhishi?4'}">科技查新</a></li>
+                        <li><a th:href="${basePath+'/service/zhishi?5'}">知识产权贯标认证</a></li>
                     </ul>
                 </div>
             </div>
@@ -116,31 +116,31 @@
                     <ul>
                         <li class="kjxm-li"><a class="kjxm-a">企业/产品资质认定类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?0'}">科技型中小企业</a></li>
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?1'}">省/市小巨人</a></li>
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?2'}">省/市守合同重信用</a></li>
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?3'}">省/市两型产品</a></li>
-                            <!--                                    <li><a th:href="${basePath+'/productServiceKejixiangmu?4'}">省/市高新产品</a></li>-->
+                            <li><a th:href="${basePath+'/service/kejixiangmu?0'}">科技型中小企业</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?1'}">省/市小巨人</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?2'}">省/市守合同重信用</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?3'}">省/市两型产品</a></li>
+                            <!--                                    <li><a th:href="${basePath+'/service/kejixiangmu?4'}">省/市高新产品</a></li>-->
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">技术创新新平台类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?5'}">国家/省/市/区企业技术中心</a></li>
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?6'}">省/市工程(技术)研究中心</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?5'}">国家/省/市/区企业技术中心</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?6'}">省/市工程(技术)研究中心</a></li>
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">科研计划类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?7'}">国家/省/市/区科技计划</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?7'}">国家/省/市/区科技计划</a></li>
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">研发奖补类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?8'}">省/市研发财政奖补资金</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?8'}">省/市研发财政奖补资金</a></li>
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">产业发展引导类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?9'}">制造强省(市)专项(含技改、新材料)</a></li>
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?10'}">省/市移动互联网产业发展专项</a></li>
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?11'}">省/市人工智能产业专项</a></li>
-                            <li><a th:href="${basePath+'/productServiceKejixiangmu?12'}">中小企业发展专项(含专精特新)</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?9'}">制造强省(市)专项(含技改、新材料)</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?10'}">省/市移动互联网产业发展专项</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?11'}">省/市人工智能产业专项</a></li>
+                            <li><a th:href="${basePath+'/service/kejixiangmu?12'}">中小企业发展专项(含专精特新)</a></li>
                         </div>
                     </ul>
                 </div>
@@ -149,16 +149,16 @@
                 <div class=" ">
                     <p>财税咨询服务</p>
                     <ul>
-                        <li><a th:href="${basePath+'/productServiceCaisui?0'}">年度审计报告 </a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?1'}">专项审计报告</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?2'}">高新与加计扣除政策</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?3'}">研发奖补</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?4'}">财税/税务顾问</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?5'}">财税培训</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?6'}">财税代理</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?7'}">科技政策与财税筹划</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?8'}">企业管理咨询</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?9'}">研发费用归集</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?0'}">年度审计报告 </a></li>
+                        <li><a th:href="${basePath+'/service/caisui?1'}">专项审计报告</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?2'}">高新与加计扣除政策</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?3'}">研发奖补</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?4'}">财税/税务顾问</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?5'}">财税培训</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?6'}">财税代理</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?7'}">科技政策与财税筹划</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?8'}">企业管理咨询</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?9'}">研发费用归集</a></li>
                     </ul>
                 </div>
             </div>
@@ -166,12 +166,12 @@
                 <div class=" ">
                     <p>军民科技转化</p>
                     <ul>
-                        <li><a th:href="${basePath+'/productServiceJunming?0'}">武器装备科研生产单位保密资格认定咨询</a></li>
-                        <li><a th:href="${basePath+'/productServiceJunming?1'}">武器装备承制单位资格认证咨询</a></li>
-                        <li><a th:href="${basePath+'/productServiceJunming?2'}">武器装备科研生产许可认证(备案)咨询</a></li>
-                        <li><a th:href="${basePath+'/productServiceJunming?3'}">国军标(GJB9001C-2017)体系认证咨询</a></li>
-                        <li><a th:href="${basePath+'/productServiceJunming?4'}">退役军人就业创业服务</a></li>
-                        <li><a th:href="${basePath+'/productServiceJunming?5'}">军民两用技术转移转化服务</a></li>
+                        <li><a th:href="${basePath+'/service/junming?0'}">武器装备科研生产单位保密资格认定咨询</a></li>
+                        <li><a th:href="${basePath+'/service/junming?1'}">武器装备承制单位资格认证咨询</a></li>
+                        <li><a th:href="${basePath+'/service/junming?2'}">武器装备科研生产许可认证(备案)咨询</a></li>
+                        <li><a th:href="${basePath+'/service/junming?3'}">国军标(GJB9001C-2017)体系认证咨询</a></li>
+                        <li><a th:href="${basePath+'/service/junming?4'}">退役军人就业创业服务</a></li>
+                        <li><a th:href="${basePath+'/service/junming?5'}">军民两用技术转移转化服务</a></li>
                     </ul>
                 </div>
             </div>
@@ -179,42 +179,42 @@
                 <div class=" ">
                     <p style="text-align: center;">体系认证</p>
                     <ul>
-                        <li><a th:href="${basePath+'/productServiceTxrz?0'}">ISO9001质量管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?1'}">OHSAS18001职业健康安全体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?2'}">ISO14001环境管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?3'}">ISO22000食品安全管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?4'}">ISO37001反贿赂管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?5'}">SA8000企业社会责任管理体系</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?6'}">ISO13485医疗器械质量管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?7'}">GB/T27922售后服务体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?8'}">GB/T31950企业诚实管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?9'}">两化融合贯标</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?31'}">社会组织评估</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?0'}">ISO9001质量管理体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?1'}">OHSAS18001职业健康安全体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?2'}">ISO14001环境管理体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?3'}">ISO22000食品安全管理体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?4'}">ISO37001反贿赂管理体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?5'}">SA8000企业社会责任管理体系</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?6'}">ISO13485医疗器械质量管理体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?7'}">GB/T27922售后服务体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?8'}">GB/T31950企业诚实管理体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?9'}">两化融合贯标</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?31'}">社会组织评估</a></li>
                     </ul>
                     <ul>
-                        <li><a th:href="${basePath+'/productServiceTxrz?10'}">省/市级两型产品认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?11'}">湖南省新材料企业认定</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?12'}">CCC认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?13'}">软件能力成熟度模型三级CMMI3</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?14'}">*双软企业认定</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?15'}">*ITSS信息技术服务标准</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?16'}">ISO27001信息安全体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?17'}">ISO20000IT服务管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?18'}">中国节水/节能认证</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?19'}">中国环保产品认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?10'}">省/市级两型产品认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?11'}">湖南省新材料企业认定</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?12'}">CCC认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?13'}">软件能力成熟度模型三级CMMI3</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?14'}">*双软企业认定</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?15'}">*ITSS信息技术服务标准</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?16'}">ISO27001信息安全体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?17'}">ISO20000IT服务管理体系认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?18'}">中国节水/节能认证</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?19'}">中国环保产品认证</a></li>
                     </ul>
                     <ul>
-                        <li><a th:href="${basePath+'/productServiceTxrz?20'}">省/市级守合同重信用企业</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?21'}">AAA企业信用等级</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?22'}">AAA重合同守信用企业</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?23'}">AAA质量服务诚信单位</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?24'}">AAA诚信经营示范单位</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?25'}">AAA资信等级证书</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?26'}">AAA级诚信单位</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?27'}">AAA诚信供应商等级证书</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?28'}">中国诚信之星</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?29'}">中国诚信企业家</a></li>
-                        <li><a th:href="${basePath+'/productServiceTxrz?30'}">中国诚信经理人</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?20'}">省/市级守合同重信用企业</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?21'}">AAA企业信用等级</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?22'}">AAA重合同守信用企业</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?23'}">AAA质量服务诚信单位</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?24'}">AAA诚信经营示范单位</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?25'}">AAA资信等级证书</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?26'}">AAA级诚信单位</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?27'}">AAA诚信供应商等级证书</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?28'}">中国诚信之星</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?29'}">中国诚信企业家</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?30'}">中国诚信经理人</a></li>
                     </ul>
                 </div>
             </div>
@@ -222,9 +222,9 @@
                 <div class=" ">
                     <p>平台开发建设</p>
                     <ul>
-                        <li><a th:href="${basePath+'/productServicePingtai?0'}">网站PC端开发或共建</a></li>
-                        <li><a th:href="${basePath+'/productServicePingtai?1'}">管理系统研发</a></li>
-                        <li><a th:href="${basePath+'/productServicePingtai?2'}">Android及IOS移动端开发</a></li>
+                        <li><a th:href="${basePath+'/service/pingtai?0'}">网站PC端开发或共建</a></li>
+                        <li><a th:href="${basePath+'/service/pingtai?1'}">管理系统研发</a></li>
+                        <li><a th:href="${basePath+'/service/pingtai?2'}">Android及IOS移动端开发</a></li>
                     </ul>
                 </div>
             </div>
@@ -240,7 +240,7 @@
         <div class="swiper-container" id="swiper4">
             <div class="swiper-wrapper">
                 <div class="swiper-slide">
-                    <a th:href="${basePath + '/productService?0'}">
+                    <a th:href="${basePath + '/service?0'}">
                         <div th:class="${Cstatus}=='jszy'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/jishuzhuanyi/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -256,7 +256,7 @@
                             </div>
                         </div>
                     </a>
-                    <a th:href="${basePath+'/productServiceGaoxin?0'}">
+                    <a th:href="${basePath+'/service/gaoxin?0'}">
                         <div th:class="${Cstatus}=='gxfw'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/gaoxinfuwu/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -272,7 +272,7 @@
                             </div>
                         </div>
                     </a>
-                    <a th:href="${basePath+'/productServiceZhishi?0'}">
+                    <a th:href="${basePath+'/service/zhishi?0'}">
                         <div th:class="${Cstatus}=='zscq'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/zhishichaquan/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -287,7 +287,7 @@
                             </div>
                         </div>
                     </a>
-                    <a th:href="${basePath+'/productServiceKejixiangmu?0'}">
+                    <a th:href="${basePath+'/service/kejixiangmu?0'}">
                         <div th:class="${Cstatus}=='kjxm'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/kejixiangmu/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -305,7 +305,7 @@
                     </a>
                 </div>
                 <div class="swiper-slide">
-                    <a th:href="${basePath+'/productServiceCaisui?0'}">
+                    <a th:href="${basePath+'/service/caisui?0'}">
                         <div th:class="${Cstatus}=='cszx'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/caisuizixunfuwu/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -321,7 +321,7 @@
                             </div>
                         </div>
                     </a>
-                    <a th:href="${basePath+'/productServiceJunming?0'}">
+                    <a th:href="${basePath+'/service/junming?0'}">
                         <div th:class="${Cstatus}=='jmkj'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/junmingkeji/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -337,7 +337,7 @@
                             </div>
                         </div>
                     </a>
-                    <a th:href="${basePath+'/productServiceTxrz?0'}">
+                    <a th:href="${basePath+'/service/txrz?0'}">
                         <div th:class="${Cstatus}=='txrz'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/tixingrenzheng/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -353,7 +353,7 @@
                             </div>
                         </div>
                     </a>
-                    <a th:href="${basePath+'/productServicePingtai?0'}">
+                    <a th:href="${basePath+'/service/pingtai?0'}">
                         <div th:class="${Cstatus}=='ptkf'?'active pd-li':'pd-li'">
                             <img th:src="${portalHost+'/images/Product-center/pingtaikaifajianshe/p-1-1.png'}" />
                             <div class="pd-mask">
@@ -411,16 +411,16 @@
                 <div class="down_left col-lg-3 ">
                     <p>产品服务</p>
                     <ul style="margin-top: 38px;">
-                        <li><a th:href="${basePath+'/productServiceGaoxin?0'}">高企认定</a></li>
-                        <li><a th:href="${basePath+'/productServiceGaoxin?1'}">高企培育</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?2'}">财税筹划</a></li>
-                        <li><a th:href="${basePath+'/productServiceCaisui?3'}">研发奖补</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?0'}">高企认定</a></li>
+                        <li><a th:href="${basePath+'/service/gaoxin?1'}">高企培育</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?2'}">财税筹划</a></li>
+                        <li><a th:href="${basePath+'/service/caisui?3'}">研发奖补</a></li>
                     </ul>
                     <ul style="margin-top: 38px;">
-                        <li><a th:href="${basePath+'/productServiceTxrz?12'}">两化融合</a></li>
+                        <li><a th:href="${basePath+'/service/txrz?12'}">两化融合</a></li>
                         <li><a >专利转让</a></li>
                         <li><a >创客空间</a></li>
-                        <li><a th:href="${basePath+'/productService?5'}">博士工作站 </a></li>
+                        <li><a th:href="${basePath+'/service?5'}">博士工作站 </a></li>
                     </ul>
                 </div>
                 <div class="down_middle col-lg-6">
@@ -428,10 +428,10 @@
                         <li>
                             <p>关于科德</p>
                             <ul>
-                                <li><a th:href="${basePath+'/aboutKede?fzlc'}">发展历程</a></li>
-                                <li><a th:href="${basePath+'/aboutKede?ryzz'}">荣誉资质</a></li>
-                                <li><a th:href="${basePath+'/aboutKede?qywh'}">企业文化</a></li>
-                                <li><a th:href="${basePath+'/aboutKede?qggs'}">全国公司</a></li>
+                                <li><a th:href="${basePath+'/about?fzlc'}">发展历程</a></li>
+                                <li><a th:href="${basePath+'/about?ryzz'}">荣誉资质</a></li>
+                                <li><a th:href="${basePath+'/about?qywh'}">企业文化</a></li>
+                                <li><a th:href="${basePath+'/about?qggs'}">全国公司</a></li>
                             </ul>
                         </li>
                         <li>
@@ -581,14 +581,14 @@
                 <span class="iconfont icon-fuwu-active"></span>
                 <p>产品中心</p>
                 <ul class="">
-                    <li><a th:href="${basePath+'/productService?0'}" >技术转移</a></li>
-                    <li><a th:href="${basePath+'/productServiceGaoxin?0'}">高企培育</a></li>
-                    <li><a th:href="${basePath+'/productServiceZhishi?0'}">知识产权</a></li>
-                    <li><a th:href="${basePath+'/productServiceKejixiangmu?0'}">政策咨询</a></li>
-                    <li><a th:href="${basePath+'/productServiceCaisui?0'}" >财税咨询</a></li>
-                    <li><a th:href="${basePath+'/productServiceJunming?0'}" >军民科技</a></li>
-                    <li><a th:href="${basePath+'/productServiceTxrz?0'}">体系认证</a></li>
-                    <li><a th:href="${basePath+'/productServicePingtai?0'}">平台建设</a></li>
+                    <li><a th:href="${basePath+'/service?0'}" >技术转移</a></li>
+                    <li><a th:href="${basePath+'/service/gaoxin?0'}">高企培育</a></li>
+                    <li><a th:href="${basePath+'/service/zhishi?0'}">知识产权</a></li>
+                    <li><a th:href="${basePath+'/service/kejixiangmu?0'}">政策咨询</a></li>
+                    <li><a th:href="${basePath+'/service/caisui?0'}" >财税咨询</a></li>
+                    <li><a th:href="${basePath+'/service/junming?0'}" >军民科技</a></li>
+                    <li><a th:href="${basePath+'/service/txrz?0'}">体系认证</a></li>
+                    <li><a th:href="${basePath+'/service/pingtai?0'}">平台建设</a></li>
                 </ul>
             </a>
         </div>

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 1027 - 1027
src/main/webapp/WEB-INF/views/portal/aboutKede.html


+ 15 - 15
src/main/webapp/WEB-INF/views/portal/index.html

@@ -3,9 +3,9 @@
 <head th:replace="common::header(~{::title},~{::link},~{::meta})">
     <meta charset="UTF-8">
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
-    <meta name="Keywords" Content="高新技术企业,财税筹划,军工三证,项目申报,科技项目,企业咨询,科德集团"/>
-    <meta name="description" Content="湖南科德信息咨询集团有限公司(www.kedexinxi.com)是一家拥有21年的专业咨询服务机构,累计超过近3万家企业选择科德咨询,服务内容涵盖:国家高新技术企业培育及认定咨询,财税筹划培训,军工三证,科技项目、企业税收优惠政策等服务的一站式服务专家。"/>
-    <title>高新技术企业_财税筹划培训_军工三证咨询_企业咨询机构-科德集团</title>
+    <meta name="Keywords" Content="高新技术企业,财税筹划培训,军工三证认证,项目申报,科技项目,企业咨询,科德集团"/>
+    <meta name="description" Content="湖南科德信息咨询集团有限公司(www.kedexinxi.com)是一家拥有21年的专业咨询服务机构,累计超过近3万家企业选择科德咨询,服务内容涵盖:国家高新技术企业培育及认定咨询,财税筹划培训,军工三证,科技项目、企业税收优惠政策等业务提供一站式服务专家。"/>
+    <title>高新技术企业_军工三证_财税筹划_企业咨询机构-科德集团</title>
     <!-- 首页内容样式 -->
     <link rel="stylesheet" th:href="${portalHost+'/css/index.css'}">
     <!-- swiper轮播图样式 -->
@@ -87,7 +87,7 @@
                     <h2 class="item-title"><a href="#" target="_blank">产品服务</a></h2>
                     <p class="item-dec">知识产权与企业服务的引领者  专业、专注咨询行业二十一年</p>
                     <ul class="serve-list">
-                       <a th:href="${basePath+'/productService?0'}">
+                       <a th:href="${basePath+'/service?0'}">
 	                        <li>
 	                            <span class="iconfont icon-dc-icon-jishuzhuanyi p-fontsiz"></span>
 	                            <div class="serve_text">
@@ -104,7 +104,7 @@
 	                           <div class="serve-button">立即咨询</div>
 	                        </li>
                         </a>
-                        <a th:href="${basePath+'/productServiceGaoxin?0'}">
+                        <a th:href="${basePath+'/serviceGaoxin?0'}">
                         <li>
                             <span class="iconfont icon-diannao-shuju p-fontsiz"></span>
                             <div class="serve_text">
@@ -121,7 +121,7 @@
                             <div class="serve-button">立即咨询</div>
                         </li>
                         </a>
-                         <a th:href="${basePath+'/productServiceZhishi?0'}">
+                         <a th:href="${basePath+'/serviceZhishi?0'}">
                         <li>
                             <span class="iconfont icon-zhishichanquan p-fontsiz"></span>
                             <div class="serve_text">
@@ -136,7 +136,7 @@
                             <div class="serve-button">立即咨询</div>
                         </li>
                         </a>
-                        <a th:href="${basePath+'/productServiceKejixiangmu?0'}">
+                        <a th:href="${basePath+'/serviceKejixiangmu?0'}">
                         <li>
                             <span class="iconfont icon-V p-fontsiz"></span>
                             <div class="serve_text">
@@ -158,7 +158,7 @@
                             <div class="serve-button">立即咨询</div>
                         </li>
                               </a>
-                        <a th:href="${basePath+'/productServiceCaisui?0'}">
+                        <a th:href="${basePath+'/serviceCaisui?0'}">
                         <li>
                             <span class="iconfont icon-caiwu p-fontsiz"></span>
                             <div class="serve_text">
@@ -176,7 +176,7 @@
                             <div class="serve-button">立即咨询</div>
                         </li>
                               </a>
-                        <a th:href="${basePath+'/productServiceJunming?0'}">
+                        <a th:href="${basePath+'/serviceJunming?0'}">
                         <li>
                             <span class="iconfont icon-E-junshi p-fontsiz"></span>
                             <div class="serve_text">
@@ -192,7 +192,7 @@
                             <div class="serve-button">立即咨询</div>
                         </li>
                               </a>
-                        <a th:href="${basePath+'/productServiceTxrz?0'}">
+                        <a th:href="${basePath+'/serviceTxrz?0'}">
                         <li>
                             <span class="iconfont icon-renzhengpeizhi p-fontsiz"></span>
                             <div class="serve_text">
@@ -202,7 +202,7 @@
                             <div class="serve-button">立即咨询</div>
                         </li>
                               </a>
-                        <a th:href="${basePath+'/productServicePingtai?0'}">
+                        <a th:href="${basePath+'/servicePingtai?0'}">
                         <li>
                             <span class="iconfont icon-pingtaiguanlizhujiguanli p-fontsiz"></span>
 
@@ -483,7 +483,7 @@
                                 <div class="text">
                                     <h3>科德华咨</h3>
                                     <p>湖南科德信息咨询集团有限公司(原省科协科技咨询部)创建于2001年,改制后于2008年正式注册。现有正式员工362人,内设机构19个,各行业、各领域兼职专家965人,公司在全国各地设有25家分/子公司,年营业额1.6亿元。总部位于国家级湘江新区湖南省金融中心,购置办公总面积2170平方米。近二十一年来,共服务企业26800多家
-                                    <a th:href="${basePath + '/aboutKede'}">了解更多...</a></p>
+                                    <a th:href="${basePath + '/about'}">了解更多...</a></p>
                                 </div>
                             </div>
                         </div>
@@ -756,13 +756,13 @@
 			var index = item.index()
 			switch (index){
 				case 0:
-                    window.location.href = window.location.protocol+'//'+window.location.host+"/aboutKede"
+                    window.location.href = window.location.protocol+'//'+window.location.host+"/about"
 					break;
 				case 1:
-                    window.location.href = window.location.protocol+'//'+window.location.host+"/aboutKede?btn=3"
+                    window.location.href = window.location.protocol+'//'+window.location.host+"/about?btn=3"
 					break;
 				case 2:
-                    window.location.href = window.location.protocol+'//'+window.location.host+"/aboutKede"
+                    window.location.href = window.location.protocol+'//'+window.location.host+"/about"
 					break;
 				case 3:
                     window.location.href = window.location.protocol+'//'+window.location.host+"/client"

+ 1 - 1
src/main/webapp/WEB-INF/views/portal/newsDetails.html

@@ -3,7 +3,7 @@
 <head th:replace="common::header(~{::title},~{::link},~{::meta})">
     <meta charset="UTF-8">
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
-    <title>科德信息咨询</title>
+    <title>新闻详情</title>
     <!-- 二级页面CSS -->
     <link rel="stylesheet" th:href="${portalHost+'/css/secode.css'}">
 </head>