Commit 148173788ee64c67653b74f94d4ff871b9c71e15

Authored by fengwotao
1 parent 87fa41e6

pref:优化提示

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