Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform-ui
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform-ui
Commits
fc50c436
Commit
fc50c436
authored
Nov 12, 2019
by
hanfeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
屏蔽车辆信息下载
parent
2ee1058f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
5 deletions
+23
-5
index.js
src/api/admin/userManagement/index.js
+12
-1
index.vue
src/views/userManagement/userList/index.vue
+11
-4
No files found.
src/api/admin/userManagement/index.js
View file @
fc50c436
...
...
@@ -149,3 +149,14 @@ export function username(id) {
method
:
'get'
});
}
/**
* 用户详情
* @param obj
*/
export
function
getOne
(
id
)
{
return
fetch
({
url
:
'/api/admin/appUsersManage/user_info/'
+
id
,
method
:
'get'
,
});
}
src/views/userManagement/userList/index.vue
View file @
fc50c436
...
...
@@ -533,7 +533,8 @@
setDisable
,
setAvailable
,
deleteUser
,
userPosition
userPosition
,
getOne
}
from
'src/api/admin/userManagement/index'
;
import
{
getToken
}
from
'src/utils/auth'
;
import
{
mapGetters
}
from
'vuex'
;
...
...
@@ -1103,9 +1104,12 @@
* @param row
*/
viewDetails
(
row
)
{
this
.
userDetails
=
row
getOne
(
row
.
userId
).
then
(
res
=>
{
this
.
userDetails
=
res
.
data
this
.
detailsDialogFormVisible
=
true
this
.
getBoolean
(
this
.
userDetails
.
certificationStatus
)
})
}
,
/**
...
...
@@ -1433,9 +1437,12 @@
this
.
listQuery
.
registrationTimeEnd
=
undefined
this
.
listQuery
.
registrationTimeBegin
=
undefined
this
.
listQuery
.
postionState
=
undefined
this
.
listQuery
.
realName
=
undefined
if
(
this
.
listQuery
){
localStorage
.
setItem
(
"userList"
,
JSON
.
stringify
(
this
.
listQuery
));
}
this
.
getList
();
},
change
()
{
this
.
$forceUpdate
()
...
...
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