Skip to content

Commit 0534a80

Browse files
authored
Merge pull request #10 from ynnnny/main
chore: change some text
2 parents 6bac239 + f5c9db1 commit 0534a80

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/pages/formM/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ const FormForMobile: React.FC = () => {
320320
// 比较当前日期和目标日期
321321
if (currentDate > targetDate) {
322322
setIsPastDeadline(true);
323-
void message.warning('当前报名已截止');
323+
void message.warning('未在报名时间内');
324324
}
325325
}, []);
326326

@@ -776,7 +776,7 @@ const FormForMobile: React.FC = () => {
776776
onClick={
777777
isPastDeadline
778778
? () => {
779-
void message.warning('当前报名已截止');
779+
void message.warning('未在报名时间内');
780780
}
781781
: formSetted
782782
? debounce(changeForm, 400)

src/pages/formW/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ const FormForWeb: React.FC = () => {
323323
// 比较当前日期和目标日期
324324
if (currentDate > targetDate) {
325325
setIsPastDeadline(true);
326-
void message.warning('当前报名已截止');
326+
void message.warning('未在报名时间内');
327327
}
328328
}, []);
329329

@@ -806,7 +806,7 @@ const FormForWeb: React.FC = () => {
806806
onClick={
807807
isPastDeadline
808808
? () => {
809-
void message.warning('当前报名已截止');
809+
void message.warning('未在报名时间内');
810810
}
811811
: formSetted
812812
? debounce(changeForm, 400)

0 commit comments

Comments
 (0)