feature/2.9.42310.01-薪资项目拓扑图
This commit is contained in:
parent
fafbfbe253
commit
d0aa6e93a0
|
|
@ -42,6 +42,7 @@ import MySalaryView from "./pages/mySalary/mySalaryView";
|
|||
import WatermarkPreview from "./pages/payroll/watermarkPreview";
|
||||
import ExternalPersonManage from "./pages/externalPersonManage";
|
||||
import AdjustSalaryManage from "./pages/adjustSalaryManage";
|
||||
import SalaryItemDiagram from "./pages/salaryItemDiagram";
|
||||
|
||||
import stores from "./stores";
|
||||
import "./style/index";
|
||||
|
|
@ -95,6 +96,7 @@ const DataAcquisition = (props) => props.children;
|
|||
// reportView 薪酬报表查看
|
||||
// externalPersonManage 非系统人员管理
|
||||
// adjustSalaryManage 档案管理
|
||||
// salaryItemDiagram 薪资档案拓扑图
|
||||
|
||||
const Routes = (
|
||||
<Route
|
||||
|
|
@ -123,6 +125,7 @@ const Routes = (
|
|||
/>
|
||||
</Route>
|
||||
<Route key="salaryItem" path="salaryItem" component={SalaryItem}/>
|
||||
<Route key="salaryItemDiagram" path="salaryItemDiagram" component={SalaryItemDiagram}/>
|
||||
<Route key="salaryFile" path="salaryFile" component={PayrollFiles}/>
|
||||
<Route key="adjustSalaryManage" path="adjustSalaryManage" component={AdjustSalaryManage}/>
|
||||
<Route
|
||||
|
|
|
|||
|
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* Author: 黎永顺
|
||||
* name: 薪资档案拓扑图
|
||||
* Description:
|
||||
* Date: 2023/10/19
|
||||
*/
|
||||
import React, { Component } from "react";
|
||||
|
||||
class Index extends Component {
|
||||
render() {
|
||||
return (
|
||||
<iframe
|
||||
style={{ border: 0, width: "100%", height: "100%" }}
|
||||
src="http://localhost:7607/#/salaryItemDiagram"
|
||||
// src="/spa/hrmSalary/hrmSalaryCalculateDetail/index.html#/salaryItemDiagram"
|
||||
id="atdTable"
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Index;
|
||||
Loading…
Reference in New Issue