Commit 1552fcc9 by zhaochengxiang

bug fix

parent 7e122314
......@@ -290,7 +290,7 @@ const RuleReviewItem = ({ value = {}, onChange }) => {
triggerChange({
standardApprovalUserList: (users??[])
.filter(item => val===item.id)
.map(item => ({ userId: item.id, userName: item.realName }))
.map(item => ({ userId: item.id, userName: item.loginName, userCnName: item.realName }))
})
}}
/>
......@@ -463,7 +463,7 @@ const DesignUsersItem = ({ value, onChange }) => {
onChange?.(
(users??[])
.filter(item => val===item.id)
.map(item => ({ userId: item.id, userName: item.realName }))
.map(item => ({ userId: item.id, userName: item.loginName, userCnName: item.realName }))
)
}}
/>
......
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