|
@@ -8,7 +8,7 @@
|
|
|
:havItem="havItem"
|
|
|
></topoTooltip>
|
|
|
<canvas
|
|
|
- style="border:none;outline:medium;"
|
|
|
+ style="border: none; outline: medium"
|
|
|
id="persagy_topo"
|
|
|
:width="canvasWidth"
|
|
|
:height="canvasHeight"
|
|
@@ -38,6 +38,12 @@ import {
|
|
|
} from "@/api/editer";
|
|
|
import { publishGraph } from "@/api/home";
|
|
|
import crypto from "crypto-js/";
|
|
|
+//////////////////////////////////////
|
|
|
+// 常量
|
|
|
+// 图服务路径
|
|
|
+const imgBaseUrl = window.__systemConf.imgServeUri;
|
|
|
+// 图上传路径
|
|
|
+const imgServeUpload = window.__systemConf.imgServeUpload;
|
|
|
export default {
|
|
|
components: { topoTooltip },
|
|
|
data() {
|
|
@@ -68,6 +74,7 @@ export default {
|
|
|
this.canvasWidth = this.$refs.baseTopo.offsetWidth;
|
|
|
this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
|
|
|
this.scene = new PTopoScene();
|
|
|
+ this.scene.imgServeUrl = imgBaseUrl; //获取图服务路径
|
|
|
this.view = new PTopoView("persagy_topo");
|
|
|
this.view.scene = this.scene;
|
|
|
this.scene.clearCmdStatus = this.clearCmdStatus;
|
|
@@ -239,7 +246,14 @@ export default {
|
|
|
item.moveable = true;
|
|
|
item.connect("finishCreated", this.scene, this.scene.finishCreated);
|
|
|
item.connect("onContextMenu", this, this.scene.getItem);
|
|
|
+ // 判断如果是图,需要拼接路径
|
|
|
+ if(item.data.properties.type == 'BaseImage'){
|
|
|
+ if(item.data.style.default.url){
|
|
|
+ item.url = imgBaseUrl+ item.data.style.default.url
|
|
|
+ }
|
|
|
+ }
|
|
|
this.scene.addItem(item);
|
|
|
+
|
|
|
});
|
|
|
parse.nodes.forEach((item) => {
|
|
|
item.connect("finishCreated", this.scene, this.scene.finishCreated);
|
|
@@ -320,7 +334,7 @@ export default {
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
xhr.open(
|
|
|
"POST",
|
|
|
- `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`
|
|
|
+ `${imgServeUpload}${uuid}.${imgType}`
|
|
|
);
|
|
|
xhr.send(reader.result);
|
|
|
xhr.onreadystatechange = function () {
|
|
@@ -401,12 +415,16 @@ export default {
|
|
|
const parse = new PTopoParser();
|
|
|
list.forEach((item, i) => {
|
|
|
const x = (i + 1) * 100 + 300;
|
|
|
- const baseUrl =
|
|
|
- "/image-service/common/image_get?systemId=dataPlatform&key=";
|
|
|
- const url = baseUrl + item.url;
|
|
|
+
|
|
|
+ const url = imgBaseUrl + item.url;
|
|
|
let svg2Base = "";
|
|
|
let EquipHeight = this.canvasHeight - 100;
|
|
|
-
|
|
|
+ // 拼接路径
|
|
|
+ const state = item.state.map((t) => {
|
|
|
+ return Object.assign(t, {
|
|
|
+ pic: imgBaseUrl + t.pic,
|
|
|
+ });
|
|
|
+ });
|
|
|
let data = {
|
|
|
nodeId: uuidv1(),
|
|
|
/** 名称 */
|
|
@@ -424,6 +442,7 @@ export default {
|
|
|
classCode: item.classCode, // 设备类型
|
|
|
localId: item.localId, // 本地编码
|
|
|
localName: item.localName, //本地名称
|
|
|
+ state: item.state,
|
|
|
},
|
|
|
style: {
|
|
|
default: {
|