Merge branch 'hotfix/2.9.42310.01' into feature/V2-dev合并多语言
This commit is contained in:
commit
3f9f4ad469
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue