|
@@ -56,7 +56,6 @@ export default {
|
|
|
"legendObj",
|
|
|
"graphId",
|
|
|
"id",
|
|
|
- "state",
|
|
|
"projectId",
|
|
|
"floorMap",
|
|
|
"equipItemMap",
|
|
@@ -64,6 +63,7 @@ export default {
|
|
|
"floorId",
|
|
|
"objExtInfo",
|
|
|
"styleMap",
|
|
|
+ "ruleList",
|
|
|
]),
|
|
|
},
|
|
|
mounted() {
|
|
@@ -100,12 +100,11 @@ export default {
|
|
|
"SETCHOICELEHEND",
|
|
|
"SETLEGENDOBJ",
|
|
|
"SETPROJECT",
|
|
|
- "SETCATEGROY",
|
|
|
- "SETISPUB",
|
|
|
"SETVERSION",
|
|
|
"ADDEQUIP",
|
|
|
"DELETEQUIP",
|
|
|
"INITSTYLE",
|
|
|
+ "INITRULELIST",
|
|
|
"INITOBJEXTINFO",
|
|
|
]),
|
|
|
|
|
@@ -326,22 +325,14 @@ export default {
|
|
|
graphId: this.graphId,
|
|
|
id: this.id,
|
|
|
};
|
|
|
- // if (this.state === "Publish") {
|
|
|
- // // 已发布
|
|
|
- // pubPlanerRead(obj).then((res) => {
|
|
|
- // this.getDataSuc(res);
|
|
|
- // });
|
|
|
- // } else {
|
|
|
- // 未发布
|
|
|
- planerRead(obj).then((res) => {
|
|
|
- this.getDataSuc(res);
|
|
|
- });
|
|
|
- // }
|
|
|
+ planerRead(obj).then((res) => {
|
|
|
+ this.getDataSuc(res);
|
|
|
+ });
|
|
|
},
|
|
|
// 读图成功回调
|
|
|
getDataSuc(res) {
|
|
|
if (res.result == "failure") return;
|
|
|
- this.SETCATEGROY(res.content);
|
|
|
+ this.SETPROJECT(res.content);
|
|
|
this.planContent = res.content;
|
|
|
// 初始化对象实例信息
|
|
|
if (res.content.elements.objExtInfo?.length) {
|
|
@@ -359,12 +350,12 @@ export default {
|
|
|
// 拼接设备默认样式
|
|
|
this.INITSTYLE(res.content.style);
|
|
|
} else {
|
|
|
- const style = {};
|
|
|
- this.INITSTYLE(style);
|
|
|
+ this.INITSTYLE({});
|
|
|
}
|
|
|
|
|
|
// 加载规则,显示实例数据
|
|
|
if (res.content.ruleList?.length) {
|
|
|
+ this.INITRULELIST(res.content.ruleList);
|
|
|
this.ruleNum = res.content.ruleList.length;
|
|
|
res.content.ruleList.forEach(async (rule) => {
|
|
|
this.loadedRuleNum++;
|
|
@@ -392,6 +383,8 @@ export default {
|
|
|
if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
|
|
|
}
|
|
|
});
|
|
|
+ } else {
|
|
|
+ this.INITRULELIST([]);
|
|
|
}
|
|
|
},
|
|
|
// 解析设备数据
|
|
@@ -490,11 +483,35 @@ export default {
|
|
|
// 生成快照并保存草稿
|
|
|
saveTopoDraft() {
|
|
|
const uuid = uuidv1();
|
|
|
- return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)]).then((vals) => {
|
|
|
- // 重设版本号
|
|
|
- this.SETVERSION(vals[1].version);
|
|
|
- this.$message.success(`保存成功${vals[1].version}`);
|
|
|
- });
|
|
|
+ return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)])
|
|
|
+ .then((vals) => {
|
|
|
+ // 重设版本号
|
|
|
+ if (vals[1].version && vals[1].id && vals[1].graphId) {
|
|
|
+ this.SETVERSION(vals[1].version);
|
|
|
+ this.$message.success(`保存成功${vals[1].version}`);
|
|
|
+ const { folderId, folderName, buildingId, floorId, floorLocalName, name, floorMap } = this.$route.query;
|
|
|
+ this.$router.replace({
|
|
|
+ name: "Editer",
|
|
|
+ query: {
|
|
|
+ folderId,
|
|
|
+ folderName,
|
|
|
+ buildingId,
|
|
|
+ floorId,
|
|
|
+ floorLocalName,
|
|
|
+ name,
|
|
|
+ floorMap,
|
|
|
+ id: vals[1].id,
|
|
|
+ graphId: vals[1].graphId,
|
|
|
+ version: vals[1].version,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ console.error(`保存图接口缺少返回参数!`);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((msg) => {
|
|
|
+ this.$message.error(msg);
|
|
|
+ });
|
|
|
},
|
|
|
// 生成快照
|
|
|
generateSnap(uuid) {
|
|
@@ -538,40 +555,31 @@ export default {
|
|
|
// 保存草稿
|
|
|
saveDraft(uuid) {
|
|
|
const elements = this.scene.save();
|
|
|
+ const { id, graphId, name, buildingId, floorId, folderId, state, projectId, label = [], note = "" } = this.planContent;
|
|
|
const obj = {
|
|
|
- elements,
|
|
|
- // name: this.planContent.name, // 名称
|
|
|
- // projectId: this.projectId, // 项目ID
|
|
|
- // label: this.planContent.label,
|
|
|
- // buildingId: "1", // 建筑ID
|
|
|
- // floorId: "1", // 楼层id
|
|
|
- // note: "1", // 图说明
|
|
|
- style: this.styleMap,
|
|
|
- pic: `${uuid}.png`,
|
|
|
- graphId: this.graphId,
|
|
|
- id: this.id,
|
|
|
+ elements, // 平面图展示所需数据
|
|
|
+ id, //图编号
|
|
|
+ graphId, // 图 id
|
|
|
+ name, // 名称
|
|
|
+ folderId, // 文件夹 id
|
|
|
+ projectId, // 项目id
|
|
|
+ label, // 图标签
|
|
|
+ buildingId, // 建筑 id
|
|
|
+ floorId, // 楼层 id
|
|
|
+ state, // 标记
|
|
|
+ note, // 图说明
|
|
|
+ style: this.styleMap, // 样式库
|
|
|
+ ruleList: this.ruleList, // 实例数据获取规则
|
|
|
+ pic: `${uuid}.png`, // 图快照
|
|
|
+ version: this.version, // 版本号
|
|
|
};
|
|
|
return new Promise((resolve, reject) => {
|
|
|
- saveGroup(obj).then((res) => {
|
|
|
- // 如果是从已发布跳转过来
|
|
|
- // if (this.state === "Publish") {
|
|
|
- // // 设置发布状态为 未发布
|
|
|
- // this.SETSTATE("Draft");
|
|
|
- // const gid = res.entityList[0].graphId;
|
|
|
- // const id = res.entityList[0].id;
|
|
|
- // // 重设图id 与 id
|
|
|
- // this.SETPROJECT({ graphId: gid, id: id });
|
|
|
- // // 修改url参数
|
|
|
- // this.$router.push({
|
|
|
- // name: "Editer",
|
|
|
- // query: {
|
|
|
- // graphId: gid,
|
|
|
- // id: id,
|
|
|
- // state: "Draft",
|
|
|
- // },
|
|
|
- // });
|
|
|
- // }
|
|
|
- resolve(res.entityList[0]);
|
|
|
+ planerSave(obj).then((res) => {
|
|
|
+ if (res.result === "success") {
|
|
|
+ resolve(res.entityList[0]);
|
|
|
+ } else {
|
|
|
+ reject(res.message);
|
|
|
+ }
|
|
|
});
|
|
|
});
|
|
|
},
|
|
@@ -592,7 +600,7 @@ export default {
|
|
|
publishGraph(pa).then((res) => {
|
|
|
this.$message.success("发布成功");
|
|
|
});
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
editCmd(val) {
|