Commit a6b9a0ca authored by 皮倩雯's avatar 皮倩雯

fix: '更新地图组件版本'

parent e4ccba4e
Pipeline #63811 waiting for manual action with stages
......@@ -93,7 +93,7 @@
"@wisdom-cesium/cesium": "^1.0.78",
"@wisdom-map/amap": "1.1.0-beta.40",
"@wisdom-map/arcgismap": "1.4.0-76",
"@wisdom-map/basemap": "1.1.0-16",
"@wisdom-map/basemap": "1.1.0-18",
"ace-builds": "^1.4.12",
"antd-img-crop": "^3.13.2",
"bizcharts": "^4.0.15",
......
......@@ -2966,7 +2966,7 @@ const AddModal = props => {
// {...props}
visible={isVisible}
onClose={onCancel}
zIndex={10}
zIndex={99}
destroyOnClose
afterClose={() => {
form.resetFields();
......
import React, { useState, useEffect } from 'react';
import { Checkbox } from 'antd';
import { Checkbox, Tooltip } from 'antd';
import styles from './SelectUser.less';
const CheckboxGroup = Checkbox.Group;
......@@ -95,7 +95,9 @@ const CardCheck = props => {
>
{plainOptions.map(item => (
<Checkbox key={item.value} value={item.value}>
{item.label}
<Tooltip placement="topLeft" title={item.label}>
<span className={styles.fontlabel}>{item.label}</span>
</Tooltip>
</Checkbox>
))}
</CheckboxGroup>
......
......@@ -43,10 +43,27 @@
.bottomCheckbox {
margin-top: 10px;
display: flex;
flex-wrap: wrap;
.ant-checkbox-wrapper {
min-width: 150px;
display: flex;
margin-left: 0;
width: 160px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-top:10px;
.ant-checkbox + span {
display: flex;
}
}
.fontlabel {
display: inline-block;
width:130px;
overflow: hidden;
text-overflow: ellipsis;
// white-space: nowrap;
}
// .ant-checkbox-group-item {
......
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