Showing
1 changed file
with
2 additions
and
2 deletions
@@ -176,12 +176,12 @@ const scheduleData = ref({ | @@ -176,12 +176,12 @@ const scheduleData = ref({ | ||
176 | }); | 176 | }); |
177 | const handleBlur = (eS, eE) => { | 177 | const handleBlur = (eS, eE) => { |
178 | if (eS > eE) { | 178 | if (eS > eE) { |
179 | - return createMessage.error('开始时间不能大于结束时间') | 179 | + return createMessage.warn('开始时间不能大于结束时间') |
180 | } | 180 | } |
181 | } | 181 | } |
182 | const handleTimeBlur = (eS, eE) => { | 182 | const handleTimeBlur = (eS, eE) => { |
183 | if (eS > eE) { | 183 | if (eS > eE) { |
184 | - return createMessage.error('开始时间不能大于结束时间') | 184 | + return createMessage.warn('开始时间不能大于结束时间') |
185 | } | 185 | } |
186 | } | 186 | } |
187 | const handleOk = () => { | 187 | const handleOk = () => { |