|
@@ -36,7 +36,7 @@ export default {
|
|
|
fillColor: "#F0F3F7",
|
|
|
lineWidth: 1,
|
|
|
effect: {},
|
|
|
- }
|
|
|
+ },
|
|
|
};
|
|
|
},
|
|
|
required: false,
|
|
@@ -44,15 +44,15 @@ export default {
|
|
|
// 设备默认样式
|
|
|
defaultEquipStyle: {
|
|
|
type: Object,
|
|
|
- default: () =>{
|
|
|
+ default: () => {
|
|
|
return {
|
|
|
color: "#1F2429",
|
|
|
size: 12,
|
|
|
url: "tognyong2020102700.svg",
|
|
|
formula: "",
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -68,12 +68,9 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version", "equipItemList"]),
|
|
|
+ ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "categoryId", "projectId", "version", "equipItemList"]),
|
|
|
},
|
|
|
created() {
|
|
|
- this.SETPROJECT(this.$route.query);
|
|
|
- this.SETISPUB(this.$route.query.isPub);
|
|
|
- this.categoryName = decodeURI(this.$route.query.categoryName);
|
|
|
this.clearImg();
|
|
|
},
|
|
|
mounted() {
|
|
@@ -333,7 +330,7 @@ export default {
|
|
|
graphId: this.graphId,
|
|
|
id: this.id,
|
|
|
};
|
|
|
- if (this.isPub == 1) {
|
|
|
+ if (this.state === "Publish") {
|
|
|
// 已发布
|
|
|
readPubGroup(obj).then((res) => {
|
|
|
this.getDataSuc(res);
|
|
@@ -466,7 +463,7 @@ export default {
|
|
|
equip.pos = equip.locationJson;
|
|
|
} else {
|
|
|
// 否则显示默认坐标位置
|
|
|
- equip.pos = { x: 0, y: 0 ,z: 0};
|
|
|
+ equip.pos = { x: 0, y: 0, z: 0 };
|
|
|
}
|
|
|
const equipItem = new SPlanEquipment(null, equip);
|
|
|
equipItem.selectable = true;
|
|
@@ -539,24 +536,24 @@ export default {
|
|
|
const elements = this.scene.save();
|
|
|
const obj = {
|
|
|
elements,
|
|
|
- name: this.topoContent.name, // 名称
|
|
|
- categoryId: this.categoryId, // 图分类ID
|
|
|
- projectId: this.projectId, // 项目ID
|
|
|
- label: this.topoContent.label,
|
|
|
- buildingId: "1", // 建筑ID
|
|
|
- floorId: "1", // 楼层id
|
|
|
- note: "1", // 图说明
|
|
|
+ // name: this.topoContent.name, // 名称
|
|
|
+ // categoryId: this.categoryId, // 图分类ID
|
|
|
+ // projectId: this.projectId, // 项目ID
|
|
|
+ // label: this.topoContent.label,
|
|
|
+ // buildingId: "1", // 建筑ID
|
|
|
+ // floorId: "1", // 楼层id
|
|
|
+ // note: "1", // 图说明
|
|
|
pic: `${uuid}.png`,
|
|
|
graphId: this.graphId,
|
|
|
id: this.id,
|
|
|
- version: this.version,
|
|
|
+ // version: this.version,
|
|
|
};
|
|
|
return new Promise((resolve, reject) => {
|
|
|
saveGroup(obj).then((res) => {
|
|
|
// 如果是从已发布跳转过来
|
|
|
- if (this.isPub == 1) {
|
|
|
+ if (this.state === "Publish") {
|
|
|
// 设置发布状态为 未发布
|
|
|
- this.SETISPUB(0);
|
|
|
+ this.SETSTATE("Draft");
|
|
|
const gid = res.entityList[0].graphId;
|
|
|
const id = res.entityList[0].id;
|
|
|
// 重设图id 与 id
|
|
@@ -567,8 +564,7 @@ export default {
|
|
|
query: {
|
|
|
graphId: gid,
|
|
|
id: id,
|
|
|
- categoryName: encodeURI(this.categoryName),
|
|
|
- isPub: 0,
|
|
|
+ state: "Draft",
|
|
|
},
|
|
|
});
|
|
|
}
|