hotfix/2.9.42309.01

This commit is contained in:
黎永顺 2023-09-14 15:50:24 +08:00
parent 4769df4cfd
commit d008654bf8
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,19 @@
/*
* Author: 黎永顺
* name: 薪资核算
* Description:
* Date: 2023/9/14
*/
import React, { Component } from "react";
class Index extends Component {
render() {
return (
<div>
</div>
);
}
}
export default Index;

View File

@ -73,6 +73,9 @@ class Index extends Component {
case "person":
dom = <SalaryCalcPersonConfirm {...this.props}/>;
break;
case "calc":
dom = <SalaryCalcPersonConfirm {...this.props}/>;
break;
default:
break;
}