This commit is contained in:
黎永顺 2022-12-12 16:42:31 +08:00
parent 906e2dd40e
commit 783d1532aa
1 changed files with 2 additions and 7 deletions

View File

@ -448,16 +448,11 @@ export default class CumSituation extends React.Component {
</Button>
];
const topTab = [];
const renderSearchOperationItem = () => {
return <div/>;
};
const handleButtonClick = () => {
const taxYearMonth= this.state.monthValue + "-" + this.state.taxYearMonth
const url = `${window.location
.origin}/api/bs/hrmsalary/addUpSituation/export?ids=&year=${this
.state.monthValue}&taxYearMonth=${this.state.taxYearMonth}&taxAgentId=${this.state.taxAgentId == "All"
.state.monthValue}&taxYearMonth=${taxYearMonth}&taxAgentId=${this.state.taxAgentId == "All"
? ""
: this.state.taxAgentId}`;
window.open(url, "_self");