hotfix/2.9.42310.01

This commit is contained in:
黎永顺 2023-10-09 15:33:19 +08:00
parent 00d285e5be
commit d00e46442d
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,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,