Merge branch 'hotfix/2.9.42310.01' into feature/V2-dev合并多语言

This commit is contained in:
黎永顺 2023-10-09 18:47:20 +08:00
commit 3f9f4ad469
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Index extends Component {
super(props);
this.state = {
year: moment(new Date()).format("YYYY"),
declareMonth: moment(new Date()).month() + 1 > 10 ? (moment(new Date()).month() + 1) + "" : "0" + (moment(new Date()).month() + 1),
declareMonth: moment(new Date()).month() + 1 >= 10 ? (moment(new Date()).month() + 1) + "" : "0" + (moment(new Date()).month() + 1),
taxAgentId: "",
innerWidth: window.innerWidth,
addAllLoading: false,