Merge pull request 'fix : 修复角色分配用户单个添加时报错' (#129) from dd into master
Reviewed-on: http://git.feashow.cn/feashow/SmartOpsWeb/pulls/129
This commit is contained in:
@@ -320,9 +320,15 @@ const handleDialogSelect = (selection) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
const handleSubmit = (userIds) => {
|
const handleSubmit = (userIds) => {
|
||||||
|
let ids=[]
|
||||||
|
if(userIds instanceof Array){
|
||||||
|
ids=userIds
|
||||||
|
}else{
|
||||||
|
ids.push(userIds)
|
||||||
|
}
|
||||||
roleBindUser({
|
roleBindUser({
|
||||||
id: roleId,
|
id: roleId,
|
||||||
ids: userIds,
|
ids: ids,
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code === 1000) {
|
if (res.code === 1000) {
|
||||||
ElMessage.success(res.msg);
|
ElMessage.success(res.msg);
|
||||||
|
|||||||
Reference in New Issue
Block a user