23 lines
488 B
JavaScript
23 lines
488 B
JavaScript
/*
|
|
* 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="topologyDiagram"
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Index;
|