Commit 703a4781 authored by 姬鋆屾's avatar 姬鋆屾

提交修改窗口负责人弹窗内部的人员信息,添加部门加名字的展示解决重复名字无法辨别的问题

parent 5afccd4a
...@@ -198,7 +198,7 @@ export default { ...@@ -198,7 +198,7 @@ export default {
this.userarr = data.data; this.userarr = data.data;
const arr = {}; const arr = {};
data.data.forEach((element) => { data.data.forEach((element) => {
arr[element.id] = element.name; arr[element.id] = element.name + "-" + element.deptName;
}); });
this.userList = arr; this.userList = arr;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment