薪资账套页面重构

This commit is contained in:
黎永顺 2022-12-06 16:06:35 +08:00
parent 4413484c0a
commit 2631e8065e
2 changed files with 20 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import OtherDeduct from "./pages/dataAcquisition/otherDeduct";
import CumSituation from "./pages/dataAcquisition/cumSituation";
import Attendance from "./pages/dataAcquisition/attendance";
import SpecialAddDeduction from "./pages/dataAcquisition/specialAddDeduction";
import Ledger from "./pages/ledger";
import Ledger from "./pages/ledgerPage";
import Calculate from "./pages/calculate";
import Payroll from "./pages/payroll";
import PayrollGrant from "./pages/payroll/payrollGrant";

View File

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