File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ const FormForMobile: React.FC = () => {
320
320
// 比较当前日期和目标日期
321
321
if ( currentDate > targetDate ) {
322
322
setIsPastDeadline ( true ) ;
323
- void message . warning ( '当前报名已截止 ' ) ;
323
+ void message . warning ( '未在报名时间内 ' ) ;
324
324
}
325
325
} , [ ] ) ;
326
326
@@ -776,7 +776,7 @@ const FormForMobile: React.FC = () => {
776
776
onClick = {
777
777
isPastDeadline
778
778
? ( ) => {
779
- void message . warning ( '当前报名已截止 ' ) ;
779
+ void message . warning ( '未在报名时间内 ' ) ;
780
780
}
781
781
: formSetted
782
782
? debounce ( changeForm , 400 )
Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ const FormForWeb: React.FC = () => {
323
323
// 比较当前日期和目标日期
324
324
if ( currentDate > targetDate ) {
325
325
setIsPastDeadline ( true ) ;
326
- void message . warning ( '当前报名已截止 ' ) ;
326
+ void message . warning ( '未在报名时间内 ' ) ;
327
327
}
328
328
} , [ ] ) ;
329
329
@@ -806,7 +806,7 @@ const FormForWeb: React.FC = () => {
806
806
onClick = {
807
807
isPastDeadline
808
808
? ( ) => {
809
- void message . warning ( '当前报名已截止 ' ) ;
809
+ void message . warning ( '未在报名时间内 ' ) ;
810
810
}
811
811
: formSetted
812
812
? debounce ( changeForm , 400 )
You can’t perform that action at this time.
0 commit comments