Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fgqyxxlr
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yaru
fgqyxxlr
Commits
c4e18cbf
Commit
c4e18cbf
authored
May 27, 2018
by
若依
Browse files
Options
Browse Files
Download
Plain Diff
!4 用户列表增加部门列和前端全部更改了thymeleaf解析
Merge pull request !4 from yangzhengze/master
parents
dca60ce4
faf83c61
Show whitespace changes
Inline
Side-by-side
Showing
51 changed files
with
62 additions
and
59 deletions
+62
-59
src/main/resources/application.yml
+1
-1
src/main/resources/mybatis/system/UserMapper.xml
+5
-4
src/main/resources/static/ruoyi/system/user/user.js
+4
-0
src/main/resources/templates/error/404.html
+1
-1
src/main/resources/templates/error/500.html
+1
-1
src/main/resources/templates/error/unauth.html
+1
-1
src/main/resources/templates/index.html
+1
-1
src/main/resources/templates/login.html
+1
-2
src/main/resources/templates/main.html
+1
-1
src/main/resources/templates/monitor/job/add.html
+1
-1
src/main/resources/templates/monitor/job/edit.html
+1
-1
src/main/resources/templates/monitor/job/job.html
+1
-1
src/main/resources/templates/monitor/job/jobLog.html
+1
-1
src/main/resources/templates/monitor/logininfor/logininfor.html
+1
-1
src/main/resources/templates/monitor/online/online.html
+1
-1
src/main/resources/templates/monitor/operlog/detail.html
+1
-1
src/main/resources/templates/monitor/operlog/operlog.html
+1
-1
src/main/resources/templates/system/config/add.html
+1
-1
src/main/resources/templates/system/config/config.html
+1
-1
src/main/resources/templates/system/config/edit.html
+1
-1
src/main/resources/templates/system/dept/add.html
+1
-1
src/main/resources/templates/system/dept/dept.html
+2
-1
src/main/resources/templates/system/dept/edit.html
+1
-1
src/main/resources/templates/system/dept/tree.html
+1
-1
src/main/resources/templates/system/dict/data/add.html
+1
-1
src/main/resources/templates/system/dict/data/data.html
+1
-1
src/main/resources/templates/system/dict/data/edit.html
+1
-1
src/main/resources/templates/system/menu/add.html
+1
-1
src/main/resources/templates/system/menu/edit.html
+1
-1
src/main/resources/templates/system/menu/icon.html
+1
-1
src/main/resources/templates/system/menu/menu.html
+1
-1
src/main/resources/templates/system/menu/tree.html
+1
-1
src/main/resources/templates/system/post/add.html
+1
-1
src/main/resources/templates/system/post/edit.html
+1
-1
src/main/resources/templates/system/post/post.html
+1
-1
src/main/resources/templates/system/role/add.html
+1
-1
src/main/resources/templates/system/role/edit.html
+1
-1
src/main/resources/templates/system/role/role.html
+1
-1
src/main/resources/templates/system/user/add.html
+1
-1
src/main/resources/templates/system/user/edit.html
+1
-1
src/main/resources/templates/system/user/profile/avatar.html
+1
-1
src/main/resources/templates/system/user/profile/edit.html
+1
-1
src/main/resources/templates/system/user/profile/profile.html
+1
-1
src/main/resources/templates/system/user/profile/resetPwd.html
+1
-1
src/main/resources/templates/system/user/resetPwd.html
+1
-1
src/main/resources/templates/system/user/user.html
+1
-1
src/main/resources/templates/tool/build/build.html
+1
-2
src/main/resources/templates/tool/gen/gen.html
+1
-2
src/main/resources/templates/vm/html/add.html.vm
+2
-2
src/main/resources/templates/vm/html/edit.html.vm
+2
-2
src/main/resources/templates/vm/html/list.html.vm
+2
-2
No files found.
src/main/resources/application.yml
View file @
c4e18cbf
...
...
@@ -25,7 +25,7 @@ user:
#Spring配置
spring
:
thymeleaf
:
mode
:
LEGACYHTML5
mode
:
HTML
cache
:
false
messages
:
#国际化资源文件路径
...
...
src/main/resources/mybatis/system/UserMapper.xml
View file @
c4e18cbf
...
...
@@ -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>
...
...
src/main/resources/static/ruoyi/system/user/user.js
View file @
c4e18cbf
...
...
@@ -24,6 +24,10 @@ function queryUserList() {
title
:
'用户名称'
},
{
field
:
'dept.deptName'
,
title
:
'部门'
},
{
field
:
'email'
,
title
:
'邮箱'
},
...
...
src/main/resources/templates/error/404.html
View file @
c4e18cbf
<!DOCTYPE html>
<html>
<html
lang=
"zh"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
...
...
src/main/resources/templates/error/500.html
View file @
c4e18cbf
<!DOCTYPE html>
<html>
<html
lang=
"zh"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
...
...
src/main/resources/templates/error/unauth.html
View file @
c4e18cbf
<!DOCTYPE html>
<html>
<html
lang=
"zh"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
...
...
src/main/resources/templates/index.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/login.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/main.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/monitor/job/add.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/monitor/job/edit.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/monitor/job/job.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/monitor/job/jobLog.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/monitor/logininfor/logininfor.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/monitor/online/online.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/monitor/operlog/detail.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/monitor/operlog/operlog.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/system/config/add.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/config/config.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/config/edit.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/dept/add.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/dept/dept.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/dept/edit.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/dept/tree.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/dict/data/add.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/dict/data/data.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/system/dict/data/edit.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/menu/add.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/menu/edit.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/menu/icon.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/system/menu/menu.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/menu/tree.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/post/add.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/post/edit.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/post/post.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/system/role/add.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/role/edit.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/role/role.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/system/user/add.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/user/edit.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/user/profile/avatar.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/system/user/profile/edit.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/user/profile/profile.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/user/profile/resetPwd.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/user/resetPwd.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/system/user/user.html
View file @
c4e18cbf
<!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>
...
...
src/main/resources/templates/tool/build/build.html
View file @
c4e18cbf
<!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"
/>
...
...
src/main/resources/templates/tool/gen/gen.html
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/vm/html/add.html.vm
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/vm/html/edit.html.vm
View file @
c4e18cbf
<!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"
>
...
...
src/main/resources/templates/vm/html/list.html.vm
View file @
c4e18cbf
<!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"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment