hotfix/2.9.42310.01
This commit is contained in:
parent
00d285e5be
commit
d00e46442d
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue