Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
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
liyang
sts网站
Commits
654aa6b3
Commit
654aa6b3
authored
Jan 06, 2021
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
表格右侧工具栏组件支持显隐列
parent
9bd35cb7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
15 deletions
+65
-15
index.vue
ruoyi-ui/src/components/FileUpload/index.vue
+1
-0
index.vue
ruoyi-ui/src/components/RightToolbar/index.vue
+46
-4
global.js
ruoyi-ui/src/layout/components/global.js
+0
-3
index.vue
ruoyi-ui/src/views/system/user/index.vue
+18
-8
No files found.
ruoyi-ui/src/components/FileUpload/index.vue
View file @
654aa6b3
...
@@ -90,6 +90,7 @@ export default {
...
@@ -90,6 +90,7 @@ export default {
return
item
;
return
item
;
});
});
}
else
{
}
else
{
this
.
fileList
=
[];
return
[];
return
[];
}
}
},
},
...
...
ruoyi-ui/src/components/RightToolbar/index.vue
View file @
654aa6b3
<!-- @author Shiyn/ huangmx 20200807优化-->
<
template
>
<
template
>
<div
class=
"top-right-btn"
>
<div
class=
"top-right-btn"
>
<el-row>
<el-row>
...
@@ -8,31 +7,74 @@
...
@@ -8,31 +7,74 @@
<el-tooltip
class=
"item"
effect=
"dark"
content=
"刷新"
placement=
"top"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"刷新"
placement=
"top"
>
<el-button
size=
"mini"
circle
icon=
"el-icon-refresh"
@
click=
"refresh()"
/>
<el-button
size=
"mini"
circle
icon=
"el-icon-refresh"
@
click=
"refresh()"
/>
</el-tooltip>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"显隐列"
placement=
"top"
v-if=
"columns"
>
<el-button
size=
"mini"
circle
icon=
"el-icon-menu"
@
click=
"showColumn()"
/>
</el-tooltip>
</el-row>
</el-row>
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
append-to-body
>
<el-transfer
:titles=
"['显示', '隐藏']"
v-model=
"value"
:data=
"columns"
@
change=
"dataChange"
></el-transfer>
</el-dialog>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
name
:
"RightToolbar"
,
name
:
"RightToolbar"
,
data
()
{
data
()
{
return
{};
return
{
// 显隐数据
value
:
[],
// 弹出层标题
title
:
"显示/隐藏"
,
// 是否显示弹出层
open
:
false
,
};
},
},
props
:
{
props
:
{
showSearch
:
{
showSearch
:
{
type
:
Boolean
,
type
:
Boolean
,
default
:
true
,
default
:
true
,
},
},
columns
:
{
type
:
Array
,
},
},
},
methods
:
{
methods
:
{
//搜索
//
搜索
toggleSearch
()
{
toggleSearch
()
{
this
.
$emit
(
"update:showSearch"
,
!
this
.
showSearch
);
this
.
$emit
(
"update:showSearch"
,
!
this
.
showSearch
);
},
},
//刷新
//
刷新
refresh
()
{
refresh
()
{
this
.
$emit
(
"queryTable"
);
this
.
$emit
(
"queryTable"
);
},
},
// 右侧列表元素变化
dataChange
(
data
)
{
for
(
var
item
in
this
.
columns
)
{
const
key
=
this
.
columns
[
item
].
key
;
this
.
columns
[
item
].
visible
=
!
data
.
includes
(
key
);
}
},
// 打开显隐列dialog
showColumn
()
{
this
.
open
=
true
;
},
},
},
};
};
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
::v-deep
.el-transfer__button
{
border-radius
:
50%
;
padding
:
12px
;
display
:
block
;
margin-left
:
0px
;
}
::v-deep
.el-transfer__button
:first-child
{
margin-bottom
:
10px
;
}
</
style
>
ruoyi-ui/src/layout/components/global.js
deleted
100644 → 0
View file @
9bd35cb7
import
Vue
from
'vue'
const
global
=
new
Vue
()
export
default
global
ruoyi-ui/src/views/system/user/index.vue
View file @
654aa6b3
...
@@ -135,17 +135,17 @@
...
@@ -135,17 +135,17 @@
v-hasPermi=
"['system:user:export']"
v-hasPermi=
"['system:user:export']"
>
导出
</el-button>
>
导出
</el-button>
</el-col>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
:columns=
"columns"
></right-toolbar>
</el-row>
</el-row>
<el-table
v-loading=
"loading"
:data=
"userList"
@
selection-change=
"handleSelectionChange"
>
<el-table
v-loading=
"loading"
:data=
"userList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"50"
align=
"center"
/>
<el-table-column
type=
"selection"
width=
"50"
align=
"center"
/>
<el-table-column
label=
"用户编号"
align=
"center"
prop=
"userId"
/>
<el-table-column
label=
"用户编号"
align=
"center"
prop=
"userId"
v-if=
"columns[0].visible"
/>
<el-table-column
label=
"用户名称"
align=
"center"
prop=
"userName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"用户名称"
align=
"center"
prop=
"userName"
v-if=
"columns[1].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"用户昵称"
align=
"center"
prop=
"nickName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"用户昵称"
align=
"center"
prop=
"nickName"
v-if=
"columns[2].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"部门"
align=
"center"
prop=
"dept.deptName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"部门"
align=
"center"
prop=
"dept.deptName"
v-if=
"columns[3].visible"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"手机号码"
align=
"center"
prop=
"phonenumber"
width=
"120"
/>
<el-table-column
label=
"手机号码"
align=
"center"
prop=
"phonenumber"
v-if=
"columns[4].visible"
width=
"120"
/>
<el-table-column
label=
"状态"
align=
"center"
>
<el-table-column
label=
"状态"
align=
"center"
v-if=
"columns[5].visible"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<el-switch
<el-switch
v-model=
"scope.row.status"
v-model=
"scope.row.status"
...
@@ -155,7 +155,7 @@
...
@@ -155,7 +155,7 @@
></el-switch>
></el-switch>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
width=
"160"
>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
v-if=
"columns[6].visible"
width=
"160"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
</
template
>
</
template
>
...
@@ -418,6 +418,16 @@ export default {
...
@@ -418,6 +418,16 @@ export default {
status
:
undefined
,
status
:
undefined
,
deptId
:
undefined
deptId
:
undefined
},
},
// 列信息
columns
:
[
{
key
:
0
,
label
:
`用户编号`
,
visible
:
true
},
{
key
:
1
,
label
:
`用户名称`
,
visible
:
true
},
{
key
:
2
,
label
:
`用户昵称`
,
visible
:
true
},
{
key
:
3
,
label
:
`部门`
,
visible
:
true
},
{
key
:
4
,
label
:
`手机号码`
,
visible
:
true
},
{
key
:
5
,
label
:
`状态`
,
visible
:
true
},
{
key
:
6
,
label
:
`创建时间`
,
visible
:
true
}
],
// 表单校验
// 表单校验
rules
:
{
rules
:
{
userName
:
[
userName
:
[
...
...
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