|
@@ -247,17 +247,20 @@ export default {
|
|
|
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
|
|
|
+ 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);
|
|
|
+ // 设置url
|
|
|
+ if (item.legendData.style.default.url) {
|
|
|
+ item.url = imgBaseUrl + item.legendData.style.default.url;
|
|
|
+ }
|
|
|
this.scene.addItem(item);
|
|
|
// 如果为设备则存于vuex中便于联动
|
|
|
if (item instanceof SBaseEquipment) {
|
|
@@ -332,10 +335,7 @@ export default {
|
|
|
} else {
|
|
|
// 构造 XMLHttpRequest 对象,发送文件 Binary 数据
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
- xhr.open(
|
|
|
- "POST",
|
|
|
- `${imgServeUpload}${uuid}.${imgType}`
|
|
|
- );
|
|
|
+ xhr.open("POST", `${imgServeUpload}${uuid}.${imgType}`);
|
|
|
xhr.send(reader.result);
|
|
|
xhr.onreadystatechange = function () {
|
|
|
if (xhr.readyState == 4) {
|
|
@@ -416,15 +416,11 @@ export default {
|
|
|
list.forEach((item, i) => {
|
|
|
const x = (i + 1) * 100 + 300;
|
|
|
|
|
|
- const url = imgBaseUrl + item.url;
|
|
|
+ const url = 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(),
|
|
|
/** 名称 */
|
|
@@ -458,6 +454,10 @@ 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;
|
|
|
+ }
|
|
|
this.scene.addItem(item);
|
|
|
// 如果为设备则存于vuex中便于联动
|
|
|
if (item instanceof SBaseEquipment) {
|