|
|
@@ -2,7 +2,7 @@
|
|
2
|
2
|
* @Author: dayan_hjm 产供销价值链
|
|
3
|
3
|
* @Date: 2023-11-10 10:19:34
|
|
4
|
4
|
* @Last Modified by: dayan_hjm
|
|
5
|
|
- * @Last Modified time: 2023-12-19 15:27:45
|
|
|
5
|
+ * @Last Modified time: 2023-12-19 15:49:21
|
|
6
|
6
|
*/
|
|
7
|
7
|
|
|
8
|
8
|
import React, { useState, useEffect, Component } from "react";
|
|
|
@@ -24,10 +24,11 @@ import {
|
|
24
|
24
|
} from "./api";
|
|
25
|
25
|
import MapViewTwo from "./component/mapView2.jsx";
|
|
26
|
26
|
import mpVideoGvc from "@assets/imgs/dataVimg/videoGvc2.mp4";
|
|
27
|
|
-import { getThousandNum } from "@utils/util";
|
|
|
27
|
+import { getThousandNum,deleteCacheAndChangeUrl } from "@utils/util";
|
|
28
|
28
|
|
|
29
|
29
|
import 'animate.css';
|
|
30
|
30
|
import { get } from "lodash";
|
|
|
31
|
+
|
|
31
|
32
|
@withRouter
|
|
32
|
33
|
|
|
33
|
34
|
class Gvc extends Component {
|
|
|
@@ -384,12 +385,17 @@ class Gvc extends Component {
|
|
384
|
385
|
{/* 右键切换大屏 */}
|
|
385
|
386
|
<Tooltip placement="bottom" title={"数据运营中心"}>
|
|
386
|
387
|
<img src={require("@assets/imgs/iconJpg/rightJ.png").default} alt="" className={"rightJ_png"} onClick={() => {
|
|
387
|
|
- this.props.history.replace("/home/operation");
|
|
|
388
|
+ deleteCacheAndChangeUrl("/home/operation",(url)=>{
|
|
|
389
|
+ this.props.history.replace(url);
|
|
|
390
|
+ })
|
|
|
391
|
+
|
|
388
|
392
|
}} />
|
|
389
|
393
|
</Tooltip>
|
|
390
|
394
|
<Tooltip placement="bottom" title={"数据运营中心"}>
|
|
391
|
395
|
<img src={require("@assets/imgs/iconJpg/rightJL.png").default} alt="" className={"rightJ_png rightJ_png_L"} onClick={() => {
|
|
392
|
|
- this.props.history.replace("/home/operation");
|
|
|
396
|
+ deleteCacheAndChangeUrl("/home/operation",(url)=>{
|
|
|
397
|
+ this.props.history.replace(url);
|
|
|
398
|
+ })
|
|
393
|
399
|
}} />
|
|
394
|
400
|
</Tooltip>
|
|
395
|
401
|
|