|
|
@@ -471,12 +471,9 @@ const Easy = (props, ref) => {
|
|
|
labelAlign="left"
|
|
|
colon={false}
|
|
|
labelCol={{
|
|
|
- span: 6,
|
|
|
+ flex: "84px",
|
|
|
}}
|
|
|
onValuesChange={onValuesChange}
|
|
|
- wrapperCol={{
|
|
|
- span: 18,
|
|
|
- }}
|
|
|
>
|
|
|
<Form.Item
|
|
|
label={TranslateText(["告警类型", "Mode"])}
|
|
|
@@ -640,7 +637,10 @@ const Easy = (props, ref) => {
|
|
|
<Form.Item name="ah_enable" valuePropName="checked" noStyle>
|
|
|
<Checkbox size={"small"} />
|
|
|
</Form.Item>
|
|
|
- <div className={styles.itemContainer}>
|
|
|
+ <div
|
|
|
+ className={styles.itemContainer}
|
|
|
+ style={{ marginLeft: 8 }}
|
|
|
+ >
|
|
|
{ahh && <div className={styles.label}>上上限</div>}
|
|
|
<Form.Item
|
|
|
name="ahh_value"
|
|
|
@@ -674,7 +674,7 @@ const Easy = (props, ref) => {
|
|
|
<Input
|
|
|
disabled={!ahhEnable}
|
|
|
placeholder={TranslateText(["上上限", "Please input"])}
|
|
|
- style={{ width: "128px", marginLeft: 8 }}
|
|
|
+ style={{ width: "128px" }}
|
|
|
/>
|
|
|
</Form.Item>
|
|
|
</div>
|
|
|
@@ -733,7 +733,10 @@ const Easy = (props, ref) => {
|
|
|
<Form.Item name="al_enable" valuePropName="checked" noStyle>
|
|
|
<Checkbox size={"small"} />
|
|
|
</Form.Item>
|
|
|
- <div className={styles.itemContainer}>
|
|
|
+ <div
|
|
|
+ className={styles.itemContainer}
|
|
|
+ style={{ marginLeft: 8 }}
|
|
|
+ >
|
|
|
{all && <div className={styles.label}>下下限</div>}
|
|
|
<Form.Item
|
|
|
name="all_value"
|
|
|
@@ -767,7 +770,7 @@ const Easy = (props, ref) => {
|
|
|
<Input
|
|
|
disabled={!allEnable}
|
|
|
placeholder={TranslateText(["下下限", "Please input"])}
|
|
|
- style={{ width: "128px", marginLeft: 8 }}
|
|
|
+ style={{ width: "128px" }}
|
|
|
/>
|
|
|
</Form.Item>
|
|
|
</div>
|