Commit 388bf4c0 by zhaochengxiang

资产要素可选

parent 1f6444a7
...@@ -453,7 +453,7 @@ const AssetAction = (props) => { ...@@ -453,7 +453,7 @@ const AssetAction = (props) => {
) )
} }
if (element.name==='数据关键用户' || element.name==='业务部门负责人' || element.name==='it责任人') { if (element.name==='数据关键用户' || element.name==='业务部门负责人' || element.name?.toLowerCase()==='it责任人') {
return <SelectUser return <SelectUser
type='edit' type='edit'
loading={loadingUsers} loading={loadingUsers}
...@@ -461,7 +461,7 @@ const AssetAction = (props) => { ...@@ -461,7 +461,7 @@ const AssetAction = (props) => {
/> />
} }
if (element.name==='业务责任部门' || element.name==='it责任部门') { if (element.name==='业务责任部门' || element.name?.toLowerCase()==='it责任部门') {
return <Select return <Select
allowClear allowClear
loading={loadingDepartments} loading={loadingDepartments}
......
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