Browse Source

网站路径优化(除掉新闻详情链接)

anderx 4 years ago
parent
commit
40fc1e6806

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

@@ -30,13 +30,13 @@ import com.kede.organization.service.OrganizationService;
 
 @Controller
 public class WebpageController extends BaseController {
-	
+
 	@Resource
 	private BannersService	bannersService;
 	@Resource
 	private NewsService newsService;
 	@Resource
-	private CustomerCaseService customerCaseService; 
+	private CustomerCaseService customerCaseService;
 	@Resource
 	private OrganizationService	organizationService;
 
@@ -52,12 +52,12 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/portal/link", method = RequestMethod.GET)
+	@RequestMapping(value = "/link", method = RequestMethod.GET)
 	public ModelAndView portalLink(HttpServletRequest request, ModelAndView modelview) {
 		modelview.setViewName("/portal/link");
 		return modelview;
 	}
-	
+
 	/**
 	 * 关于科德
 	 * @param request
@@ -65,7 +65,7 @@ public class WebpageController extends BaseController {
 	 * @return
 	 */
 	@SuppressWarnings("unchecked")
-	@RequestMapping(value = "/portal/aboutKede", method = RequestMethod.GET)
+	@RequestMapping(value = "/aboutKede", method = RequestMethod.GET)
 	public ModelAndView portalAboutKede(HttpServletRequest request, ModelAndView modelview) {
 		modelview.setViewName("/portal/aboutKede");
 		InputBannerDetails ibd=new InputBannerDetails(1,5);
@@ -75,7 +75,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	
+
 	/**
 	 * 联系我们
 	 * @param request
@@ -83,7 +83,7 @@ public class WebpageController extends BaseController {
 	 * @return
 	 */
 	@SuppressWarnings("unchecked")
-	@RequestMapping(value = "/portal/contactUs", method = RequestMethod.GET)
+	@RequestMapping(value = "/contactUs", method = RequestMethod.GET)
 	public ModelAndView portalContactUs(HttpServletRequest request, ModelAndView modelview) {
 		modelview.setViewName("/portal/contactUs");
 		InputBannerDetails ibd=new InputBannerDetails(1,6);
@@ -118,7 +118,7 @@ public class WebpageController extends BaseController {
 	 * @return
 	 */
 	@SuppressWarnings("unchecked")
-	@RequestMapping(value = "/portal/news", method = RequestMethod.GET)
+	@RequestMapping(value = "/news", method = RequestMethod.GET)
 	public ModelAndView portalNews(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/news");
 		InputBannerDetails ibd=new InputBannerDetails(1,4);
@@ -135,7 +135,7 @@ public class WebpageController extends BaseController {
 	 * @return
 	 */
 	@SuppressWarnings("unchecked")
-	@RequestMapping(value = "/portal/strategic", method = RequestMethod.GET)
+	@RequestMapping(value = "/strategic", method = RequestMethod.GET)
 	public ModelAndView portalStrategic(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/strategic");
 		InputBannerDetails ibd=new InputBannerDetails(1,2);
@@ -145,8 +145,8 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	
-	
+
+
 	/**
 	 * 客户列表
 	 * @param request
@@ -154,7 +154,7 @@ public class WebpageController extends BaseController {
 	 * @return
 	 */
 	@SuppressWarnings("unchecked")
-	@RequestMapping(value = "/portal/client", method = RequestMethod.GET)
+	@RequestMapping(value = "/client", method = RequestMethod.GET)
 	public ModelAndView portalClient(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/client");
 		InputBannerDetails ibd=new InputBannerDetails(1,3);
@@ -170,7 +170,7 @@ public class WebpageController extends BaseController {
 	 * @param modelview
 	 * @return
 	 */
-	@RequestMapping(value = "/portal/productService", method = RequestMethod.GET)
+	@RequestMapping(value = "/productService", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalProductService(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productService");
@@ -182,7 +182,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/portal/productServiceCaisui", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceCaisui", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceCaisui(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceCaisui");
@@ -194,7 +194,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/portal/productServiceGaoxin", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceGaoxin", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceGaoxin(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceGaoxin");
@@ -205,7 +205,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/portal/productServiceZhishi", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceZhishi", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceZhishi(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceZhishi");
@@ -216,7 +216,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/portal/productServiceXinyong", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceXinyong", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceXinyong(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceXinyong");
@@ -227,7 +227,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/portal/productServiceCprz", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceCprz", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceCprz(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceCprz");
@@ -238,7 +238,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/portal/productServiceJunming", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceJunming", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceJunming(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceJunming");
@@ -249,8 +249,8 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	
-	@RequestMapping(value = "/portal/productServiceRencai", method = RequestMethod.GET)
+
+	@RequestMapping(value = "/productServiceRencai", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceRencai(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceRencai");
@@ -261,8 +261,8 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	
-	@RequestMapping(value = "/portal/productServiceXxlei", method = RequestMethod.GET)
+
+	@RequestMapping(value = "/productServiceXxlei", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceXxlei(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceXxlei");
@@ -274,7 +274,7 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 
-	@RequestMapping(value = "/portal/productServiceKejixiangmu", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceKejixiangmu", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceKejixiangmu(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceKejixiangmu");
@@ -285,7 +285,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/portal/productServiceKjjr", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServiceKjjr", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceKjjr(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceKjjr");
@@ -296,8 +296,8 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	
-	@RequestMapping(value = "/portal/productServiceTxrz", method = RequestMethod.GET)
+
+	@RequestMapping(value = "/productServiceTxrz", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServiceTxrz(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServiceTxrz");
@@ -308,7 +308,7 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	@RequestMapping(value = "/portal/productServicePingtai", method = RequestMethod.GET)
+	@RequestMapping(value = "/productServicePingtai", method = RequestMethod.GET)
 	@SuppressWarnings("unchecked")
 	public ModelAndView portalproductServicePingtai(HttpServletRequest request, ModelAndView modelview,Integer id) {
 		modelview.setViewName("/portal/service/productServicePingtai");
@@ -319,13 +319,13 @@ public class WebpageController extends BaseController {
 		modelview.addObject("banners",o);
 		return modelview;
 	}
-	
+
 	@RequestMapping(value = "/", method = RequestMethod.GET)
 	public ModelAndView home(HttpServletRequest request, ModelAndView modelview) {
 		return protalIndex(request, modelview);
 	}
 	@SuppressWarnings("unchecked")
-	@RequestMapping(value = "/portal/index", method = RequestMethod.GET)
+	@RequestMapping(value = "/index", method = RequestMethod.GET)
 	public ModelAndView protalIndex(HttpServletRequest request, ModelAndView modelview) {
 		modelview.setViewName("/portal/index");
 		//获取轮播图
@@ -372,9 +372,9 @@ public class WebpageController extends BaseController {
 		if(str.length()>48)str=str.substring(0, 48)+"...";
 		return str;
 	}
-	
-	
-	
+
+
+
 	/**
 	* 删除Html标签
 	*/

+ 1 - 1
src/main/resources/shiro_base_auth.ini

@@ -25,4 +25,4 @@
 /permission/**=admin,permission
 /open/**=anon
 /open/user/**=anon
-/**=login
+/**=device

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

@@ -33,13 +33,13 @@
         </div>
         <div class="m_contant">
             <ul>
-                <li><a th:href="${basePath + '/portal/index'}">首页</a></li>
-                <li><a th:href="${basePath + '/portal/productService'}">产品中心</a></li>
-                <li><a th:href="${basePath + '/portal/strategic'}">战略合作</a></li>
-                <li><a th:href="${basePath + '/portal/client'}">服务客户</a></li>
-                <li><a th:href="${basePath + '/portal/news'}">新闻动态</a></li>
-                <li><a th:href="${basePath + '/portal/aboutKede'}">关于科德</a></li>
-                <li><a th:href="${basePath + '/portal/contactUs'}">联系我们</a></li>
+                <li><a th:href="${basePath + '/'}">首页</a></li>
+                <li><a th:href="${basePath + '/productService'}">产品中心</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 + '/contactUs'}">联系我们</a></li>
             </ul>
         </div>
     </nav>
@@ -48,20 +48,20 @@
     <nav class="pc_nav">
         <!-- LOGO -->
         <div class="logo">
-            <a th:href="${basePath+'/portal/index'}"><img th:src="${portalHost+'/images/logo.png'}" alt="科德咨询" /></a>
+            <a th:href="${basePath+'/'}"><img th:src="${portalHost+'/images/logo.png'}" alt="科德咨询" /></a>
         </div>
         <ul>
             <div class="nav-dog"></div>
-            <li><a th:href="${basePath+'/portal/index'}">首页</a></li>
+            <li><a th:href="${basePath+'/'}">首页</a></li>
             <li class="product_nav">
-                <a th:href="${basePath+'/portal/productService'}">产品中心</a>
+                <a th:href="${basePath+'/productService'}">产品中心</a>
 
             </li>
-            <li><a th:href="${basePath+'/portal/strategic'}">战略合作</a></li>
-            <li><a th:href="${basePath+'/portal/client'}">服务客户</a></li>
-            <li><a th:href="${basePath+'/portal/news'}">新闻动态</a></li>
-            <li><a th:href="${basePath+'/portal/aboutKede'}">关于科德</a></li>
-            <li><a th:href="${basePath+'/portal/contactUs'}">联系我们</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+'/contactUs'}">联系我们</a></li>
         </ul>
         <div class="kede_phone">
             <span>全国免费咨询</span>
@@ -73,13 +73,13 @@
                 <div class="">
                     <p>技术转移</p>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productService?0'}">技术需求</a></li>
-                        <li><a th:href="${basePath+'/portal/productService?1'}">成果推介</a></li>
-                        <li><a th:href="${basePath+'/portal/productService?2'}">承接活动</a></li>
-                        <li><a th:href="${basePath+'/portal/productService?3'}">技术合同登记(免费)</a></li>
-                        <li><a th:href="${basePath+'/portal/productService?4'}">院士工作站</a></li>
-                        <li><a th:href="${basePath+'/portal/productService?5'}">博士工作站</a></li>
-                        <li><a th:href="${basePath+'/portal/productService?6'}">国外高精尖人才引进</a></li>
+                        <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>
                     </ul>
                 </div>
             </div>
@@ -87,13 +87,13 @@
                 <div class=" ">
                     <p>高企培育</p>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?0'}">高新技术企业认定</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?1'}">高新技术企业培育</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?2'}">高新技术企业会员服务</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?3'}">种子基金</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?4'}">创客空间</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?5'}">创业基金</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?6'}">政策融资</a></li>
+                        <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>
                     </ul>
                 </div>
             </div>
@@ -101,12 +101,12 @@
                 <div class=" ">
                     <p>知识产权</p>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServiceZhishi?0'}">国内外专利申请</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceZhishi?1'}">知识产权挖掘/布局</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceZhishi?2'}">商标注册</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceZhishi?3'}">软件著作权申请</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceZhishi?4'}">科技查新</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceZhishi?5'}">知识产权贯标认证</a></li>
+                        <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>
                     </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+'/portal/productServiceKejixiangmu?0'}">科技型中小企业</a></li>
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?1'}">省/市小巨人</a></li>
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?2'}">省/市守合同重信用</a></li>
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?3'}">省/市两型产品</a></li>
-                            <!--                                    <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?4'}">省/市高新产品</a></li>-->
+                            <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>-->
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">技术创新新平台类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?5'}">国家/省/市/区企业技术中心</a></li>
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?6'}">省/市工程(技术)研究中心</a></li>
+                            <li><a th:href="${basePath+'/productServiceKejixiangmu?5'}">国家/省/市/区企业技术中心</a></li>
+                            <li><a th:href="${basePath+'/productServiceKejixiangmu?6'}">省/市工程(技术)研究中心</a></li>
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">科研计划类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?7'}">国家/省/市/区科技计划</a></li>
+                            <li><a th:href="${basePath+'/productServiceKejixiangmu?7'}">国家/省/市/区科技计划</a></li>
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">研发奖补类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?8'}">省/市研发财政奖补资金</a></li>
+                            <li><a th:href="${basePath+'/productServiceKejixiangmu?8'}">省/市研发财政奖补资金</a></li>
                         </div>
                         <li class="kjxm-li"><a class="kjxm-a">产业发展引导类</a></li>
                         <div class="min-p">
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?9'}">制造强省(市)专项(含技改、新材料)</a></li>
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?10'}">省/市移动互联网产业发展专项</a></li>
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?11'}">省/市人工智能产业专项</a></li>
-                            <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?12'}">中小企业发展专项(含专精特新)</a></li>
+                            <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>
                         </div>
                     </ul>
                 </div>
@@ -149,16 +149,16 @@
                 <div class=" ">
                     <p>财税咨询服务</p>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?0'}">年度审计报告 </a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?1'}">专项审计报告</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?2'}">高新与加计扣除政策</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?3'}">研发奖补</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?4'}">财税/税务顾问</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?5'}">财税培训</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?6'}">财税代理</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?7'}">科技政策与财税筹划</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?8'}">企业管理咨询</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?9'}">研发费用归集</a></li>
+                        <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>
                     </ul>
                 </div>
             </div>
@@ -166,12 +166,12 @@
                 <div class=" ">
                     <p>军民科技转化</p>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServiceJunming?0'}">武器装备科研生产单位保密资格认定咨询</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceJunming?1'}">武器装备承制单位资格认证咨询</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceJunming?2'}">武器装备科研生产许可认证(备案)咨询</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceJunming?3'}">国军标(GJB9001C-2017)体系认证咨询</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceJunming?4'}">退役军人就业创业服务</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceJunming?5'}">军民两用技术转移转化服务</a></li>
+                        <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>
                     </ul>
                 </div>
             </div>
@@ -179,42 +179,42 @@
                 <div class=" ">
                     <p style="text-align: center;">体系认证</p>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?0'}">ISO9001质量管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?1'}">OHSAS18001职业健康安全体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?2'}">ISO14001环境管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?3'}">ISO22000食品安全管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?4'}">ISO37001反贿赂管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?5'}">SA8000企业社会责任管理体系</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?6'}">ISO13485医疗器械质量管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?7'}">GB/T27922售后服务体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?8'}">GB/T31950企业诚实管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?9'}">两化融合贯标</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?31'}">社会组织评估</a></li>
+                        <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>
                     </ul>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?10'}">省/市级两型产品认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?11'}">湖南省新材料企业认定</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?12'}">CCC认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?13'}">软件能力成熟度模型三级CMMI3</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?14'}">*双软企业认定</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?15'}">*ITSS信息技术服务标准</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?16'}">ISO27001信息安全体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?17'}">ISO20000IT服务管理体系认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?18'}">中国节水/节能认证</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?19'}">中国环保产品认证</a></li>
+                        <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>
                     </ul>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?20'}">省/市级守合同重信用企业</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?21'}">AAA企业信用等级</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?22'}">AAA重合同守信用企业</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?23'}">AAA质量服务诚信单位</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?24'}">AAA诚信经营示范单位</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?25'}">AAA资信等级证书</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?26'}">AAA级诚信单位</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?27'}">AAA诚信供应商等级证书</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?28'}">中国诚信之星</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?29'}">中国诚信企业家</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?30'}">中国诚信经理人</a></li>
+                        <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>
                     </ul>
                 </div>
             </div>
@@ -222,9 +222,9 @@
                 <div class=" ">
                     <p>平台开发建设</p>
                     <ul>
-                        <li><a th:href="${basePath+'/portal/productServicePingtai?0'}">网站PC端开发或共建</a></li>
-                        <li><a th:href="${basePath+'/portal/productServicePingtai?1'}">管理系统研发</a></li>
-                        <li><a th:href="${basePath+'/portal/productServicePingtai?2'}">Android及IOS移动端开发</a></li>
+                        <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>
                     </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 + '/portal/productService?0'}">
+                    <a th:href="${basePath + '/productService?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+'/portal/productServiceGaoxin?0'}">
+                    <a th:href="${basePath+'/productServiceGaoxin?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+'/portal/productServiceZhishi?0'}">
+                    <a th:href="${basePath+'/productServiceZhishi?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+'/portal/productServiceKejixiangmu?0'}">
+                    <a th:href="${basePath+'/productServiceKejixiangmu?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+'/portal/productServiceCaisui?0'}">
+                    <a th:href="${basePath+'/productServiceCaisui?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+'/portal/productServiceJunming?0'}">
+                    <a th:href="${basePath+'/productServiceJunming?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+'/portal/productServiceTxrz?0'}">
+                    <a th:href="${basePath+'/productServiceTxrz?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+'/portal/productServicePingtai?0'}">
+                    <a th:href="${basePath+'/productServicePingtai?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">
@@ -394,7 +394,7 @@
                 </span>
                 </div>
                 <div style="display: flex;justify-content: right">
-                    <span class='spanLink' style='display:inline-block;'><a style='color:#7E7F7F' href='/portal/link'>MORE<span style='font-size:20px'>⋙</span></a></span>
+                    <span class='spanLink' style='display:inline-block;'><a style='color:#7E7F7F' href='/link'>MORE<span style='font-size:20px'>⋙</span></a></span>
                 </div>
             </div>
 <!--                <div class="swiper-container conts" id="swiper5s" style="color: white;max-height: 60px;">-->
@@ -405,22 +405,22 @@
 <!--&lt;!&ndash;                        </div>&ndash;&gt;-->
 <!--                    </div>-->
 <!--                </div>-->
-<!--            <div style="width: 100%;display: flex;justify-content: right;"><a style="color: white" th:href="${basePath+'/portal/link'}">MORE<sup>>>></sup></a></div>-->
-<!--                <div style="color:white;"><a th:href="${basePath+'/portal/link'}">More<sup>>>></sup></a></div>-->
+<!--            <div style="width: 100%;display: flex;justify-content: right;"><a style="color: white" th:href="${basePath+'/link'}">MORE<sup>>>></sup></a></div>-->
+<!--                <div style="color:white;"><a th:href="${basePath+'/link'}">More<sup>>>></sup></a></div>-->
             <div class="row" style="position: relative;">
                 <div class="down_left col-lg-3 ">
                     <p>产品服务</p>
                     <ul style="margin-top: 38px;">
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?0'}">高企认定</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceGaoxin?1'}">高企培育</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?2'}">财税筹划</a></li>
-                        <li><a th:href="${basePath+'/portal/productServiceCaisui?3'}">研发奖补</a></li>
+                        <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>
                     </ul>
                     <ul style="margin-top: 38px;">
-                        <li><a th:href="${basePath+'/portal/productServiceTxrz?12'}">两化融合</a></li>
+                        <li><a th:href="${basePath+'/productServiceTxrz?12'}">两化融合</a></li>
                         <li><a >专利转让</a></li>
                         <li><a >创客空间</a></li>
-                        <li><a th:href="${basePath+'/portal/productService?5'}">博士工作站 </a></li>
+                        <li><a th:href="${basePath+'/productService?5'}">博士工作站 </a></li>
                     </ul>
                 </div>
                 <div class="down_middle col-lg-6">
@@ -428,32 +428,32 @@
                         <li>
                             <p>关于科德</p>
                             <ul>
-                                <li><a th:href="${basePath+'/portal/aboutKede?fzlc'}">发展历程</a></li>
-                                <li><a th:href="${basePath+'/portal/aboutKede?ryzz'}">荣誉资质</a></li>
-                                <li><a th:href="${basePath+'/portal/aboutKede?qywh'}">企业文化</a></li>
-                                <li><a th:href="${basePath+'/portal/aboutKede?qggs'}">全国公司</a></li>
+                                <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>
                             </ul>
                         </li>
                         <li>
                             <p>新闻动态</p>
                             <ul>
-                                <li><a th:href="${basePath+'/portal/news?type=0'}">科德新闻</a></li>
-                                <li><a th:href="${basePath+'/portal/news?type=1'}">行业资讯</a></li>
+                                <li><a th:href="${basePath+'/news?type=0'}">科德新闻</a></li>
+                                <li><a th:href="${basePath+'/news?type=1'}">行业资讯</a></li>
                             </ul>
                         </li>
                         <li>
                             <p>联系我们</p>
                             <ul>
-                                <li><a th:href="${basePath+'/portal/contactUs'}">联系电话:0731-89907207</a></li>
-                                <li><a th:href="${basePath+'/portal/contactUs'}">地址:湖南省长沙市岳麓区茶子山东路湘江财富金融中心D栋12层</a></li>
+                                <li><a th:href="${basePath+'/contactUs'}">联系电话:0731-89907207</a></li>
+                                <li><a th:href="${basePath+'/contactUs'}">地址:湖南省长沙市岳麓区茶子山东路湘江财富金融中心D栋12层</a></li>
                                 <li>
-                                    <a th:href="${basePath+'/portal/contactUs'}">
+                                    <a th:href="${basePath+'/contactUs'}">
                                         科德集团全国咨询电话
                                         400-8800-962
                                     </a>
                                 </li>
                                 <li>
-                                    <a th:href="${basePath+'/portal/contactUs'}">
+                                    <a th:href="${basePath+'/contactUs'}">
                                         科德集团客服热线电话
                                         <span style="display: inline-grid;">
                                                     <span>18932403553(陈女士)</span>
@@ -516,7 +516,7 @@
                             <!--                    </div>-->
                         </span>
 <!--                        <div style="display: flex;justify-content: right;flex: 1">-->
-                            <span class='spanLink' style='display:inline-block;'><a style='color:#7E7F7F' href='/portal/link'>MORE<span style='font-size:20px'>⋙</span></a></span>
+                            <span class='spanLink' style='display:inline-block;'><a style='color:#7E7F7F' href='/link'>MORE<span style='font-size:20px'>⋙</span></a></span>
 <!--                        </div>-->
                     </div>
 
@@ -581,14 +581,14 @@
                 <span class="iconfont icon-fuwu-active"></span>
                 <p>产品中心</p>
                 <ul class="">
-                    <li><a th:href="${basePath+'/portal/productService?0'}" >技术转移</a></li>
-                    <li><a th:href="${basePath+'/portal/productServiceGaoxin?0'}">高企培育</a></li>
-                    <li><a th:href="${basePath+'/portal/productServiceZhishi?0'}">知识产权</a></li>
-                    <li><a th:href="${basePath+'/portal/productServiceKejixiangmu?0'}">政策咨询</a></li>
-                    <li><a th:href="${basePath+'/portal/productServiceCaisui?0'}" >财税咨询</a></li>
-                    <li><a th:href="${basePath+'/portal/productServiceJunming?0'}" >军民科技</a></li>
-                    <li><a th:href="${basePath+'/portal/productServiceTxrz?0'}">体系认证</a></li>
-                    <li><a th:href="${basePath+'/portal/productServicePingtai?0'}">平台建设</a></li>
+                    <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>
                 </ul>
             </a>
         </div>

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

@@ -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+'/portal/productService?0'}">
+                       <a th:href="${basePath+'/productService?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+'/portal/productServiceGaoxin?0'}">
+                        <a th:href="${basePath+'/productServiceGaoxin?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+'/portal/productServiceZhishi?0'}">
+                         <a th:href="${basePath+'/productServiceZhishi?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+'/portal/productServiceKejixiangmu?0'}">
+                        <a th:href="${basePath+'/productServiceKejixiangmu?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+'/portal/productServiceCaisui?0'}">
+                        <a th:href="${basePath+'/productServiceCaisui?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+'/portal/productServiceJunming?0'}">
+                        <a th:href="${basePath+'/productServiceJunming?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+'/portal/productServiceTxrz?0'}">
+                        <a th:href="${basePath+'/productServiceTxrz?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+'/portal/productServicePingtai?0'}">
+                        <a th:href="${basePath+'/productServicePingtai?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 + '/portal/aboutKede'}">了解更多...</a></p>
+                                    <a th:href="${basePath + '/aboutKede'}">了解更多...</a></p>
                                 </div>
                             </div>
                         </div>
@@ -608,7 +608,7 @@
                                 <img th:src="|${avatarUploadHost}${gs1.pictureUrl}">
                             </div>
                         </a>
-                        <a class="more_button" th:href="@{/portal/news}">查看更多</a>
+                        <a class="more_button" th:href="@{/news}">查看更多</a>
                     </div>
                     <div class="newslist-right">
                         <div class="news-fenlei">
@@ -756,16 +756,16 @@
 			var index = item.index()
 			switch (index){
 				case 0:
-                    window.location.href = window.location.protocol+'//'+window.location.host+"/portal/aboutKede"
+                    window.location.href = window.location.protocol+'//'+window.location.host+"/aboutKede"
 					break;
 				case 1:
-                    window.location.href = window.location.protocol+'//'+window.location.host+"/portal/aboutKede?btn=3"
+                    window.location.href = window.location.protocol+'//'+window.location.host+"/aboutKede?btn=3"
 					break;
 				case 2:
-                    window.location.href = window.location.protocol+'//'+window.location.host+"/portal/aboutKede"
+                    window.location.href = window.location.protocol+'//'+window.location.host+"/aboutKede"
 					break;
 				case 3:
-                    window.location.href = window.location.protocol+'//'+window.location.host+"/portal/client"
+                    window.location.href = window.location.protocol+'//'+window.location.host+"/client"
 					break;
 			}
 		})

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

@@ -27,12 +27,12 @@
         <div class="bread-crumbs">
             <div class="container">
                 <ul>
-                    <li><a th:href="${basePath+'/portal/index'}">首页</a></li>
+                    <li><a th:href="${basePath+'/'}">首页</a></li>
                     <li>&gt;</li>
-                    <li><a th:href="${basePath+'/portal/news'}">新闻动态</a> </li>
+                    <li><a th:href="${basePath+'/news'}">新闻动态</a> </li>
                     <li>&gt;</li>
-                    <!-- @{/portal/technologyTrading/achievementList(fieldA=${industry.id})} -->
-                    <li><a th:href="@{/portal/news(type=${news.type})}" th:text="${news.type}==0?'公司新闻':'行业新闻'">公司新闻</a> </li>
+                    <!-- @{/technologyTrading/achievementList(fieldA=${industry.id})} -->
+                    <li><a th:href="@{/news(type=${news.type})}" th:text="${news.type}==0?'公司新闻':'行业新闻'">公司新闻</a> </li>
                     <li>&gt;</li>
                     <li class="active"><a href="javascript:;" th:text="${news.title}">科德高企培育系列讲座走进湘乡</a> </li>
                 </ul>