anderx пре 4 година
родитељ
комит
ea2209363a

+ 7 - 1
src/main/java/com/goafanti/common/controller/WebpageController.java

@@ -147,6 +147,12 @@ public class WebpageController extends BaseController {
 		modelview.setViewName("/admin/customer");
 		return modelview;
 	}
+	
+	@RequestMapping(value = "/admin/customerService", method = RequestMethod.GET)
+	public ModelAndView admincustomerService(HttpServletRequest request, ModelAndView modelview) {
+		modelview.setViewName("/admin/customerService");
+		return modelview;
+	}
 
 	@RequestMapping(value = "/admin/servicesManage/technology", method = RequestMethod.GET)
 	public ModelAndView adminServicesManageTechnology(HttpServletRequest request, ModelAndView modelview) {
@@ -454,4 +460,4 @@ public class WebpageController extends BaseController {
 		return modelview;
 	}
 	
-}
+}

+ 5 - 5
src/main/resources/props/config_local.properties

@@ -5,7 +5,7 @@ jdbc.driverClassName=com.mysql.jdbc.Driver
 #jdbc.username=root
 #jdbc.password=123456
 #测试
-jdbc.url=jdbc:mysql://101.37.32.31:3306/aft20201022?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false
+jdbc.url=jdbc:mysql://101.37.32.31:3306/aft?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false
 jdbc.username=root
 jdbc.password=aftdev
 #\u68c0\u6d4b\u6570\u636e\u5e93\u94fe\u63a5\u662f\u5426\u6709\u6548\uff0c\u5fc5\u987b\u914d\u7f6e
@@ -64,12 +64,12 @@ user_remind_days=15
 portal.host=//sf.jishutao.com/portal/2.0.6
 avatar.upload.host=//sb.jishutao.com/upload
 #连接开�
-#static.host=//172.16.0.253/1.1.72
-#avatar.host=//172.16.0.253
+static.host=//172.16.0.253/1.1.72
+avatar.host=//172.16.0.253
 
-avatar.host=//static.jishutao.com
-static.host=//static.jishutao.com/1.1.72
+#avatar.host=//static.jishutao.com
+#static.host=//static.jishutao.com/1.1.72
 
 upload.path=F:/data/public/upload
 upload.private.path=F:/data/private/upload

+ 17 - 0
src/main/webapp/WEB-INF/views/admin/customerService.html

@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml"
+	xmlns:th="http://www.thymeleaf.org">
+<head th:replace="common::header(~{::title},~{::link})">
+	<title>客户管理</title>
+	<link th:href="${staticHost+'/dll/dll.css'}" rel="stylesheet">
+	<link th:href="${staticHost+'/admin/customerService.css'}" rel="stylesheet">
+</head>
+<body>
+	<div id="root"></div>
+	<div th:replace="common::footer(~{::script})">
+		<script type="text/javascript" th:src="${staticHost+'/vendors.js'}"></script>
+		<script type="text/javascript" th:src="${staticHost+'/dll/dll.js'}"></script>
+		<script type="text/javascript" th:src="${staticHost+'/admin/customerService.js'}"></script>
+	</div>
+</body>
+</html>