|
|
@@ -37,6 +37,8 @@ function TranslateText(arr) {
|
|
|
return arr?.[0];
|
|
|
}
|
|
|
|
|
|
+const SELECT_DROPDOWN_STYLE = { zIndex: 99999999 };
|
|
|
+
|
|
|
const Easy = (props, ref) => {
|
|
|
const { editId, groupList = [], pointId = null } = props;
|
|
|
const [form] = Form.useForm();
|
|
|
@@ -501,6 +503,7 @@ const Easy = (props, ref) => {
|
|
|
disabled={alarmId !== -1 || props.readonly}
|
|
|
filterOption={false}
|
|
|
dropdownMatchSelectWidth={400}
|
|
|
+ dropdownStyle={SELECT_DROPDOWN_STYLE}
|
|
|
labelInValue={true}
|
|
|
onChange={(e) => {
|
|
|
onChange(e);
|
|
|
@@ -813,6 +816,7 @@ const Easy = (props, ref) => {
|
|
|
>
|
|
|
<Select
|
|
|
placeholder={TranslateText(["请选择", "Please choose"])}
|
|
|
+ dropdownStyle={SELECT_DROPDOWN_STYLE}
|
|
|
style={{ width: "200px" }}
|
|
|
>
|
|
|
<Select.Option value={1}>
|
|
|
@@ -848,6 +852,7 @@ const Easy = (props, ref) => {
|
|
|
|
|
|
<Form.Item label={TranslateText(["告警组", "Group"])} name={"group_id"}>
|
|
|
<Select
|
|
|
+ dropdownStyle={SELECT_DROPDOWN_STYLE}
|
|
|
style={{ width: 200 }}
|
|
|
options={[
|
|
|
...[
|