|
@@ -294,7 +294,9 @@
|
|
|
componentProps: {
|
|
componentProps: {
|
|
|
api: async function (params) {
|
|
api: async function (params) {
|
|
|
const res = await bindUserList({ ...params, id: data });
|
|
const res = await bindUserList({ ...params, id: data });
|
|
|
- return res;
|
|
|
|
|
|
|
+ return res.map((ele) => {
|
|
|
|
|
+ return { ...ele, userName: ele.userName + `(${ele.nickName})` };
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
disabled: data ? false : true,
|
|
disabled: data ? false : true,
|
|
|
showSearch: true,
|
|
showSearch: true,
|