fix: 修复 userTable 接口传参格式错误问题,修复role 编辑时内容回显问题

This commit is contained in:
@changcode
2022-01-25 16:25:49 +08:00
parent a16c27aaf5
commit d2d38c2d8c
3 changed files with 12 additions and 5 deletions

View File

@@ -84,7 +84,7 @@ export default {
handler (n) {
this.editRole = JSON.parse(JSON.stringify(n))
if (this.editRole.roles && this.editRole.roles.length > 0) {
this.editRole.roleIds = this.editRole.roles.map(t => t.id)
this.editRole.roleIds = this.editRole.roles.map(t => t.id).json(',')
}
}
}