23 lines
502 B
JavaScript
23 lines
502 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/#/${this.props.pathname}`}
|
|
src={`/spa/hrmSalary/hrmSalaryCalculateDetail/index.html#/${this.props.pathname}`}
|
|
id="topologyDiagram"
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Index;
|