|
@@ -167,7 +167,7 @@
|
|
|
popper-class="m-color-picker"
|
|
|
@change=""
|
|
|
class="fix-box-1"
|
|
|
- v-model="spaceData.borderColor"
|
|
|
+ v-model="spaceData.strokeColor"
|
|
|
></el-color-picker>
|
|
|
</div>
|
|
|
<span class="text">颜色</span>
|
|
@@ -175,7 +175,7 @@
|
|
|
<div class="line-width">
|
|
|
<el-input-number
|
|
|
style="width: 90px"
|
|
|
- v-model="spaceData.linewidth"
|
|
|
+ v-model="spaceData.lineWidth"
|
|
|
controls-position="right"
|
|
|
@change="changeLineWidth"
|
|
|
size="mini"
|
|
@@ -188,7 +188,7 @@
|
|
|
|
|
|
<div class="line-width">
|
|
|
<el-select
|
|
|
- v-model="spaceData.linestyle"
|
|
|
+ v-model="spaceData.lineStyle"
|
|
|
:default-value="borderLineOption[0].id"
|
|
|
size="mini"
|
|
|
style="width: 90px"
|
|
@@ -232,17 +232,6 @@ const list = [
|
|
|
{ name: "故障状态", id: "gzzt" },
|
|
|
{ name: "云端控制状态", id: "gzzt1" },
|
|
|
{ name: "故障状态2", id: "gzzt2" },
|
|
|
- { name: "故障状态3", id: "gzzt3" },
|
|
|
- { name: "故障状态4", id: "gzzt4" },
|
|
|
- { name: "故障状态5", id: "gzzt5" },
|
|
|
- { name: "故障状态6", id: "gzzt6" },
|
|
|
- { name: "故障状态7", id: "gzzt7" },
|
|
|
- { name: "故障状态8", id: "gzzt8" },
|
|
|
- { name: "故障状态9", id: "gzzt9" },
|
|
|
- { name: "故障状态10", id: "gzzt10" },
|
|
|
- { name: "故障状态11", id: "gzzt11" },
|
|
|
- { name: "故障状态12", id: "gzzt12" },
|
|
|
- { name: "故障状态13", id: "gzzt13" },
|
|
|
];
|
|
|
export default {
|
|
|
name: "editInfoPoint",
|
|
@@ -290,30 +279,32 @@ export default {
|
|
|
color: "",
|
|
|
size: 1,
|
|
|
fillColor: "",
|
|
|
- borderColor: "#cccccc",
|
|
|
- linewidth: 1,
|
|
|
- linestyle: "Solid",
|
|
|
- linestyle: "",
|
|
|
+ strokeColor: "#cccccc",
|
|
|
+ lineWidth: 1,
|
|
|
+ lineStyle: "",
|
|
|
},
|
|
|
borderLineOption: [
|
|
|
{
|
|
|
id: "Solid",
|
|
|
src: require("@/assets/images/solidLine.png"),
|
|
|
+ _value: 0,
|
|
|
},
|
|
|
{
|
|
|
id: "Dashed",
|
|
|
src: require("@/assets/images/dashedLine.png"),
|
|
|
+ _value: 1,
|
|
|
},
|
|
|
- {
|
|
|
- id: "Dotted",
|
|
|
- src: require("@/assets/images/dotLine.png"),
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // id: "Dotted",
|
|
|
+ // src: require("@/assets/images/dotLine.png"),
|
|
|
+ // value: 2,
|
|
|
+ // },
|
|
|
],
|
|
|
/** -------------------空间属性使用值end-------------------------- */
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["styleMap", "state", "id", "graphId", "buildingId", "floorId", "equipItemMap"]),
|
|
|
+ ...mapState(["styleMap", "state", "id", "graphId", "buildingId", "floorId", "equipItemMap", "zoneIteMap"]),
|
|
|
},
|
|
|
watch: {
|
|
|
// 是否打开弹窗
|
|
@@ -322,24 +313,35 @@ export default {
|
|
|
// 打开弹窗
|
|
|
val && this.initDialog();
|
|
|
},
|
|
|
- spaceData: {
|
|
|
- handler(newV, oldV) {
|
|
|
- // // console.log("spaceData");
|
|
|
- if (newV.linestyle) {
|
|
|
+ // spaceData: {
|
|
|
+ // handler(newV, oldV) {
|
|
|
+ // // console.log("spaceData", newV.lineStyle);
|
|
|
+
|
|
|
+ // },
|
|
|
+ // deep: true,
|
|
|
+ // },
|
|
|
+ // code(newV, oldV) {
|
|
|
+ // if (newV && newV !== oldV) {
|
|
|
+ // // this.getInfoPoint();
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ /**
|
|
|
+ * 切换tab到属性
|
|
|
+ */
|
|
|
+ tab(newV) {
|
|
|
+ if (newV === 1) {
|
|
|
+ // 设置空间的线型样式
|
|
|
+ if (this.type === "space" && this.spaceData.lineStyle !== undefined) {
|
|
|
this.$nextTick(() => {
|
|
|
this.setLineStyle();
|
|
|
});
|
|
|
}
|
|
|
- },
|
|
|
- deep: true,
|
|
|
- },
|
|
|
- code(newV, oldV) {
|
|
|
- if (newV && newV !== oldV) {
|
|
|
- // this.getInfoPoint();
|
|
|
}
|
|
|
},
|
|
|
},
|
|
|
- mounted() {},
|
|
|
+ mounted() {
|
|
|
+ //
|
|
|
+ },
|
|
|
methods: {
|
|
|
...mapMutations(["ADDSTYLE"]),
|
|
|
// 展示标签输入框
|
|
@@ -350,36 +352,55 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
initDialog() {
|
|
|
- this.spaceData = {
|
|
|
- color: "",
|
|
|
- size: 1,
|
|
|
- fillColor: "",
|
|
|
- borderColor: "#cccccc",
|
|
|
- linewidth: 1,
|
|
|
- linestyle: "",
|
|
|
- };
|
|
|
this.tab = 0;
|
|
|
- this.$nextTick(() => {
|
|
|
- this.setLineStyle();
|
|
|
- });
|
|
|
// 获取信息点值
|
|
|
this.getInfoPoint();
|
|
|
- // 获取公式,属性信息
|
|
|
+ switch (this.type) {
|
|
|
+ case "equipment":
|
|
|
+ this.initEquipment();
|
|
|
+ break;
|
|
|
+ case "space":
|
|
|
+ this.initSpace();
|
|
|
+ break;
|
|
|
+ case "equipmentGroup":
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 初始化设备数据
|
|
|
+ */
|
|
|
+ initEquipment() {
|
|
|
const styleMap = { ...this.styleMap.defaultEquipStyle, ...(this.styleMap[this.code] || {}) };
|
|
|
+ console.log("styleMap:", styleMap);
|
|
|
const { formula, url, color, size } = styleMap;
|
|
|
this.chooseList = JSON.parse(formula || "[]");
|
|
|
// color 8位hex转rgba
|
|
|
+ // 设备数据
|
|
|
this.equipmentData = { url, color: new SColor(color).toRgba(), size, imgUrl: "" };
|
|
|
- // 设置设备/设备组/空间 图片地址
|
|
|
const imgUrl = url ? imgBaseUrl + url : "";
|
|
|
- // equipment 设备, equipmentGroup 设备组, space 空间
|
|
|
- const dict = {
|
|
|
- equipment: "equipmentData",
|
|
|
- equipmentGroup: "equipmentGroupData",
|
|
|
- space: "spaceData",
|
|
|
+ this.initImgUrl(imgUrl, "equipmentData");
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 初始化空间数据
|
|
|
+ */
|
|
|
+ initSpace() {
|
|
|
+ const spaceStyleMap = { ...this.styleMap.defaultZoneStyle, ...(this.styleMap[this.code] || {}) };
|
|
|
+ console.log("styleMap:", spaceStyleMap);
|
|
|
+ // eslint-disable-next-line prefer-const
|
|
|
+ let { formula, color, size, fillColor, strokeColor, lineWidth, lineStyle } = spaceStyleMap;
|
|
|
+ this.chooseList = JSON.parse(formula || "[]");
|
|
|
+ // lineStyle转换
|
|
|
+ lineStyle = this.borderLineOption[lineStyle].id;
|
|
|
+ this.spaceData = {
|
|
|
+ color: new SColor(color).toRgba(),
|
|
|
+ size,
|
|
|
+ fillColor: new SColor(fillColor).toRgba(),
|
|
|
+ strokeColor: new SColor(strokeColor).toRgba(),
|
|
|
+ lineWidth,
|
|
|
+ lineStyle,
|
|
|
};
|
|
|
- // console.log(imgUrl);
|
|
|
- imgUrl && this.initImgUrl(imgUrl, dict[this.type]);
|
|
|
},
|
|
|
/**
|
|
|
* 设置设备/设备组/空间 图片地址
|
|
@@ -393,18 +414,19 @@ export default {
|
|
|
this[data].imgUrl = res;
|
|
|
});
|
|
|
},
|
|
|
+ /**
|
|
|
+ * 查询信息点
|
|
|
+ */
|
|
|
async getInfoPoint() {
|
|
|
- // console.time(1);
|
|
|
const res = await dictQuery({ pageNumber: 1, pageSize: 1000, type: this.code });
|
|
|
- // console.timeEnd(1);
|
|
|
- // console.time(2);
|
|
|
let data = res.content;
|
|
|
// 按照一级名称,将一维数组拆分成二维数组
|
|
|
data = this._(data).groupBy("firstName").values().value();
|
|
|
this.list = data;
|
|
|
- // console.timeEnd(2);
|
|
|
},
|
|
|
- // 添加标签
|
|
|
+ /**
|
|
|
+ * 添加自定义公式
|
|
|
+ */
|
|
|
handleInputConfirm() {
|
|
|
const inputValue = this.inputValue;
|
|
|
if (inputValue) {
|
|
@@ -413,7 +435,7 @@ export default {
|
|
|
this.inputVisible = false;
|
|
|
this.inputValue = "";
|
|
|
},
|
|
|
- // 删除标签
|
|
|
+ // 删除公式 标签
|
|
|
handleClose(tag) {
|
|
|
this.chooseList.splice(this.chooseList.indexOf(tag), 1);
|
|
|
},
|
|
@@ -429,33 +451,24 @@ export default {
|
|
|
*/
|
|
|
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":
|
|
|
- color = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255).value;
|
|
|
- style = { color, size, formula, url };
|
|
|
+ style = this.uploadEquipment();
|
|
|
break;
|
|
|
case "equipmentGroup":
|
|
|
break;
|
|
|
case "space":
|
|
|
+ style = this.uploadSpace();
|
|
|
break;
|
|
|
-
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
- // 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("===================");
|
|
|
+ delete postStyle.defaultZoneStyle;
|
|
|
// 未发布接口
|
|
|
if (this.state === "Draft") {
|
|
|
res = await planerUpdate({
|
|
@@ -487,8 +500,19 @@ export default {
|
|
|
}
|
|
|
if (res.result === "success") {
|
|
|
this.ADDSTYLE({ id: this.code, style });
|
|
|
- // 修改图上设备类 样式
|
|
|
- SPlanDecorator.equipMapDecorator(this.code, this.equipItemMap, this.styleMap);
|
|
|
+ // 修改图上设备类/设备组/空间 样式
|
|
|
+ switch (this.type) {
|
|
|
+ case "equipment":
|
|
|
+ SPlanDecorator.equipMapDecorator(this.code, this.equipItemMap, this.styleMap);
|
|
|
+ break;
|
|
|
+ case "equipmentGroup":
|
|
|
+ break;
|
|
|
+ case "space":
|
|
|
+ SPlanDecorator.zoneMapDecorator(this.code, this.zoneIteMap, this.styleMap);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
this.dialogVisible = false;
|
|
|
this.$emit("closeModal");
|
|
|
} else {
|
|
@@ -496,6 +520,39 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
/**
|
|
|
+ * 设备上传参数处理
|
|
|
+ */
|
|
|
+ uploadEquipment() {
|
|
|
+ const formula = JSON.stringify(this.chooseList);
|
|
|
+ // eslint-disable-next-line prefer-const
|
|
|
+ let { color, url, size } = this.equipmentData;
|
|
|
+ const colorlist = rgbaNum(color);
|
|
|
+ color = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255).value;
|
|
|
+ return { color, size, formula, url };
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 空间上传参数处理
|
|
|
+ */
|
|
|
+ uploadSpace() {
|
|
|
+ const formula = JSON.stringify(this.chooseList);
|
|
|
+ const handleColor = (color) => {
|
|
|
+ const colorlist = rgbaNum(color);
|
|
|
+ return new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255).value;
|
|
|
+ };
|
|
|
+ // eslint-disable-next-line prefer-const
|
|
|
+ let { color, size, fillColor, strokeColor, lineWidth, lineStyle } = this.spaceData;
|
|
|
+ lineStyle = this.borderLineOption.filter((v) => v.id === lineStyle)[0]._value;
|
|
|
+ return {
|
|
|
+ color: handleColor(color),
|
|
|
+ size,
|
|
|
+ formula,
|
|
|
+ fillColor: handleColor(fillColor),
|
|
|
+ strokeColor: handleColor(strokeColor),
|
|
|
+ lineWidth,
|
|
|
+ lineStyle,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ /**
|
|
|
* 属性
|
|
|
*/
|
|
|
/** ----------设备的属性---------- */
|
|
@@ -589,11 +646,12 @@ export default {
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
|
changeLineWidth() {},
|
|
|
changeLineStyle() {
|
|
|
- // this.setLineStyle();
|
|
|
+ this.setLineStyle();
|
|
|
},
|
|
|
setLineStyle() {
|
|
|
- const img = this.borderLineOption.filter((v) => v.id === this.spaceData.linestyle)[0]?.src;
|
|
|
- // // console.log(img);
|
|
|
+ console.log("setLineStyle");
|
|
|
+ const img = this.borderLineOption.filter((v) => v.id === this.spaceData.lineStyle)[0]?.src;
|
|
|
+ console.log(img);
|
|
|
if (img) {
|
|
|
this.$refs.selectLine?.$el?.children[0].children[0].setAttribute(
|
|
|
"style",
|