|
@@ -312,8 +312,8 @@ export default {
|
|
|
}
|
|
|
const starTime1 = currentStartDateStr ? Number(currentStartDateStr.split(":")[0]) : 0;
|
|
|
const starTime2 = currentStartDateStr ? Number(currentStartDateStr.split(":")[1]) : 0;
|
|
|
- if (starTime1 <6 || (starTime1 ==6 && starTime2 <= 30)) {
|
|
|
- this.$toast("课程安排开始时间不可早于06:30");
|
|
|
+ if (starTime1 <6 ) {
|
|
|
+ this.$toast("课程安排开始时间不可早于06:00");
|
|
|
return;
|
|
|
}
|
|
|
|