Browse Source

人员信息查询

dev
巴林闲侠 2 years ago
parent
commit
9fc64e231d
  1. 2
      api/app/lib/controllers/organization/index.js

2
api/app/lib/controllers/organization/index.js

@ -53,7 +53,7 @@ async function editUser (ctx) {
) { ) {
// 正在修改为管理员 // 正在修改为管理员
storageData.disabled = true storageData.disabled = true
storageData.role = [...[existUserRes.role], ...role] storageData.role = [...new Set([...existUserRes.role, ...role])]
} else if (existUserRes.role.includes('admin')) { } else if (existUserRes.role.includes('admin')) {
// 正在修改成员 但是此时还是管理员 // 正在修改成员 但是此时还是管理员
storageData.role = [...role, 'admin'] storageData.role = [...role, 'admin']

Loading…
Cancel
Save