|
@@ -48,7 +48,7 @@ const imgServeUpload = window.__systemConf.imgServeUpload;
|
|
// 默认通用图标
|
|
// 默认通用图标
|
|
const default_Eq = window.__systemConf.default_Eq;
|
|
const default_Eq = window.__systemConf.default_Eq;
|
|
// 联通方式图标
|
|
// 联通方式图标
|
|
-const uninType = window.__systemConf.uninType
|
|
|
|
|
|
+const uninType = window.__systemConf.uninType;
|
|
export default {
|
|
export default {
|
|
components: { topoTooltip },
|
|
components: { topoTooltip },
|
|
data() {
|
|
data() {
|
|
@@ -61,7 +61,7 @@ export default {
|
|
showTooltip: false, //是否显示tooltip
|
|
showTooltip: false, //是否显示tooltip
|
|
topoContent: {}, // 读图后存储图所有数据
|
|
topoContent: {}, // 读图后存储图所有数据
|
|
autoSave: null, // 自动保存定时器
|
|
autoSave: null, // 自动保存定时器
|
|
- isLock:false //右键item是否锁定
|
|
|
|
|
|
+ isLock: false, //右键item是否锁定
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -81,7 +81,7 @@ export default {
|
|
this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
|
|
this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
|
|
this.scene = new PTopoScene();
|
|
this.scene = new PTopoScene();
|
|
this.scene.imgServeUrl = imgBaseUrl; //获取图服务路径
|
|
this.scene.imgServeUrl = imgBaseUrl; //获取图服务路径
|
|
- this.scene.uninType = uninType //联通方式
|
|
|
|
|
|
+ this.scene.uninType = uninType; //联通方式
|
|
this.view = new PTopoView("persagy_topo");
|
|
this.view = new PTopoView("persagy_topo");
|
|
this.view.scene = this.scene;
|
|
this.view.scene = this.scene;
|
|
this.scene.clearCmdStatus = this.clearCmdStatus;
|
|
this.scene.clearCmdStatus = this.clearCmdStatus;
|
|
@@ -113,7 +113,7 @@ export default {
|
|
"ADDEQUIPITEM",
|
|
"ADDEQUIPITEM",
|
|
"EDITEQUIPITEM",
|
|
"EDITEQUIPITEM",
|
|
"SETVERSION",
|
|
"SETVERSION",
|
|
- 'SETVBACKGROUND'
|
|
|
|
|
|
+ "SETVBACKGROUND",
|
|
]),
|
|
]),
|
|
// 恢复命令状态
|
|
// 恢复命令状态
|
|
clearCmdStatus() {
|
|
clearCmdStatus() {
|
|
@@ -124,10 +124,10 @@ export default {
|
|
onContextMenu(item, [event]) {
|
|
onContextMenu(item, [event]) {
|
|
this.showTooltip = true;
|
|
this.showTooltip = true;
|
|
if (item) {
|
|
if (item) {
|
|
- if(item.moveable){
|
|
|
|
- this.isLock = false
|
|
|
|
- }else{
|
|
|
|
- this.isLock = true
|
|
|
|
|
|
+ if (item.moveable) {
|
|
|
|
+ this.isLock = false;
|
|
|
|
+ } else {
|
|
|
|
+ this.isLock = true;
|
|
}
|
|
}
|
|
this.havItem = true;
|
|
this.havItem = true;
|
|
} else {
|
|
} else {
|
|
@@ -228,6 +228,11 @@ export default {
|
|
bus.$on("chioceItem", (item) => {
|
|
bus.$on("chioceItem", (item) => {
|
|
this.scene.toggleItem(item);
|
|
this.scene.toggleItem(item);
|
|
});
|
|
});
|
|
|
|
+ // 更改对齐方式
|
|
|
|
+ bus.$off("changeAlignItem");
|
|
|
|
+ bus.$on("changeAlignItem", (val) => {
|
|
|
|
+ this.scene.changeAlignItem(val);
|
|
|
|
+ });
|
|
// 更改背景色
|
|
// 更改背景色
|
|
bus.$off("changeBackgroundColor");
|
|
bus.$off("changeBackgroundColor");
|
|
bus.$on("changeBackgroundColor", (val) => {
|
|
bus.$on("changeBackgroundColor", (val) => {
|
|
@@ -258,11 +263,13 @@ export default {
|
|
this.SETCATEGROY(res.content);
|
|
this.SETCATEGROY(res.content);
|
|
this.topoContent = res.content;
|
|
this.topoContent = res.content;
|
|
const parse = new PTopoParser();
|
|
const parse = new PTopoParser();
|
|
- if(this.scene){
|
|
|
|
- const backgroundColor = res.content.viewBackground ? res.content.viewBackground : '#00000000'
|
|
|
|
|
|
+ if (this.scene) {
|
|
|
|
+ const backgroundColor = res.content.viewBackground
|
|
|
|
+ ? res.content.viewBackground
|
|
|
|
+ : "#00000000";
|
|
this.scene.changeBackgroundColor(backgroundColor);
|
|
this.scene.changeBackgroundColor(backgroundColor);
|
|
// 初始化保存图背景色
|
|
// 初始化保存图背景色
|
|
- this.SETVBACKGROUND(this.view.backgroundColor.toRgba())
|
|
|
|
|
|
+ this.SETVBACKGROUND(this.view.backgroundColor.toRgba());
|
|
}
|
|
}
|
|
parse.parseData(res.content.elements);
|
|
parse.parseData(res.content.elements);
|
|
parse.markers.forEach((item) => {
|
|
parse.markers.forEach((item) => {
|
|
@@ -271,7 +278,10 @@ export default {
|
|
item.connect("finishCreated", this.scene, this.scene.finishCreated);
|
|
item.connect("finishCreated", this.scene, this.scene.finishCreated);
|
|
item.connect("onContextMenu", this, this.scene.getItem);
|
|
item.connect("onContextMenu", this, this.scene.getItem);
|
|
// 判断如果是图//或是管道,需要拼接路径
|
|
// 判断如果是图//或是管道,需要拼接路径
|
|
- if (item.data.properties.type == "BaseImage" || item.data.properties.type == "BasePipeUninTool") {
|
|
|
|
|
|
+ if (
|
|
|
|
+ item.data.properties.type == "BaseImage" ||
|
|
|
|
+ item.data.properties.type == "BasePipeUninTool"
|
|
|
|
+ ) {
|
|
if (item.data.style.default.url) {
|
|
if (item.data.style.default.url) {
|
|
item.url = imgBaseUrl + item.data.style.default.url;
|
|
item.url = imgBaseUrl + item.data.style.default.url;
|
|
}
|
|
}
|
|
@@ -392,7 +402,7 @@ export default {
|
|
graphId: this.graphId,
|
|
graphId: this.graphId,
|
|
id: this.id,
|
|
id: this.id,
|
|
version: this.version,
|
|
version: this.version,
|
|
- viewBackground:this.view.backgroundColor.value //视图背景色
|
|
|
|
|
|
+ viewBackground: this.view.backgroundColor.value, //视图背景色
|
|
};
|
|
};
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
saveGroup(obj).then((res) => {
|
|
saveGroup(obj).then((res) => {
|