Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
0082ed04
Commit
0082ed04
authored
Oct 31, 2018
by
fengshuonan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除没用的
parent
eaaa1499
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
533 deletions
+0
-533
src/main/webapp/assets/modular/system/dept/dept.html
+0
-38
src/main/webapp/assets/modular/system/dept/dept_add.html
+0
-42
src/main/webapp/assets/modular/system/dept/dept_edit.html
+0
-43
src/main/webapp/assets/modular/system/user/user.html
+0
-99
src/main/webapp/assets/modular/system/user/user_add.html
+0
-63
src/main/webapp/assets/modular/system/user/user_chpwd.html
+0
-34
src/main/webapp/assets/modular/system/user/user_edit.html
+0
-60
src/main/webapp/assets/modular/system/user/user_roleassign.html
+0
-79
src/main/webapp/assets/modular/system/user/user_view.html
+0
-75
No files found.
src/main/webapp/assets/modular/system/dept/dept.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-title"
>
<h5>
部门管理
</h5>
</div>
<div
class=
"ibox-content"
>
<div
class=
"row row-lg"
>
<div
class=
"col-sm-12"
>
<div
class=
"row"
>
<div
class=
"col-sm-3"
>
<
#
NameCon
id=
"condition"
name=
"名称"
/>
</div>
<div
class=
"col-sm-3"
>
<
#
button
name=
"搜索"
icon=
"fa-search"
clickFun=
"Dept.search()"
/>
</div>
</div>
<div
class=
"hidden-xs"
id=
"DeptTableToolbar"
role=
"group"
>
@if(shiro.hasPermission("/dept/add")){
<
#
button
name=
"添加"
icon=
"fa-plus"
clickFun=
"Dept.openAddDept()"
/>
@}
@if(shiro.hasPermission("/dept/update")){
<
#
button
name=
"修改"
icon=
"fa-plus"
clickFun=
"Dept.openDeptDetail()"
space=
"true"
/>
@}
@if(shiro.hasPermission("/dept/delete")){
<
#
button
name=
"删除"
icon=
"fa-plus"
clickFun=
"Dept.delete()"
space=
"true"
/>
@}
</div>
<
#
table
id=
"DeptTable"
/>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"${ctxPath}/static/modular/system/dept/dept.js"
></script>
@}
src/main/webapp/assets/modular/system/dept/dept_add.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-content"
>
<div
class=
"form-horizontal"
id=
"deptInfoForm"
>
<input
type=
"hidden"
id=
"id"
value=
""
>
<div
class=
"row"
>
<div
class=
"col-sm-6 b-r"
>
<
#
input
id=
"simplename"
name=
"部门名称"
underline=
"true"
/>
<
#
input
id=
"fullname"
name=
"部门全称"
underline=
"true"
/>
<
#
input
id=
"tips"
name=
"备注"
underline=
"true"
/>
</div>
<div
class=
"col-sm-6"
>
<
#
input
id=
"num"
name=
"排序"
underline=
"true"
/>
<
#
input
id=
"pName"
name=
"上级部门"
readonly=
"readonly"
hidden=
"pid"
clickFun=
"DeptInfoDlg.showDeptSelectTree(); return false;"
style=
"background-color: #ffffff !important;"
/>
</div>
</div>
<!-- 父级部门的选择框 -->
<div
id=
"parentDeptMenu"
class=
"menuContent"
style=
"display: none; position: absolute; z-index: 200;"
>
<ul
id=
"parentDeptMenuTree"
class=
"ztree tree-box"
style=
"width: 245px !important;"
></ul>
</div>
<div
class=
"row btn-group-m-t"
>
<div
class=
"col-sm-10"
>
<
#
button
btnCss=
"info"
name=
"提交"
id=
"ensure"
icon=
"fa-check"
clickFun=
"DeptInfoDlg.addSubmit()"
/>
<
#
button
btnCss=
"danger"
name=
"取消"
id=
"cancel"
icon=
"fa-eraser"
clickFun=
"DeptInfoDlg.close()"
/>
</div>
</div>
</div>
</div>
</div>
<script
src=
"${ctxPath}/static/modular/system/dept/dept_info.js"
></script>
@}
src/main/webapp/assets/modular/system/dept/dept_edit.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-content"
>
<div
class=
"form-horizontal"
id=
"deptInfoForm"
>
<input
type=
"hidden"
id=
"id"
value=
"${dept.id}"
>
<div
class=
"row"
>
<div
class=
"col-sm-6 b-r"
>
<
#
input
id=
"simplename"
name=
"部门名称"
underline=
"true"
value=
"${dept.simplename}"
/>
<
#
input
id=
"fullname"
name=
"部门全称"
underline=
"true"
value=
"${dept.fullname}"
/>
<
#
input
id=
"tips"
name=
"备注"
underline=
"true"
value=
"${dept.tips}"
/>
</div>
<div
class=
"col-sm-6"
>
<
#
input
id=
"num"
name=
"排序"
underline=
"true"
value=
"${dept.num}"
/>
<
#
input
id=
"pName"
name=
"上级部门"
readonly=
"readonly"
hidden=
"pid"
hiddenValue=
"${dept.pid}"
value=
"${pName}"
clickFun=
"DeptInfoDlg.showDeptSelectTree(); return false;"
style=
"background-color: #ffffff !important;"
/>
</div>
</div>
<!-- 父级部门的选择框 -->
<div
id=
"parentDeptMenu"
class=
"menuContent"
style=
"display: none; position: absolute; z-index: 200;"
>
<ul
id=
"parentDeptMenuTree"
class=
"ztree tree-box"
style=
"width: 245px !important;"
></ul>
</div>
<div
class=
"row btn-group-m-t"
>
<div
class=
"col-sm-10"
>
<
#
button
btnCss=
"info"
name=
"提交"
id=
"ensure"
icon=
"fa-check"
clickFun=
"DeptInfoDlg.editSubmit()"
/>
<
#
button
btnCss=
"danger"
name=
"取消"
id=
"cancel"
icon=
"fa-eraser"
clickFun=
"DeptInfoDlg.close()"
/>
</div>
</div>
</div>
</div>
</div>
<script
src=
"${ctxPath}/static/modular/system/dept/dept_info.js"
></script>
@}
src/main/webapp/assets/modular/system/user/user.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html",{title:"用户管理",plugins:["table"]}){
<div
class=
"row"
>
<div
class=
"col-lg-12"
>
<div
class=
"card card-outline-info"
>
<div
class=
"card-block"
>
<div
class=
"form-horizontal"
>
<div
class=
"form-body"
>
<h4
class=
"card-title"
>
查询条件
</h4>
<hr>
<div
class=
"row"
>
<div
class=
"col-md-3"
>
<div
class=
"input-group"
>
<span
class=
"input-group-addon"
>
用户名称
</span>
<input
type=
"text"
class=
"form-control"
id=
"name"
placeholder=
"账号/姓名/手机号"
>
</div>
</div>
<div
class=
"col-md-3"
>
<div
class=
"input-group"
>
<span
class=
"input-group-addon"
>
注册日期
</span>
<input
type=
"text"
class=
"form-control"
id=
"timeLimit"
placeholder=
"注册日期"
>
</div>
</div>
<div
class=
"col-md-3"
>
<div
class=
"form-group row"
>
<div
class=
"input-group-btn condition-button"
>
<button
type=
"button"
id=
"check-minutes"
class=
"btn waves-effect waves-light btn-info condition-button-width"
>
查询
</button>
</div>
</div>
</div>
</div>
</div>
<div
class=
"form-actions"
>
<h4
class=
"card-title"
>
查询结果
</h4>
<hr>
<div
class=
"row"
>
<div
class=
"col-md-6"
>
<div
class=
"row"
>
<div
class=
"col-md-offset-3 col-md-9"
>
<button
type=
"submit"
class=
"btn btn-success"
>
Submit
</button>
<button
type=
"button"
class=
"btn btn-inverse"
>
Cancel
</button>
</div>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-lg-12"
>
<div
class=
"card"
>
<table
data-toggle=
"table"
data-height=
"250"
data-mobile-responsive=
"true"
class=
"table-striped"
>
<thead>
<tr>
<th>
Name
</th>
<th>
Stars
</th>
<th>
Forks
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
<tr
id=
"tr-id-1"
class=
"tr-class-1"
>
<td
id=
"td-id-1"
class=
"td-class-1"
>
bootstrap-table
</td>
<td>
526
</td>
<td>
122
</td>
<td>
An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features. (supports twitter bootstrap v2 and v3)
</td>
</tr>
<tr
id=
"tr-id-2"
class=
"tr-class-2"
>
<td
id=
"td-id-2"
class=
"td-class-2"
>
multiple-select
</td>
<td>
288
</td>
<td>
150
</td>
<td>
A jQuery plugin to select multiple elements with checkboxes :)
</td>
</tr>
<tr
id=
"tr-id-3"
class=
"tr-class-3"
>
<td
id=
"td-id-3"
class=
"td-class-3"
>
bootstrap-show-password
</td>
<td>
32
</td>
<td>
11
</td>
<td>
Show/hide password plugin for twitter bootstrap.
</td>
</tr>
<tr
id=
"tr-id-4"
class=
"tr-class-4"
>
<td
id=
"td-id-4"
class=
"td-class-4"
>
blog
</td>
<td>
13
</td>
<td>
4
</td>
<td>
my blog
</td>
</tr>
<tr
id=
"tr-id-5"
class=
"tr-class-5"
>
<td
id=
"td-id-5"
class=
"td-class-5"
>
scutech-redmine
<td>
6
</td>
<td>
3
</td>
<td>
Redmine notification tools for chrome extension.
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@}
src/main/webapp/assets/modular/system/user/user_add.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-content"
>
<div
class=
"form-horizontal"
id=
"userInfoForm"
>
<input
type=
"hidden"
id=
"id"
value=
""
>
<div
class=
"row"
>
<div
class=
"col-sm-6 b-r"
>
<
#
input
id=
"account"
name=
"账户"
underline=
"true"
/>
<
#
select
id=
"sex"
name=
"性别"
underline=
"true"
>
<option
value=
"1"
>
男
</option>
<option
value=
"2"
>
女
</option>
</
#
select>
<
#
input
id=
"password"
name=
"密码"
underline=
"true"
type=
"password"
/>
<
#
input
id=
"roleid"
name=
"角色"
underline=
"true"
disabled=
"disabled"
/>
<
#
input
id=
"email"
name=
"邮箱"
type=
"email"
/>
</div>
<div
class=
"col-sm-6"
>
<div
id=
"driverInfoContent"
>
<
#
input
id=
"name"
name=
"姓名"
underline=
"true"
/>
<
#
input
id=
"birthday"
name=
"出生日期"
underline=
"true"
type=
"text"
/>
<
#
input
id=
"rePassword"
name=
"确认密码"
type=
"password"
underline=
"true"
/>
<
#
input
id=
"citySel"
name=
"部门"
underline=
"true"
readonly=
"readonly"
hidden=
"deptid"
clickFun=
"UserInfoDlg.showDeptSelectTree(); return false;"
style=
"background-color: #ffffff !important;"
/>
<
#
input
id=
"phone"
name=
"电话"
/>
</div>
</div>
</div>
<!-- 这是部门选择的下拉框 -->
<div
id=
"menuContent"
class=
"menuContent"
style=
"display: none; position: absolute; z-index: 200;"
>
<ul
id=
"treeDemo"
class=
"ztree tree-box"
style=
"width: 249px !important;"
></ul>
</div>
<div
class=
"row btn-group-m-t"
>
<div
class=
"col-sm-10"
>
<
#
button
btnCss=
"info"
name=
"提交"
id=
"ensure"
icon=
"fa-check"
clickFun=
"UserInfoDlg.addSubmit()"
/>
<
#
button
btnCss=
"danger"
name=
"取消"
id=
"cancel"
icon=
"fa-eraser"
clickFun=
"UserInfoDlg.close()"
/>
</div>
</div>
</div>
</div>
</div>
<script
src=
"${ctxPath}/static/modular/system/user/user_info.js"
></script>
<script>
laydate
.
render
({
elem
:
'#birthday'
});
</script>
@}
src/main/webapp/assets/modular/system/user/user_chpwd.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<div
class=
"col-sm-4 col-sm-offset-4"
>
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-title"
>
<h5>
修改密码
</h5>
</div>
<div
class=
"ibox-content"
>
<div
class=
"row row-lg"
>
<div
class=
"col-sm-12"
>
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-content"
style=
"border:none !important; "
>
<div
class=
"form-horizontal"
>
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<
#
input
id=
"oldPwd"
name=
"原密码"
underline=
"true"
type=
"password"
/>
<
#
input
id=
"newPwd"
name=
"新密码"
underline=
"true"
type=
"password"
/>
<
#
input
id=
"rePwd"
name=
"新密码验证"
type=
"password"
/>
</div>
</div>
<div
class=
"row btn-group-m-t"
>
<div
class=
"col-sm-10"
>
<
#
button
btnCss=
"info"
name=
"提交"
id=
"ensure"
icon=
"fa-check"
clickFun=
"UserInfoDlg.chPwd()"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"${ctxPath}/static/modular/system/user/user_info.js"
></script>
@}
src/main/webapp/assets/modular/system/user/user_edit.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-content"
>
<div
class=
"form-horizontal"
id=
"userInfoForm"
>
<input
type=
"hidden"
id=
"id"
value=
"${user.id}"
>
<input
type=
"hidden"
id=
"sexValue"
value=
"${user.sex}"
>
<div
class=
"row"
>
<div
class=
"col-sm-6 b-r"
>
<
#
input
id=
"account"
name=
"账户"
underline=
"true"
value=
"${user.account}"
/>
<
#
select
id=
"sex"
name=
"性别"
underline=
"true"
>
<option
value=
"1"
>
男
</option>
<option
value=
"2"
>
女
</option>
</
#
select>
<
#
input
id=
"roleid"
name=
"角色"
underline=
"true"
value=
"${roleName}"
disabled=
"disabled"
/>
<
#
input
id=
"email"
name=
"邮箱"
type=
"email"
value=
"${user.email}"
/>
</div>
<div
class=
"col-sm-6"
>
<div
id=
"driverInfoContent"
>
<
#
input
id=
"name"
name=
"姓名"
underline=
"true"
value=
"${user.name}"
/>
<
#
input
id=
"birthday"
name=
"出生日期"
underline=
"true"
type=
"text"
value=
"${user.birthday}"
/>
<
#
input
id=
"citySel"
name=
"部门"
underline=
"true"
readonly=
"readonly"
hidden=
"deptid"
hiddenValue=
"${user.deptid}"
value=
"${deptName}"
clickFun=
"UserInfoDlg.showDeptSelectTree(); return false;"
style=
"background-color: #ffffff !important;"
/>
<
#
input
id=
"phone"
name=
"电话"
value=
"${user.phone}"
/>
</div>
</div>
</div>
<!-- 这是部门选择的下拉框 -->
<div
id=
"menuContent"
class=
"menuContent"
style=
"display: none; position: absolute; z-index: 200;"
>
<ul
id=
"treeDemo"
class=
"ztree tree-box"
style=
"width: 249px !important;"
></ul>
</div>
<div
class=
"row btn-group-m-t"
>
<div
class=
"col-sm-10"
>
<
#
button
btnCss=
"info"
name=
"提交"
id=
"ensure"
icon=
"fa-check"
clickFun=
"UserInfoDlg.editSubmit()"
/>
<
#
button
btnCss=
"danger"
name=
"取消"
id=
"cancel"
icon=
"fa-eraser"
clickFun=
"UserInfoDlg.close()"
/>
</div>
</div>
</div>
</div>
</div>
<script
src=
"${ctxPath}/static/modular/system/user/user_info.js"
></script>
<script>
laydate
.
render
({
elem
:
'#birthday'
});
</script>
@}
src/main/webapp/assets/modular/system/user/user_roleassign.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<script
type=
"text/javascript"
>
$
(
function
()
{
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
//获取窗口索引
$
(
"#btn_close"
).
bind
(
"click"
,
function
()
{
parent
.
layer
.
close
(
index
);
});
$
(
"#btn_save"
).
bind
(
"click"
,
function
()
{
var
ids
=
Feng
.
zTreeCheckedNodes
(
"zTree"
);
var
ajax
=
new
$ax
(
Feng
.
ctxPath
+
"/mgr/setRole"
,
function
(
data
)
{
Feng
.
success
(
"分配角色成功!"
);
window
.
parent
.
MgrUser
.
table
.
refresh
();
parent
.
layer
.
close
(
index
);
},
function
(
data
)
{
Feng
.
error
(
"分配角色失败!"
+
data
.
responseJSON
.
message
+
"!"
);
});
ajax
.
set
(
"roleIds"
,
ids
);
ajax
.
set
(
"userId"
,
"${userId}"
);
ajax
.
start
();
});
initZtree
();
});
function
initZtree
()
{
var
setting
=
{
check
:
{
enable
:
true
,
chkboxType
:
{
"Y"
:
""
,
"N"
:
""
}
},
data
:
{
simpleData
:
{
enable
:
true
}
}
};
var
ztree
=
new
$ZTree
(
"zTree"
,
"/role/roleTreeListByUserId/${userId}"
);
ztree
.
setSettings
(
setting
);
ztree
.
init
();
}
</script>
<!-- 配置grid -->
<div
class=
"container"
style=
"padding: 0px 10px !important; margin-top: -10px; text-align: center !important;"
>
<div
class=
"row"
>
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-title"
>
<h5>
${userAccount!}
</h5>
</div>
<div
class=
"ibox-content"
>
<ul
id=
"zTree"
class=
"ztree"
></ul>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-md-12"
>
<button
class=
"btn btn-sm btn-info"
type=
"button"
id=
"btn_save"
>
<i
class=
"ace-icon fa fa-check bigger-110"
></i>
保存
</button>
<button
class=
"btn btn-sm btn-danger"
type=
"button"
id=
"btn_close"
>
<i
class=
"ace-icon fa fa-close bigger-110"
></i>
关闭
</button>
</div>
</div>
</div>
@}
src/main/webapp/assets/modular/system/user/user_view.html
deleted
100644 → 0
View file @
eaaa1499
@layout("/common/_container.html"){
<div
class=
"col-sm-6 col-sm-offset-3"
>
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-title"
>
<h5>
用户管理
</h5>
</div>
<div
class=
"ibox-content"
>
<div
class=
"row row-lg"
>
<div
class=
"col-sm-12"
>
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-content"
style=
"border:none !important; "
>
<div
class=
"form-horizontal"
id=
"userInfoForm"
>
<input
type=
"hidden"
id=
"id"
value=
"${user.id}"
>
<input
type=
"hidden"
id=
"sexValue"
value=
"${user.sex}"
>
<div
class=
"row"
>
<div
class=
"col-sm-6 b-r"
>
<
#
avatar
id=
"avatar"
name=
"头像"
underline=
"true"
avatarImg=
"${user.avatar}"
/>
<
#
input
id=
"account"
name=
"账户"
underline=
"true"
value=
"${user.account}"
disabled=
"disabled"
/>
<
#
select
id=
"sex"
name=
"性别"
underline=
"true"
value=
"${user.sex}"
>
<option
value=
"1"
>
男
</option>
<option
value=
"2"
>
女
</option>
</
#
select>
<
#
input
id=
"roleid"
name=
"角色"
underline=
"true"
value=
"${roleName}"
disabled=
"disabled"
/>
<
#
input
id=
"email"
name=
"邮箱"
type=
"email"
value=
"${user.email}"
/>
</div>
<div
class=
"col-sm-6"
>
<div
id=
"driverInfoContent"
>
<
#
input
id=
"name"
name=
"姓名"
underline=
"true"
value=
"${user.name}"
/>
<
#
input
id=
"birthday"
name=
"出生日期"
underline=
"true"
type=
"text"
value=
"${user.birthday}"
/>
<
#
input
id=
"citySel"
name=
"部门"
underline=
"true"
readonly=
"readonly"
value=
"${deptName}"
hidden=
"deptid"
hiddenValue=
"${user.deptid}"
clickFun=
"UserInfoDlg.showInfoDeptSelectTree(); return false;"
style=
"background-color: #ffffff !important;"
selectFlag=
"true"
selectId=
"menuContent"
selectTreeId=
"treeDemo"
selectStyle=
"width:250px !important;"
/>
<
#
input
id=
"phone"
name=
"电话"
value=
"${user.phone}"
/>
</div>
</div>
</div>
<div
class=
"progress progress-striped"
id=
"progressTipArea"
style=
"margin-top: 20px;"
>
<div
id=
"progressBar"
style=
"width: 0%"
aria-valuemax=
"100"
aria-valuemin=
"0"
aria-valuenow=
"0"
role=
"progressbar"
class=
"progress-bar progress-bar-info"
>
</div>
</div>
<div
class=
"row btn-group-m-t"
>
<div
class=
"col-sm-10"
>
<
#
button
btnCss=
"info"
name=
"提交"
id=
"ensure"
icon=
"fa-check"
clickFun=
"UserInfoDlg.editSubmit()"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"${ctxPath}/static/modular/system/user/user_info.js"
></script>
<script>
laydate
.
render
({
elem
:
'#birthday'
});
</script>
@}
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