This commit is contained in:
zengqiao
2020-12-19 00:40:52 +08:00
parent 49280a8617
commit 447a575f4f
83 changed files with 1578 additions and 559 deletions

View File

@@ -55,7 +55,7 @@ export class NetWorkFlow extends React.Component<any> {
<div className="chart-box-0">
<div className="chart-title">
<span className="action-button"></span>
<a href={indexUrl} target="_blank"></a>
<a href={indexUrl.indexUrl} target="_blank"></a>
</div>
<Divider />
<ChartWithDatePicker
@@ -70,18 +70,18 @@ export class NetWorkFlow extends React.Component<any> {
export const renderTrafficTable = (updateRealStatus: any, Element: React.ComponentClass) => {
return (
<div className="traffic-table">
<div className="traffic-header">
<span>
<span className="action-button"></span>
<a href={indexUrl} target="_blank"></a>
</span>
<span className="k-abs" onClick={updateRealStatus}>
<i className="k-icon-shuaxin didi-theme mr-5" />
<a></a>
</span>
</div>
<Element />
<div className="traffic-table">
<div className="traffic-header">
<span>
<span className="action-button"></span>
<a href={indexUrl.indexUrl} target="_blank"></a>
</span>
<span className="k-abs" onClick={updateRealStatus}>
<i className="k-icon-shuaxin didi-theme mr-5" />
<a></a>
</span>
</div>
<Element />
</div>
);
};