Commit afcb2c63 authored by 涂伟's avatar 涂伟

fix:1.运维地图配置权限配置表格改成左右结构2.运维地图配置范围设置支持检索

parent 8ece3891
Pipeline #71754 passed with stages
......@@ -256,6 +256,13 @@
height: calc(100vh - 250px) !important;
border-bottom: 1px solid #f0f0f0;
}
.tableContainer {
display: flex;
justify-content: space-between;
.tableContent {
width: 49%;
}
}
}
.titleText {
......
......@@ -969,7 +969,7 @@ const Map = props => {
onFinish={onFinish}
>
<Form.Item label="切换方案" name="schemename" style={{ marginBottom: '19px' }}>
<Select placeholder="请选择方案">
<Select placeholder="请选择方案" showSearch>
{schemeList.map((item, index) => (
<Option value={item.schemename} key={index}>
{item.schemename}
......
......@@ -658,7 +658,8 @@ const VectorData = props => {
return (
<div className={styles.solutionContainer}>
<Spin tip="loading..." spinning={checkLoading}>
<div style={{ height: 'calc(100vh - 150px)', width: '100%', overflow: 'scroll' }}>
<div className={styles.tableContainer} style={{ height: 'calc(100vh - 150px)', width: '100%', overflow: 'scroll' }}>
<div className={styles.tableContent}>
<Divider orientation="left">
<div className={styles.divider}>
{' '}
......@@ -678,9 +679,10 @@ const VectorData = props => {
// style={{ height: 'calc(100vh - 610px)' }}
pagination={false}
rowKey="schemename"
scroll={{ y: 250 }}
scroll={{ y: 600 }}
/>
</div>
<div className={styles.tableContent}>
<Divider orientation="left">
<div className={styles.divider}>
Moblie{' '}
......@@ -697,11 +699,12 @@ const VectorData = props => {
dataSource={handData}
bordered
rowKey="schemename"
scroll={{ y: 250 }}
scroll={{ y: 600 }}
// style={{ height: 'calc(100vh - 610px)' }}
pagination={false}
/>
</div>
</div>
</Spin>
<AddModal
visible={visible}
......
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