Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CivManage
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
ReactWeb5
CivManage
Commits
fa457b9e
Commit
fa457b9e
authored
Nov 22, 2020
by
陈前坚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf: 用户管理优化
parent
7ef8e4bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
20 deletions
+36
-20
UserManage.js
src/pages/userCenter/UserManage.js
+28
-17
UserManage.less
src/pages/userCenter/UserManage.less
+8
-3
No files found.
src/pages/userCenter/UserManage.js
View file @
fa457b9e
...
...
@@ -290,8 +290,8 @@ const UserManage = () => {
console
.
log
(
selectedRows
.
map
(
item
=>
item
.
OUID
).
toString
());
setUserIDs
(
selectedRowKeys
.
toString
());
// 数组转字符串,逗号连接
setOrgIDs
(
selectedRows
.
map
(
item
=>
item
.
OUID
).
toString
());
// 选中行数大于
1
时设置批量操作可行
if
(
selectedRows
.
length
>
1
)
{
// 选中行数大于
0
时设置批量操作可行
if
(
selectedRows
.
length
>
0
)
{
setMultiOperate
(
false
);
setMultiOperateButtonType
(
'primary'
);
}
else
{
...
...
@@ -533,6 +533,8 @@ const UserManage = () => {
getUserByKey
(
searchWord
)
.
then
(
res
=>
{
if
(
res
.
success
)
{
setOrgTitle
(
'搜索结果'
);
// 设置表头
setCurrentSelectOrg
([]);
// 清空机构时选中机构
setTableData
(
res
.
root
);
setTableLength
(
res
.
root
.
length
);
}
else
{
...
...
@@ -871,15 +873,12 @@ const UserManage = () => {
const
newPassword
=
passwordForm
.
getFieldValue
(
'newPassword'
);
const
passwordConfirm
=
passwordForm
.
getFieldValue
(
'passwordConfirm'
);
if
(
(
newPassword
&&
newPassword
.
length
<
6
)
||
(
passwordConfirm
&&
passwordConfirm
<
6
)
newPassword
&&
newPassword
.
length
>=
6
&&
passwordConfirm
&&
newPassword
.
length
>=
6
&&
newPassword
===
passwordConfirm
)
{
notification
.
error
({
message
:
'提交失败'
,
description
:
'密码至少为6位!'
,
});
}
if
(
newPassword
&&
passwordConfirm
&&
newPassword
===
passwordConfirm
)
{
updateUserPassword
(
currentUser
.
userID
,
password
,
...
...
@@ -908,7 +907,15 @@ const UserManage = () => {
message
:
'提交失败'
,
description
:
'带*号为必填项,不能为空'
,
});
}
else
{
}
else
if
(
(
newPassword
&&
newPassword
.
length
<
6
)
||
(
passwordConfirm
&&
passwordConfirm
<
6
)
)
{
notification
.
error
({
message
:
'提交失败'
,
description
:
'密码至少为6位!'
,
});
}
else
if
(
newPassword
!==
passwordConfirm
)
{
notification
.
error
({
message
:
'提交失败'
,
description
:
'确认密码不一致!'
,
...
...
@@ -1078,13 +1085,13 @@ const UserManage = () => {
<
/Menu.Item
>
<
hr
/>
<
Menu
.
Item
key
=
"2"
onClick
=
{
addSubOrg
}
icon
=
{
<
UsergroupAddOutlined
/>
}
>
添加机构
添加
下级
机构
<
/Menu.Item
>
<
Menu
.
Item
key
=
"3"
onClick
=
{
editOrg
}
icon
=
{
<
EditOutlined
/>
}
>
编辑机构
编辑
当前
机构
<
/Menu.Item
>
<
Menu
.
Item
key
=
"4"
onClick
=
{
deleteOrg
}
icon
=
{
<
DeleteOutlined
/>
}
>
删除机构
删除
当前
机构
<
/Menu.Item
>
<
/Menu
>
);
...
...
@@ -1139,7 +1146,6 @@ const UserManage = () => {
/
>
)}
<
/div
>
<
div
className
=
{
styles
.
switcher
}
>
{
treeVisible
&&
(
<
Tooltip
title
=
"隐藏机构列表"
>
...
...
@@ -1156,7 +1162,12 @@ const UserManage = () => {
<
/Spin
>
{
/* 右侧用户表 */
}
<
div
className
=
{
styles
.
userContainer
}
>
<
div
className
=
{
classnames
({
[
styles
.
userContainer
]:
true
,
[
styles
.
userContainerHide
]:
!
treeVisible
,
})}
>
<
div
style
=
{{
height
:
'50px'
}}
>
<
p
style
=
{{
margin
:
'16px 0 10px 16px'
,
display
:
'inline-block'
}}
>
{
orgTitle
}
(共
{
tableLength
}
人)
...
...
@@ -1172,7 +1183,7 @@ const UserManage = () => {
/
>
<
Dropdown
overlay
=
{
orgButtonMenu
}
>
<
Button
type
=
"primary"
>
机构操作
<
DownOutlined
/>
当前
机构操作
<
DownOutlined
/>
<
/Button
>
<
/Dropdown
>
<
Dropdown
overlay
=
{
userButtonMenu
}
disabled
=
{
multiOperate
}
>
...
...
src/pages/userCenter/UserManage.less
View file @
fa457b9e
...
...
@@ -91,7 +91,8 @@
background: white;
overflow: auto;
margin-right:10px;
transform: translateX(0px);
margin-left:0px;
transform: translateX(1px);
transition: transform 0.5s;
.ant-tree{
padding-top: 6px;
...
...
@@ -115,12 +116,16 @@
.orgContainerHide{
transform: translateX(-230px);
}
.userContainerHide{
transform: translateX(-230px);
margin-right: -230px;
}
.userContainer{
height: calc(100vh - 74px) !important;
flex: 1;
min-width:
76
0px;
min-width:
80
0px;
background: white;
transition: transform 0.5s;
.ant-table-pagination{
padding-right: 12px;
background: white;
...
...
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