feature/2.10.1.2401.01-社保福利台账列表页面重构
This commit is contained in:
parent
a4da6674c5
commit
e5d30f224b
|
|
@ -6,7 +6,8 @@ import MySalary from "./pages/mySalaryBenefits";
|
|||
import Programme from "./pages/socialSecurityBenefits/programme";
|
||||
// import Archivess from "./pages/socialSecurityBenefits/archives";
|
||||
import Archives from "./pages/socialSecurityBenefits/welfareArchive"; //社保福利档案重构页面
|
||||
import StandingBook from "./pages/socialSecurityBenefits/standingBook";
|
||||
import StandingBookDemo from "./pages/socialSecurityBenefits/standingBook";
|
||||
import StandingBook from "./pages/socialSecurityBenefits/standingBook/standingBook";//社保福利台账重构页面
|
||||
import StandingBookDetail from "./pages/socialSecurityBenefits/standingBookDetail";
|
||||
import StandingBookOfflineComparison from "./pages/socialSecurityBenefits/standingBookOfflineComparison";
|
||||
import SalaryItem from "./pages/salaryItem";
|
||||
|
|
@ -122,6 +123,7 @@ const Routes = (
|
|||
<Route key="programme" path="programme" component={Programme}/>
|
||||
<Route key="archives" path="archives" component={Archives}/>
|
||||
{/*<Route key="archives_demo" path="archives_demo" component={Archivess}/>*/}
|
||||
<Route key="standingBook_demo" path="standingBook_demo" component={StandingBookDemo}/>
|
||||
<Route key="standingBook" path="standingBook" component={StandingBook}/>
|
||||
<Route
|
||||
key="standingBookDetail"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Author: 黎永顺
|
||||
* name: 社保福利台账重构
|
||||
* version: 1.0
|
||||
* Description:
|
||||
* Date: 2024/1/23
|
||||
*/
|
||||
import React, { Component } from "react";
|
||||
import { WeaLocaleProvider } from "ecCom";
|
||||
|
||||
const getLabel = WeaLocaleProvider.getLabel;
|
||||
|
||||
class StandingBook extends Component {
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
社保福利台账重构
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default StandingBook;
|
||||
Loading…
Reference in New Issue