hugeng 4 lat temu
rodzic
commit
1f29c79234
36 zmienionych plików z 291 dodań i 233 usunięć
  1. BIN
      lib/aopalliance-1.0.jar
  2. BIN
      lib/commons-logging-1.2.jar
  3. BIN
      lib/spring-aop-4.3.18.RELEASE.jar
  4. BIN
      lib/spring-aspects-4.3.18.RELEASE.jar
  5. BIN
      lib/spring-beans-4.3.18.RELEASE.jar
  6. BIN
      lib/spring-context-4.3.18.RELEASE.jar
  7. BIN
      lib/spring-context-support-4.3.18.RELEASE.jar
  8. BIN
      lib/spring-core-4.3.18.RELEASE.jar
  9. BIN
      lib/spring-expression-4.3.18.RELEASE.jar
  10. BIN
      lib/spring-instrument-4.3.18.RELEASE.jar
  11. BIN
      lib/spring-instrument-tomcat-4.3.18.RELEASE.jar
  12. BIN
      lib/spring-jdbc-4.3.18.RELEASE.jar
  13. BIN
      lib/spring-jms-4.3.18.RELEASE.jar
  14. BIN
      lib/spring-messaging-4.3.18.RELEASE.jar
  15. BIN
      lib/spring-orm-4.3.18.RELEASE.jar
  16. BIN
      lib/spring-oxm-4.3.18.RELEASE.jar
  17. BIN
      lib/spring-test-4.3.18.RELEASE.jar
  18. BIN
      lib/spring-tx-4.3.18.RELEASE.jar
  19. 5 1
      src/main/java/com/yc/education/controller/admin/NewsAdminController.java
  20. 6 2
      src/main/java/com/yc/education/service/impl/NewsServiceImpl.java
  21. 3 3
      src/main/webapp/WEB-INF/jsp/about.jsp
  22. 27 6
      src/main/webapp/WEB-INF/jsp/admin/adminnews.jsp
  23. 3 3
      src/main/webapp/WEB-INF/jsp/case.jsp
  24. 3 3
      src/main/webapp/WEB-INF/jsp/case_detail.jsp
  25. 3 3
      src/main/webapp/WEB-INF/jsp/contact.jsp
  26. 3 3
      src/main/webapp/WEB-INF/jsp/index.jsp
  27. 3 3
      src/main/webapp/WEB-INF/jsp/jobs.jsp
  28. 3 3
      src/main/webapp/WEB-INF/jsp/news.jsp
  29. 3 3
      src/main/webapp/WEB-INF/jsp/news_detail.jsp
  30. 3 3
      src/main/webapp/WEB-INF/jsp/product.jsp
  31. 186 185
      src/main/webapp/WEB-INF/jsp/product_detail.jsp
  32. 3 3
      src/main/webapp/WEB-INF/jsp/search.jsp
  33. 3 3
      src/main/webapp/WEB-INF/jsp/service.jsp
  34. 3 3
      src/main/webapp/WEB-INF/jsp/solution.jsp
  35. 3 3
      src/main/webapp/WEB-INF/jsp/solution_detail.jsp
  36. 28 0
      yinhua.iml

BIN
lib/aopalliance-1.0.jar


BIN
lib/commons-logging-1.2.jar


BIN
lib/spring-aop-4.3.18.RELEASE.jar


BIN
lib/spring-aspects-4.3.18.RELEASE.jar


BIN
lib/spring-beans-4.3.18.RELEASE.jar


BIN
lib/spring-context-4.3.18.RELEASE.jar


BIN
lib/spring-context-support-4.3.18.RELEASE.jar


BIN
lib/spring-core-4.3.18.RELEASE.jar


BIN
lib/spring-expression-4.3.18.RELEASE.jar


BIN
lib/spring-instrument-4.3.18.RELEASE.jar


BIN
lib/spring-instrument-tomcat-4.3.18.RELEASE.jar


BIN
lib/spring-jdbc-4.3.18.RELEASE.jar


BIN
lib/spring-jms-4.3.18.RELEASE.jar


BIN
lib/spring-messaging-4.3.18.RELEASE.jar


BIN
lib/spring-orm-4.3.18.RELEASE.jar


BIN
lib/spring-oxm-4.3.18.RELEASE.jar


BIN
lib/spring-test-4.3.18.RELEASE.jar


BIN
lib/spring-tx-4.3.18.RELEASE.jar


+ 5 - 1
src/main/java/com/yc/education/controller/admin/NewsAdminController.java

@@ -41,18 +41,22 @@ public class NewsAdminController {
 
     @RequestMapping("adminnews.html")
     public ModelAndView adminnews(int type,
+                                  @RequestParam(required = false, defaultValue = "0") int typeid,
                                   @RequestParam(required = false, defaultValue = "1") int page,
                                   @RequestParam(required = false, defaultValue = "10") int rows) {
         ModelAndView modelAndView = new ModelAndView();
-        List<News> newsList = newsService.NEWS_LIST(type, page, rows);
+        List<News> newsList = newsService.NEWS_LIST(typeid, type, page, rows);
         for (News news : newsList) {
             Type type1 = typeService.selectByKey(news.getTypeid());
             if (type1 != null) {
                 news.setTypes(type1);
             }
         }
+        List<Type> types = typeService.TYPE_LIST(type, page, rows);
         modelAndView.addObject("pageInfo", new PageInfo<>(newsList));
         modelAndView.addObject("type", type);
+        modelAndView.addObject("types", types);
+        modelAndView.addObject("typeid", typeid);
         return modelAndView;
     }
 

+ 6 - 2
src/main/java/com/yc/education/service/impl/NewsServiceImpl.java

@@ -32,7 +32,11 @@ public class NewsServiceImpl extends BaseService<News> implements NewsService {
     @Override
     public List<News> NEWS_LIST(int typeid, int type, int page, int rows) {
         PageHelper.startPage(page, rows);
-        return newsMapper.selectByTypeAndTypeId(typeid, type);
+        if (typeid == 0) {
+            return newsMapper.selectByType(type);
+        } else {
+            return newsMapper.selectByTypeAndTypeId(typeid, type);
+        }
     }
 
     @Override
@@ -42,7 +46,7 @@ public class NewsServiceImpl extends BaseService<News> implements NewsService {
     }
 
     @Override
-    public List<News> NEWS_LIST_LIKETITLE(String title,int page,int rows) {
+    public List<News> NEWS_LIST_LIKETITLE(String title, int page, int rows) {
         PageHelper.startPage(page, rows);
         return newsMapper.selectByTitle(title);
     }

+ 3 - 3
src/main/webapp/WEB-INF/jsp/about.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 27 - 6
src/main/webapp/WEB-INF/jsp/admin/adminnews.jsp

@@ -34,6 +34,23 @@
        href="javascript:location.replace(location.href);" title="刷新"><i class="Hui-iconfont">&#xe68f;</i></a>
 </nav>
 <div class="page-container">
+    <form action="adminnews.html" method="get" id="search">
+        <div class="text-c">
+    			<span class="select-box inline">
+    				<select name="typeid" id="typeid" class="select">
+    					<option value="" <c:if test="${typeid == 0 }">selected="selected"</c:if>>全部</option>
+                        <c:forEach items="${types}" var="types">
+                            <option value="${types.id}"
+                                    <c:if test="${typeid == types.id }">selected="selected"</c:if>>${types.title}</option>
+                        </c:forEach>
+    				</select>
+    			</span>
+            <button onClick="$('#search').submit()" class="btn btn-success" type="submit"><i class="Hui-iconfont">&#xe665;</i>
+                搜索
+            </button>
+        </div>
+        <input name="type" value="${type}" hidden="hidden"/>
+    </form>
     <div class="cl pd-5 bg-1 bk-gray mt-20">
         <span class="l">
         <a class="btn btn-primary radius" href="updnews.html?type=${type}"><i
@@ -95,24 +112,28 @@
         <section>
             <div class="bd points-goods-list">
                 <ul class="pages">
-                    <li><a href="adminnews.html?type=${type}&page=1&rows=${pageInfo.pageSize}">首页</a></li>
+                    <li><a href="adminnews.html?typeid=${typeid}&type=${type}&page=1&rows=${pageInfo.pageSize}">首页</a>
+                    </li>
                     <li class="prev"><a
-                            href="adminnews.html?type=${type}&page=${pageInfo.prePage}&rows=${pageInfo.pageSize}">上一页</a>
+                            href="adminnews.html?typeid=${typeid}&type=${type}&page=${pageInfo.prePage}&rows=${pageInfo.pageSize}">上一页</a>
                     </li>
                     <c:forEach items="${pageInfo.navigatepageNums}" var="nav">
                         <c:if test="${nav == pageInfo.pageNum}">
-                            <li><a href="adminnews.html?type=${type}&page=${nav}&rows=${pageInfo.pageSize}"
+                            <li>
+                                <a href="adminnews.html?typeid=${typeid}&type=${type}&page=${nav}&rows=${pageInfo.pageSize}"
                                    class="active">${nav}</a></li>
                         </c:if>
                         <c:if test="${nav != pageInfo.pageNum}">
-                            <li><a href="adminnews.html?type=${type}&page=${nav}&rows=${pageInfo.pageSize}">${nav}</a>
+                            <li>
+                                <a href="adminnews.html?typeid=${typeid}&type=${type}&page=${nav}&rows=${pageInfo.pageSize}">${nav}</a>
                             </li>
                         </c:if>
                     </c:forEach>
                     <li class="next"><a
-                            href="adminnews.html?type=${type}&page=${pageInfo.nextPage}&rows=${pageInfo.pageSize}">下一页</a>
+                            href="adminnews.html?typeid=${typeid}&type=${type}&page=${pageInfo.nextPage}&rows=${pageInfo.pageSize}">下一页</a>
                     </li>
-                    <li><a href="adminnews.html?type=${type}&page=${pageInfo.pages }&rows=${pageInfo.pageSize}">末页</a>
+                    <li>
+                        <a href="adminnews.html?typeid=${typeid}&type=${type}&page=${pageInfo.pages }&rows=${pageInfo.pageSize}">末页</a>
                     </li>
                 </ul>
             </div>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/case.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/case_detail.jsp

@@ -12,14 +12,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/contact.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/index.jsp

@@ -12,14 +12,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/jobs.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/news.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/news_detail.jsp

@@ -12,14 +12,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/product.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

Plik diff jest za duży
+ 186 - 185
src/main/webapp/WEB-INF/jsp/product_detail.jsp


+ 3 - 3
src/main/webapp/WEB-INF/jsp/search.jsp

@@ -5,14 +5,14 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/service.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/solution.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 3 - 3
src/main/webapp/WEB-INF/jsp/solution_detail.jsp

@@ -11,14 +11,14 @@ To change this template use File | Settings | File Templates.
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <meta name="keywords" content="赢华"/>
-    <meta name="description" content="赢华"/>
+    <meta name="keywords" content="${findseoid.keywords}"/>
+    <meta name="description" content="${findseoid.description}"/>
+    <title>${findseoid.title}</title>
     <meta content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff" http-equiv="Content-Type"/>
     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
     <meta name="renderer" content="webkit"/>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
     <meta name="format-detection" content="telephone=no"/>
-    <title>上海赢华软件科技有限公司</title>
     <link rel="stylesheet" href="css/icon.css"/>
     <link rel="stylesheet" href="css/style.css"/>
     <link rel="stylesheet" href="css/grid12.css"/>

+ 28 - 0
yinhua.iml

@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module version="4">
+  <component name="FacetManager">
+    <facet type="JRebel" name="JRebel">
+      <configuration>
+        <option name="deleteUnindexed" value="false" />
+        <option name="httpAuthEnabled" value="false" />
+        <option name="httpPassword" />
+        <option name="httpUsername" />
+        <option name="ideModuleStorage">
+          <map>
+            <entry key="com.zeroturnaround.jrebel.FormatVersion" value="7.0.0" />
+            <entry key="com.zeroturnaround.jrebel.remoting.DeleteUnindexedFiles" value="false" />
+            <entry key="com.zeroturnaround.jrebel.remoting.ModuleRemoteServerSelection" value="off" />
+            <entry key="jrebelEnabled" value="true" />
+            <entry key="lastExternalPluginCheckTime" value="1577242428431" />
+          </map>
+        </option>
+        <option name="masterModuleName" />
+        <option name="overrideStandardXmlFolder" value="false" />
+        <option name="remotingEnabled" value="false" />
+        <option name="secure" value="true" />
+        <option name="url" />
+        <option name="xmlDir" />
+      </configuration>
+    </facet>
+  </component>
+</module>