禅道bug修改

This commit is contained in:
黎永顺 2023-03-10 14:09:50 +08:00
parent 69bf6982a0
commit afd39f37d8
3 changed files with 7 additions and 6 deletions

View File

@ -50,7 +50,7 @@
.btnWrapper {
position: absolute;
right: 50px;
top: 0px;
top: 0;
}
}
@ -58,5 +58,8 @@
.wea-new-top-req-wapper .wea-new-top-req-title>div:last-child{
right: 16px!important;
}
.wea-new-top-req-wapper .wea-new-top-req-title>div:first-child>div:first-child{
min-width: 440px!important;
}
}

View File

@ -124,10 +124,8 @@ export default class LedgerSalaryItemAddModal extends React.Component {
};
return (
<WeaDialog
visible={visible}
onCancel={onCancel}
title="添加薪资项目"
style={{ width: "80vw", height: 600 }}
visible={visible} onCancel={onCancel} hasScroll
title="添加薪资项目" style={{ width: "80vw", height: 400 }}
buttons={[<Button type="primary" onClick={this.handleAdd} disabled={_.isEmpty(selectedRowKeys)}>添加</Button>]}
>
<div style={{ display: "flex", justifyContent: "flex-end", alignItems: "center", padding: 20 }}>

View File

@ -247,7 +247,7 @@ class SalaryItemSettings extends Component {
)}
renderNodeItem={(filed) => {
return <div className="salaryItemList">
<div className="salaryItem">
<div className="salaryItem" title={filed.name}>
<div className="salaryItemName">{filed.name}</div>
<Icon type="cross" onClick={() => this.handleDeleteSalaryItem(item, filed)}/>
</div>