Browse Source

1.用户列表增加部门列。
2.更改了全部的thymleaf解析。

yangzhengze 6 years ago
parent
commit
faf83c61cc
51 changed files with 62 additions and 59 deletions
  1. 1 1
      src/main/resources/application.yml
  2. 5 4
      src/main/resources/mybatis/system/UserMapper.xml
  3. 4 0
      src/main/resources/static/ruoyi/system/user/user.js
  4. 1 1
      src/main/resources/templates/error/404.html
  5. 1 1
      src/main/resources/templates/error/500.html
  6. 1 1
      src/main/resources/templates/error/unauth.html
  7. 1 1
      src/main/resources/templates/index.html
  8. 1 2
      src/main/resources/templates/login.html
  9. 1 1
      src/main/resources/templates/main.html
  10. 1 1
      src/main/resources/templates/monitor/job/add.html
  11. 1 1
      src/main/resources/templates/monitor/job/edit.html
  12. 1 1
      src/main/resources/templates/monitor/job/job.html
  13. 1 1
      src/main/resources/templates/monitor/job/jobLog.html
  14. 1 1
      src/main/resources/templates/monitor/logininfor/logininfor.html
  15. 1 1
      src/main/resources/templates/monitor/online/online.html
  16. 1 1
      src/main/resources/templates/monitor/operlog/detail.html
  17. 1 1
      src/main/resources/templates/monitor/operlog/operlog.html
  18. 1 1
      src/main/resources/templates/system/config/add.html
  19. 1 1
      src/main/resources/templates/system/config/config.html
  20. 1 1
      src/main/resources/templates/system/config/edit.html
  21. 1 1
      src/main/resources/templates/system/dept/add.html
  22. 2 1
      src/main/resources/templates/system/dept/dept.html
  23. 1 1
      src/main/resources/templates/system/dept/edit.html
  24. 1 1
      src/main/resources/templates/system/dept/tree.html
  25. 1 1
      src/main/resources/templates/system/dict/data/add.html
  26. 1 1
      src/main/resources/templates/system/dict/data/data.html
  27. 1 1
      src/main/resources/templates/system/dict/data/edit.html
  28. 1 1
      src/main/resources/templates/system/menu/add.html
  29. 1 1
      src/main/resources/templates/system/menu/edit.html
  30. 1 1
      src/main/resources/templates/system/menu/icon.html
  31. 1 1
      src/main/resources/templates/system/menu/menu.html
  32. 1 1
      src/main/resources/templates/system/menu/tree.html
  33. 1 1
      src/main/resources/templates/system/post/add.html
  34. 1 1
      src/main/resources/templates/system/post/edit.html
  35. 1 1
      src/main/resources/templates/system/post/post.html
  36. 1 1
      src/main/resources/templates/system/role/add.html
  37. 1 1
      src/main/resources/templates/system/role/edit.html
  38. 1 1
      src/main/resources/templates/system/role/role.html
  39. 1 1
      src/main/resources/templates/system/user/add.html
  40. 1 1
      src/main/resources/templates/system/user/edit.html
  41. 1 1
      src/main/resources/templates/system/user/profile/avatar.html
  42. 1 1
      src/main/resources/templates/system/user/profile/edit.html
  43. 1 1
      src/main/resources/templates/system/user/profile/profile.html
  44. 1 1
      src/main/resources/templates/system/user/profile/resetPwd.html
  45. 1 1
      src/main/resources/templates/system/user/resetPwd.html
  46. 1 1
      src/main/resources/templates/system/user/user.html
  47. 1 2
      src/main/resources/templates/tool/build/build.html
  48. 1 2
      src/main/resources/templates/tool/gen/gen.html
  49. 2 2
      src/main/resources/templates/vm/html/add.html.vm
  50. 2 2
      src/main/resources/templates/vm/html/edit.html.vm
  51. 2 2
      src/main/resources/templates/vm/html/list.html.vm

+ 1 - 1
src/main/resources/application.yml

@@ -25,7 +25,7 @@ user:
 #Spring配置
 spring:
   thymeleaf:
-    mode: LEGACYHTML5
+    mode: HTML
     cache: false
   messages:
     #国际化资源文件路径

+ 5 - 4
src/main/resources/mybatis/system/UserMapper.xml

@@ -35,13 +35,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 	</resultMap>
 	
 	<select id="selectUserList" parameterType="User" resultMap="UserResult">
-		select user_id, dept_id, login_name, user_name, email, phonenumber, password, sex, avatar, salt, status, create_by, create_time, remark from sys_user
-		where status in (0,1)
+		select u.user_id, u.dept_id, u.login_name, u.user_name, u.email, u.phonenumber, u.password, u.sex, u.avatar, u.salt, u.status, u.create_by, u.create_time, u.remark, d.dept_name from sys_user u
+		left join sys_dept d on u.dept_id = d.dept_id
+		where u.status in (0,1)
 		<if test="searchValue != null and searchValue != ''">
-			AND login_name like concat(concat('%', #{searchValue}), '%')
+			AND u.login_name like concat(concat('%', #{searchValue}), '%')
 		</if>
 		<if test="deptId != null and parentId != null and parentId != 0">
-			AND dept_id IN (SELECT dept_id FROM sys_dept WHERE dept_id = #{deptId} OR parent_id = #{deptId})
+			AND u.dept_id IN (SELECT t.dept_id FROM sys_dept t WHERE t.dept_id = #{deptId} OR t.parent_id = #{deptId})
 		</if>
 	</select>
 	

+ 4 - 0
src/main/resources/static/ruoyi/system/user/user.js

@@ -23,6 +23,10 @@ function queryUserList() {
             field: 'userName',
             title: '用户名称'
         },
+        {
+            field: 'dept.deptName',
+            title: '部门'
+        },
         {
             field: 'email',
             title: '邮箱'

+ 1 - 1
src/main/resources/templates/error/404.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html>
+<html lang="zh">
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">

+ 1 - 1
src/main/resources/templates/error/500.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html>
+<html lang="zh">
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">

+ 1 - 1
src/main/resources/templates/error/unauth.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html>
+<html lang="zh">
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">

+ 1 - 1
src/main/resources/templates/index.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.thymeleaf.org">
+<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">

+ 1 - 2
src/main/resources/templates/login.html

@@ -1,6 +1,5 @@
 <!DOCTYPE html>
-<html lang="en">
-<html xmlns:th="http://www.thymeleaf.org">
+<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">

+ 1 - 1
src/main/resources/templates/main.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html>
+<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">

+ 1 - 1
src/main/resources/templates/monitor/job/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/monitor/job/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/monitor/job/job.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/monitor/job/jobLog.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/monitor/logininfor/logininfor.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/monitor/online/online.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/monitor/operlog/detail.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/monitor/operlog/operlog.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/system/config/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html>
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/config/config.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="gray-bg">

+ 1 - 1
src/main/resources/templates/system/config/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html>
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/dept/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 2 - 1
src/main/resources/templates/system/dept/dept.html

@@ -1,5 +1,6 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
+	  xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="gray-bg">

+ 1 - 1
src/main/resources/templates/system/dept/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/dept/tree.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css" th:href="@{/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/dict/data/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/dict/data/data.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/system/dict/data/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/menu/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/iCheck/custom.css" th:href="@{/ajax/libs/iCheck/custom.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/menu/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/iCheck/custom.css" th:href="@{/ajax/libs/iCheck/custom.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/menu/icon.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="en">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <head>
     <meta charset="UTF-8">
     <title>Font Awesome Ico list</title>

+ 1 - 1
src/main/resources/templates/system/menu/menu.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="gray-bg">

+ 1 - 1
src/main/resources/templates/system/menu/tree.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css" th:href="@{/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/post/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/post/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/post/post.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/system/role/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css" th:href="@{/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/role/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css" th:href="@{/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/role/role.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 1
src/main/resources/templates/system/user/add.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/iCheck/custom.css" th:href="@{/ajax/libs/iCheck/custom.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/user/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/iCheck/custom.css" th:href="@{/ajax/libs/iCheck/custom.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/user/profile/avatar.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <title>用户头像修改</title>
 <link href="/ajax/libs/cropbox/cropbox.css" th:href="@{/ajax/libs/cropbox/cropbox.css}" rel="stylesheet"/>

+ 1 - 1
src/main/resources/templates/system/user/profile/edit.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/user/profile/profile.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html>
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">

+ 1 - 1
src/main/resources/templates/system/user/profile/resetPwd.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/user/resetPwd.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html xmlns:th="http://www.w3.org/1999/xhtml">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 1 - 1
src/main/resources/templates/system/user/user.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
+<html lang="zh" xmlns:th="http://www.thymeleaf.org"
 	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>

+ 1 - 2
src/main/resources/templates/tool/build/build.html

@@ -1,6 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
-	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <link href="/ajax/libs/iCheck/custom.css" th:href="@{/ajax/libs/iCheck/custom.css}" rel="stylesheet"/>

+ 1 - 2
src/main/resources/templates/tool/gen/gen.html

@@ -1,6 +1,5 @@
 <!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
-	xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="gray-bg">

+ 2 - 2
src/main/resources/templates/vm/html/add.html.vm

@@ -1,5 +1,5 @@
-<!DOCTYPE html>
-<html>
+<!DOCTYPE HTML>
+<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 2 - 2
src/main/resources/templates/vm/html/edit.html.vm

@@ -1,5 +1,5 @@
-<!DOCTYPE html>
-<html>
+<!DOCTYPE HTML>
+<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="white-bg">

+ 2 - 2
src/main/resources/templates/vm/html/list.html.vm

@@ -1,5 +1,5 @@
-<!DOCTYPE html>
-<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
+<!DOCTYPE HTML>
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <meta charset="utf-8">
 <head th:include="include :: header"></head>
 <body class="gray-bg">