|
@@ -162,7 +162,8 @@ const RenderJudge = (props: any) => {
|
|
|
<Select
|
|
|
defaultValue={judge?.condition?.smallSign}
|
|
|
onChange={(value: number) => {
|
|
|
- handleChange([], item, { ...judge?.condition, smallSign: Number(value) });
|
|
|
+ const newValue = Number(value) == 1 ? 2 : 5;
|
|
|
+ handleChange([], item, { ...judge?.condition, smallSign: newValue });
|
|
|
}}
|
|
|
>
|
|
|
{SiginOptions.map(item => (
|