|
@@ -14,7 +14,7 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 信息点 -->
|
|
|
- <div class="info-point-tab" v-show="tab === 0">
|
|
|
+ <div class="info-point-tab" v-if="tab === 0">
|
|
|
<!-- 公式 -->
|
|
|
<div class="formula">
|
|
|
<div class="header">公式</div>
|
|
@@ -69,7 +69,7 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 属性 -->
|
|
|
- <div class="property-tab" v-show="tab === 1">
|
|
|
+ <div class="property-tab" v-if="tab === 1">
|
|
|
<!-- 设备的属性 -->
|
|
|
<div class="equipment" v-if="true && type === 'equipment'">
|
|
|
<div class="color">
|
|
@@ -104,8 +104,8 @@
|
|
|
:show-file-list="false"
|
|
|
:before-upload="beforeAvatarUpload"
|
|
|
>
|
|
|
- <img v-if="equipmentData.url" :src="mgBaseUrl + equipmentData.url" class="avatar" />
|
|
|
- <el-button type="small">替换图标</el-button>
|
|
|
+ <img v-if="equipmentData.url" :src="imgBaseUrl + equipmentData.url" class="avatar" />
|
|
|
+ <el-button v-else type="small">替换图标</el-button>
|
|
|
</el-upload>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -217,6 +217,7 @@
|
|
|
* 添加设备,设备组,空间 三个共用
|
|
|
*/
|
|
|
import { mapState, mapMutations } from "vuex";
|
|
|
+import { planerSave, pubPlanerUpdate } from "@/api/labsl";
|
|
|
import { dictQuery } from "@/api/datacenter";
|
|
|
import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
|
|
|
import { cloneDeep } from "lodash";
|
|
@@ -307,14 +308,14 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["styleMap"]),
|
|
|
+ ...mapState(["styleMap", "state", "id", "graphId", "buildingId", "floorId"]),
|
|
|
},
|
|
|
watch: {
|
|
|
// 是否打开弹窗
|
|
|
showDialog(val) {
|
|
|
this.dialogVisible = val;
|
|
|
// 打开弹窗
|
|
|
- this.initDialog();
|
|
|
+ val && this.initDialog();
|
|
|
},
|
|
|
spaceData: {
|
|
|
handler(newV, oldV) {
|
|
@@ -351,6 +352,7 @@ export default {
|
|
|
linewidth: 1,
|
|
|
linestyle: "",
|
|
|
};
|
|
|
+ this.tab = 0;
|
|
|
this.$nextTick(() => {
|
|
|
this.setLineStyle();
|
|
|
});
|
|
@@ -359,8 +361,12 @@ export default {
|
|
|
// 获取公式,属性信息
|
|
|
const styleMap = { ...this.styleMap.defaultEquipStyle, ...(this.styleMap[this.code] || {}) };
|
|
|
const { formula, url, color, size } = styleMap;
|
|
|
+ console.log(formula);
|
|
|
this.chooseList = JSON.parse(formula || "[]");
|
|
|
this.equipmentData = { url, color, size };
|
|
|
+ console.log("=============================");
|
|
|
+ console.log(this.equipmentData.style);
|
|
|
+ console.log("=============================");
|
|
|
},
|
|
|
async getInfoPoint() {
|
|
|
console.time(1);
|
|
@@ -396,16 +402,18 @@ export default {
|
|
|
/**
|
|
|
* 点击弹窗确定,提交接口
|
|
|
*/
|
|
|
- confirm() {
|
|
|
+ async confirm() {
|
|
|
// equipment 设备, equipmentGroup 设备组, space 空间
|
|
|
+ const formula = JSON.stringify(this.chooseList);
|
|
|
+ // eslint-disable-next-line prefer-const
|
|
|
+ let { color, url, size } = this.equipmentData;
|
|
|
+ // eslint-disable-next-line prefer-const
|
|
|
+ let colorlist = rgbaNum(color);
|
|
|
+ let style = {};
|
|
|
switch (this.type) {
|
|
|
case "equipment":
|
|
|
- const formula = JSON.stringify(this.chooseList);
|
|
|
- let { color } = this.equipmentData;
|
|
|
- const { url, size } = this.equipmentData;
|
|
|
- const colorlist = rgbaNum(color);
|
|
|
color = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255).value;
|
|
|
- this.ADDSTYLE({ id: this.code, color, size, formula, url });
|
|
|
+ style = { color, size, formula, url };
|
|
|
break;
|
|
|
case "equipmentGroup":
|
|
|
break;
|
|
@@ -415,8 +423,50 @@ export default {
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
- this.dialogVisible = false;
|
|
|
- this.$emit("closeModal");
|
|
|
+ console.log({ id: this.code, style });
|
|
|
+ let res = "";
|
|
|
+ // 上传的style全量信息
|
|
|
+ const postStyle = { ...this.styleMap, [this.code]: style };
|
|
|
+ delete postStyle.defaultEquipStyle;
|
|
|
+ console.log("===================");
|
|
|
+ console.log(postStyle);
|
|
|
+ console.log("===================");
|
|
|
+ // 未发布接口
|
|
|
+ if (this.state === "Draft") {
|
|
|
+ res = await planerSave({
|
|
|
+ content: [
|
|
|
+ {
|
|
|
+ buildingId: this.buildingId,
|
|
|
+ floorId: this.floorId,
|
|
|
+ id: this.id,
|
|
|
+ graphId: this.graphId,
|
|
|
+ style: postStyle,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ projection: ["style"],
|
|
|
+ });
|
|
|
+ } else if (this.state === "Publish") {
|
|
|
+ //已发布接口
|
|
|
+ res = await pubPlanerUpdate({
|
|
|
+ content: [
|
|
|
+ {
|
|
|
+ buildingId: this.buildingId,
|
|
|
+ floorId: this.floorId,
|
|
|
+ id: this.id,
|
|
|
+ graphId: this.graphId,
|
|
|
+ style: postStyle,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ projection: ["style"],
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (res.result === "success") {
|
|
|
+ this.ADDSTYLE({ id: this.code, style });
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.$emit("closeModal");
|
|
|
+ } else {
|
|
|
+ this.$message(res.message);
|
|
|
+ }
|
|
|
},
|
|
|
/**
|
|
|
* 属性
|