|
@@ -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,14 @@ import {
|
|
|
} from "@/api/editer";
|
|
|
import { publishGraph } from "@/api/home";
|
|
|
import crypto from "crypto-js/";
|
|
|
+//////////////////////////////////////
|
|
|
+// 常量
|
|
|
+// 图服务路径
|
|
|
+const imgBaseUrl = window.__systemConf.imgServeUri;
|
|
|
+// 图上传路径
|
|
|
+const imgServeUpload = window.__systemConf.imgServeUpload;
|
|
|
+// 默认通用图标
|
|
|
+const default_Eq = window.__systemConf.default_Eq;
|
|
|
export default {
|
|
|
components: { topoTooltip },
|
|
|
data() {
|
|
@@ -68,6 +76,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,14 +248,26 @@ 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);
|
|
|
item.connect("onContextMenu", this, this.scene.getItem);
|
|
|
this.scene.addItem(item);
|
|
|
+ // 设置url
|
|
|
+ if (item.legendData.style.default.url) {
|
|
|
+ item.url = imgBaseUrl + item.legendData.style.default.url;
|
|
|
+ } else {
|
|
|
+ item.url = imgBaseUrl + default_Eq;
|
|
|
+ }
|
|
|
// 如果为设备则存于vuex中便于联动
|
|
|
- if (item instanceof SBaseEquipment) {
|
|
|
+ if (item.legendData.properties.type == "BaseEquipment") {
|
|
|
anchorList = anchorList.concat(item.anchorList);
|
|
|
this.ADDEQUIPITEM(item);
|
|
|
}
|
|
@@ -265,7 +286,6 @@ export default {
|
|
|
startAnc.isConnected = true;
|
|
|
startAnc.parent?.connect("changePos", t, t.changePos);
|
|
|
t.startAnchor = startAnc || null;
|
|
|
- console.log("startAnc", startAnc);
|
|
|
}
|
|
|
}
|
|
|
if (t.anchor12d) {
|
|
@@ -318,10 +338,7 @@ export default {
|
|
|
} else {
|
|
|
// 构造 XMLHttpRequest 对象,发送文件 Binary 数据
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
- xhr.open(
|
|
|
- "POST",
|
|
|
- `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`
|
|
|
- );
|
|
|
+ xhr.open("POST", `${imgServeUpload}${uuid}.${imgType}`);
|
|
|
xhr.send(reader.result);
|
|
|
xhr.onreadystatechange = function () {
|
|
|
if (xhr.readyState == 4) {
|
|
@@ -401,12 +418,12 @@ 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 = item.url;
|
|
|
+
|
|
|
let svg2Base = "";
|
|
|
let EquipHeight = this.canvasHeight - 100;
|
|
|
-
|
|
|
+ // 拼接路径
|
|
|
let data = {
|
|
|
nodeId: uuidv1(),
|
|
|
/** 名称 */
|
|
@@ -424,6 +441,7 @@ export default {
|
|
|
classCode: item.classCode, // 设备类型
|
|
|
localId: item.localId, // 本地编码
|
|
|
localName: item.localName, //本地名称
|
|
|
+ state: item.state,
|
|
|
},
|
|
|
style: {
|
|
|
default: {
|
|
@@ -439,9 +457,15 @@ export default {
|
|
|
parse.nodes.forEach((item) => {
|
|
|
item.connect("finishCreated", this.scene, this.scene.finishCreated);
|
|
|
item.connect("onContextMenu", this, this.scene.getItem);
|
|
|
+ if (item.legendData.style.default.url) {
|
|
|
+ item.url = imgBaseUrl + item.legendData.style.default.url;
|
|
|
+ item.defaultUrl = item.legendData.style.default.url;
|
|
|
+ } else {
|
|
|
+ item.url = imgBaseUrl + default_Eq;
|
|
|
+ }
|
|
|
this.scene.addItem(item);
|
|
|
// 如果为设备则存于vuex中便于联动
|
|
|
- if (item instanceof SBaseEquipment) {
|
|
|
+ if (item.legendData.properties.type == "BaseEquipment") {
|
|
|
this.ADDEQUIPITEM(item);
|
|
|
}
|
|
|
});
|