bug修复

This commit is contained in:
Chengliang 2022-11-08 09:49:45 +08:00
parent 9a3164e386
commit 3b4592adb5
3 changed files with 22 additions and 10 deletions

View File

@ -233,7 +233,10 @@ export default class StepDialog extends React.Component {
return (
<div>
{
current == 0 && <WeaTransfer
current == 0 &&
<div>
<p style={{"color":"red","fontSize":"15px"}}>注意:右侧列表默认加载的为必填字段</p>
<WeaTransfer
data={toJS(data)}
selectedKeys={toJS(selectedKeys)}
onChange={(keys, datas) => {
@ -241,6 +244,7 @@ export default class StepDialog extends React.Component {
newImport.setSelectData(datas);
}}
/>
</div>
}
{
current == 1 && <WeaNewScroll ecId={`${this && this.props && this.props.ecId || ''}_WeaNewScroll@2908z2`} ref="scrollBar">

View File

@ -85,8 +85,16 @@ export class NewImportStore {
"icon": "icon-coms-crm",
"title": "人员",
"linkName": "人员导入",
"url": "/spa/hrm/engine.html#/hrmengine/organization"
}
"url": "/spa/organization/static/index.html#/main/organization/resource"
},
{
"subTitle": "等级设置",
"bgColor": "rgb(230, 168, 69)",
"icon": "icon-portal-kpi-o",
"title": "职等职级",
"linkName": "职等职级导入",
"url": "/spa/organization/static/index.html#/main/organization/rankscheme"
},
]
@observable isMouseOver = false;