Commit c2f12f37 authored by 涂伟's avatar 涂伟

fix: '站点权限选择样式优化'

parent a93dd9c6
...@@ -44,22 +44,39 @@ ...@@ -44,22 +44,39 @@
// } // }
} }
.check {} .check {
}
} }
} .checkstationdiv {
display: flex;
padding: 10px 0;
.isSearch { .ant-checkbox-group {
color: red; width: 100%;
background-color: yellow; display: flex;
} flex-wrap: wrap;
// align-items: center;
.btnBox { .ant-checkbox-wrapper {
position: sticky; width: 30%;
bottom: 0px; margin-bottom: 8px;
background-color: #fff; }
width: 100%; }
height: 80px; }
padding: 0 20px;
display: flex; .isSearch {
align-items: center; color: red;
} background-color: yellow;
\ No newline at end of file }
.btnBox {
position: sticky;
bottom: 0px;
background-color: #fff;
width: 100%;
height: 80px;
padding: 0 20px;
display: flex;
align-items: center;
}
}
...@@ -153,10 +153,13 @@ const ListCardItem = props => { ...@@ -153,10 +153,13 @@ const ListCardItem = props => {
handleAllChecked(e); handleAllChecked(e);
}} }}
> >
{OUName} {OUName === '所有系统' ? '所有角色' : OUName}
</Checkbox> </Checkbox>
</div> </div>
<div style={{ width: '100%' }} className={styles.checkdiv}> <div
style={{ width: '100%' }}
className={OUName === '所有系统' ? styles.checkstationdiv : styles.checkdiv}
>
{defaultList && defaultList.length > 0 && ( {defaultList && defaultList.length > 0 && (
<CheckGroup <CheckGroup
className={styles.check} className={styles.check}
......
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