瀏覽代碼

'update_2020.12.15_21:44'

zhangyu 4 年之前
父節點
當前提交
f54390449a

+ 8 - 6
src/components/editview/basePlanEditer.vue

@@ -173,7 +173,7 @@ export default {
                 //是否展示名称
                 // t.showBaseName = true;
                 // 是否可选
-                // t.selectable = true;
+                t.selectable = false;
                 // t.connect("onMouseDown", this, this.clickSpaceItem);
 
                 // 添加图例
@@ -183,35 +183,35 @@ export default {
                 // 是否显示
                 // t.visible = this.isShowWall;
                 // 是否可选
-                // t.selectable = true;
+                t.selectable = false;
                 this.scene.addItem(t);
             });
             parser.virtualWallList.forEach((t) => {
                 // 是否显示
                 // t.visible = this.isShowVirtualWall;
                 // 是否可选
-                // t.selectable = true;
+                t.selectable = false;
                 this.scene.addItem(t);
             });
             parser.doorList.forEach((t) => {
                 // 是否显示
                 // t.visible = this.isShowDoor;
                 // 是否可选
-                // t.selectable = true;
+                t.selectable = false;
                 this.scene.addItem(t);
             });
             parser.columnList.forEach((t) => {
                 // 是否显示
                 // t.visible = this.isShowColumn;
                 // 是否可选
-                // t.selectable = true;
+                t.selectable = false;
                 this.scene.addItem(t);
             });
             parser.casementList.forEach((t) => {
                 // 是否显示
                 // t.visible = this.isShowWindow;
                 // 是否可选
-                // t.selectable = true;
+                t.selectable = false;
                 this.scene.addItem(t);
             });
             // 画板是否可拖动
@@ -472,6 +472,8 @@ export default {
                             equip.pos = { x: 0, y: 0, z: 0 };
                         }
                     }
+                    // 添加设备对象类型
+                    equip.properties = {type: "BaseEquipment"}
                     const equipItem = new SPlanEquipment(null, equip);
                     equipItem.selectable = true;
                     equipItem.moveable = true;

+ 449 - 491
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -1,532 +1,490 @@
 <template>
-  <div id="equip_pro">
-    <div class="title">设备实例本地名称</div>
-    <el-tabs v-model="activeName" @tab-click="handleClick">
-      <el-tab-pane label="属性" name="first">
-        <div class="property">
-          <div class="base-property">
-            <div>
-              <span>W</span>
-              <el-input
-                style="width: 74px; margin-left: 6px"
-                size="mini"
-                v-model="width"
-                @input="changeWidth"
-                placeholder="请输入内容"
-              ></el-input>
-            </div>
-            <div>
-              <span>H</span>
-              <el-input
-                style="width: 74px; margin-left: 6px"
-                size="mini"
-                v-model="height"
-                @input="changeHeight"
-                placeholder="请输入内容"
-              ></el-input>
-            </div>
-          </div>
-          <div class="base-property base-property-left">
-            <div>
-              <span>R</span>
-              <el-input
-                style="width: 74px; margin-left: 6px"
-                size="mini"
-                disabled
-                @input="changeWidth"
-                placeholder="请输入内容"
-              ></el-input>
-            </div>
-          </div>
-          <div class="imgUpdate">
-            <div class="img-tit">设计图</div>
-            <div class="btn-list">
-              <el-upload
-                class="avatar-uploader"
-                action="https://jsonplaceholder.typicode.com/posts/"
-                :show-file-list="false"
-                :before-upload="beforeAvatarUpload"
-              >
-                <Button type="default">上传文件</Button>
-              </el-upload>
-            </div>
-          </div>
-          <div class="imgUpdate">
-            <div class="img-tit">附加数据</div>
-            <div class="textarea">
-              <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容">
-              </el-input>
-            </div>
-          </div>
-        </div>
-      </el-tab-pane>
-      <el-tab-pane label="信息点" name="second">
-        <div class="msgPoint-box">
-          <Input
-            class="baseItemInput"
-            :width="200"
-            iconType="search"
-            placeholder="搜索信息点"
-            v-model="getPressMsg"
-            @pressEnter="pressEnter"
-            @clear="pressEnter"
-          />
-          <div
-            class="msgPoint-list"
-            ref="localDom"
-            v-show="!pressMsgData.length"
-          >
-            <div class="type-list" v-for="(item, key) in msgData" :key="key">
-              <div class="type-title" @click="clips(item)">
-                <i
-                  v-bind:class="[
-                    item.showChildren ? 'caret-icon-active' : 'caret-icon',
-                    'el-icon-caret-bottom',
-                  ]"
-                ></i>
-                <span>{{ item.tagName }}</span>
-              </div>
-              <el-collapse-transition>
-                <ul class="list" v-show="item.showChildren">
-                  <li v-for="(a, b) in item.children" :key="'i' + b">
-                    <Checkbox
-                      :checked="a.checked ? 'checked' : 'uncheck'"
-                      @change="changeCheck(a)"
-                    />
-                    <p>{{ a.name }}</p>
-                  </li>
-                </ul>
-              </el-collapse-transition>
-            </div>
-          </div>
-          <ul class="msgPoint-list-press" v-show="pressMsgData.length">
-            <li v-for="(a, b) in pressMsgData" :key="b">
-              <Checkbox
-                :checked="a.checked ? 'checked' : 'uncheck'"
-                @change="changeCheck(a)"
-              />
-              <p>{{ a.name }}</p>
-            </li>
-          </ul>
-        </div>
-      </el-tab-pane>
-    </el-tabs>
-  </div>
+    <div id="equip_pro">
+        <div class="title">设备实例本地名称</div>
+        <el-tabs v-model="activeName" @tab-click="handleClick">
+            <el-tab-pane label="基本信息" name="first">
+                <div class="equip-info-box">
+                    <div class="equip-info-item">
+                        <p class="equip-info-title">本地名称:</p>
+                        <h3 class="equip-info-value">暖通分区B1立式水泵</h3>
+                    </div>
+                    <div class="equip-info-item">
+                        <p class="equip-info-title">本地名称:</p>
+                        <h3 class="equip-info-value">暖通分区B1立式水泵</h3>
+                    </div>
+                    <div class="equip-info-item">
+                        <p class="equip-info-title">BIM坐标(XYZ):</p>
+                        <h3 class="equip-info-value">暖通分区B1立式水泵</h3>
+                    </div>
+                    <el-button size="small" style="width: 100%;" >查看详情</el-button>
+                </div>
+            </el-tab-pane>
+            <el-tab-pane label="属性" name="second">
+                <div class="property">
+                    <div class="base-property">
+                        <div>
+                            <span>W</span>
+                            <el-input
+                                style="width: 74px; margin-left: 6px"
+                                size="mini"
+                                v-model="width"
+                                @input="changeWidth"
+                                placeholder="请输入内容"
+                            ></el-input>
+                        </div>
+                        <div>
+                            <span>H</span>
+                            <el-input
+                                style="width: 74px; margin-left: 6px"
+                                size="mini"
+                                v-model="height"
+                                @input="changeHeight"
+                                placeholder="请输入内容"
+                            ></el-input>
+                        </div>
+                    </div>
+                    <div class="base-property base-property-left">
+                        <div>
+                            <span>R</span>
+                            <el-input
+                                style="width: 74px; margin-left: 6px"
+                                size="mini"
+                                disabled
+                                @input="changeWidth"
+                                placeholder="请输入内容"
+                            ></el-input>
+                        </div>
+                    </div>
+                    <div class="imgUpdate">
+                        <div class="img-tit">设计图</div>
+                        <div class="btn-list">
+                            <el-upload
+                                class="avatar-uploader"
+                                action="https://jsonplaceholder.typicode.com/posts/"
+                                :show-file-list="false"
+                                :before-upload="beforeAvatarUpload"
+                            >
+                                <Button type="default">上传文件</Button>
+                            </el-upload>
+                        </div>
+                    </div>
+                    <div class="imgUpdate">
+                        <div class="img-tit">附加数据</div>
+                        <div class="textarea">
+                            <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容"> </el-input>
+                        </div>
+                    </div>
+                </div>
+            </el-tab-pane>
+        </el-tabs>
+    </div>
 </template>
 <script>
 import { queryEquipMsg, queryDict } from "@/api/editer";
 import bus from "@/bus/bus";
 const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
 export default {
-  props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height","AnotherMsg"],
-  data() {
-    return {
-      width: 0,
-      height: 0,
-      activeName: "first",
-      width: "",
-      height: "",
-      msgData: [], //存储二级树
-      pressMsgData: [], // 搜索后得信息点数组
-      getPressMsg: "", //输入信息
-      local: "", //局部加载
-      anotherMsg: "", // 附加信息
-    };
-  },
-  methods: {
-    // 折叠信息点操作
-    clips(item) {
-      item.showChildren = !item.showChildren;
-    },
-    // 点击切换
-    handleClick(tab, event) {
-      // 设置高度
-      if (tab.paneName == "second") {
-        const box = document.getElementsByClassName("msgPoint-list")[0];
-        const box2 = document.getElementsByClassName("msgPoint-list-press")[0];
-        box.style.height = this.equipHeight;
-        box2.style.height = this.equipHeight;
-      }
-    },
-    // 设置宽
-    changeWidth(val) {
-      bus.$emit("updateStyle", "sWidth", val);
-    },
-    // 设置高
-    changeHeight(val) {
-      bus.$emit("updateStyle", "sHeight", val);
-    },
-    // 设置附加信息
-    changeAnotherMsg(val) {
-      bus.$emit("updateStyle", "anotherMsg", val);
-    },
-    beforeAvatarUpload(file) {
-      let that = this;
-      const fileReader = new FileReader();
-      fileReader.readAsDataURL(file); //读取图片
-      const ftype = file.type;
-      const fname = file.name;
-      const uploadKey = file.uid;
-      const imgType = ftype.split(".")[ftype.length - 1];
-      fileReader.addEventListener("load", function () {
-        // 读取完成
-        let res = fileReader.result;
-        //将canvas的base64位图片转换成图片png的file
-        var blob = that.dataURLtoBlob(res, ftype);
-        //将其转换成file对象
-        let file = new File([blob], fname, {
-          type: ftype,
-          lastModified: Date.now(),
-        }); //blob转file
-
-        // try sending
-        let reader = new FileReader();
-        let fileType = file.name.split(".");
-        let imgType = fileType[fileType.length - 1];
-        let CreateTime = that.formatDate(new Date(file.lastModified));
-        reader.onloadend = function () {
-          // 这个事件在读取结束后,无论成功或者失败都会触发
-          if (reader.error) {
-          } else {
-            // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
-            var xhr = new XMLHttpRequest();
-            xhr.open(
-              /* method */
-              "POST",
-              /* target url */
-              "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" +
-                "&key=" +
-                uploadKey +
-                "." +
-                imgType
-            );
-            xhr.send(reader.result);
-            xhr.onreadystatechange = function () {
-              if (xhr.readyState == 4) {
-                if (xhr.status == 200) {
-                  that.url = baseUrl + uploadKey + "." + imgType;
-                  bus.$emit(
-                    "updateStyle",
-                    "url",
-                    baseUrl + uploadKey + "." + imgType
-                  );
-                }
-              }
-            };
-          }
+    props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height", "AnotherMsg"],
+    data() {
+        return {
+            width: 0,
+            height: 0,
+            activeName: "first",
+            width: "",
+            height: "",
+            msgData: [], //存储二级树
+            pressMsgData: [], // 搜索后得信息点数组
+            getPressMsg: "", //输入信息
+            local: "", //局部加载
+            anotherMsg: "", // 附加信息
         };
-        reader.readAsArrayBuffer(file);
-      });
-    },
-    dataURLtoBlob(dataURI, type) {
-      var binary = atob(dataURI.split(",")[1]);
-      var array = [];
-      for (var i = 0; i < binary.length; i++) {
-        array.push(binary.charCodeAt(i));
-      }
-      return new Blob([new Uint8Array(array)], { type: type });
-    },
-    formatDate(now) {
-      let year = now.getFullYear();
-      let month = now.getMonth() + 1;
-      let date = now.getDate();
-      let hour = now.getHours();
-      let minute = now.getMinutes();
-      let second = now.getSeconds();
-      return (
-        year +
-        "-" +
-        month +
-        "-" +
-        (date > 10 ? date : "0" + date) +
-        " " +
-        hour +
-        ":" +
-        (minute > 10 ? minute : "0" + minute) +
-        ":" +
-        (second > 10 ? second : "0" + second)
-      );
-    },
-    // 切换选中选项
-    changeCheck(item) {
-      item.checked = !item.checked;
-      // 添加设备信息点
-      Object.assign(item, {
-        equipId: this.EquipData.attachObjectIds[0],
-      });
-      bus.$emit("changeEquipMsgPoint", item);
-    },
-    // 搜索回车操作
-    pressEnter() {
-      const list = [];
-      if (!this.getPressMsg) {
-        this.pressMsgData = [];
-        return;
-      }
-      // 对信息点相同得提取出来
-      this.msgData.forEach((item) => {
-        item.children.forEach((a) => {
-          if (a.name.includes(this.getPressMsg)) {
-            list.push(a);
-          }
-        });
-      });
-      this.pressMsgData = list;
     },
-  },
-  watch: {
-    EquipData(val) {
-      this.msgData = []; //存储二级树
-      this.pressMsgData = []; // 搜索后得信息点数组
-      this.getPressMsg = ""; //输入信息
-      // 启动局部 loading
-
-      this.local = this.$loading({
-        el: this.$refs.localDom,
-        type: "local",
-        size: "min",
-      });
+    methods: {
+        // 折叠信息点操作
+        clips(item) {
+            item.showChildren = !item.showChildren;
+        },
+        // 点击切换
+        handleClick(tab, event) {
+            // 设置高度
+            if (tab.paneName == "second") {
+                const box = document.getElementsByClassName("msgPoint-list")[0];
+                const box2 = document.getElementsByClassName("msgPoint-list-press")[0];
+                box.style.height = this.equipHeight;
+                box2.style.height = this.equipHeight;
+            }
+        },
+        // 设置宽
+        changeWidth(val) {
+            bus.$emit("updateStyle", "sWidth", val);
+        },
+        // 设置高
+        changeHeight(val) {
+            bus.$emit("updateStyle", "sHeight", val);
+        },
+        // 设置附加信息
+        changeAnotherMsg(val) {
+            bus.$emit("updateStyle", "anotherMsg", val);
+        },
+        beforeAvatarUpload(file) {
+            let that = this;
+            const fileReader = new FileReader();
+            fileReader.readAsDataURL(file); //读取图片
+            const ftype = file.type;
+            const fname = file.name;
+            const uploadKey = file.uid;
+            const imgType = ftype.split(".")[ftype.length - 1];
+            fileReader.addEventListener("load", function () {
+                // 读取完成
+                let res = fileReader.result;
+                //将canvas的base64位图片转换成图片png的file
+                var blob = that.dataURLtoBlob(res, ftype);
+                //将其转换成file对象
+                let file = new File([blob], fname, {
+                    type: ftype,
+                    lastModified: Date.now(),
+                }); //blob转file
 
-      const data = {
-        Type: val.properties.classCode,
-      };
-      queryDict(data)
-        .then((res) => {
-          let arr = [];
-          // 勾选设备中选中的对象
-          const msgData = res.content;
-          // 设置已经勾选数据
-          if (this.InfoPointList && this.InfoPointList.length) {
-            msgData.map((item) => {
-              item.checked = false;
-              this.InfoPointList.forEach((a) => {
-                if (a.id == item.id) {
-                  item.checked = true;
-                }
-              });
-              return item;
+                // try sending
+                let reader = new FileReader();
+                let fileType = file.name.split(".");
+                let imgType = fileType[fileType.length - 1];
+                let CreateTime = that.formatDate(new Date(file.lastModified));
+                reader.onloadend = function () {
+                    // 这个事件在读取结束后,无论成功或者失败都会触发
+                    if (reader.error) {
+                    } else {
+                        // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
+                        var xhr = new XMLHttpRequest();
+                        xhr.open(
+                            /* method */
+                            "POST",
+                            /* target url */
+                            "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" +
+                                "&key=" +
+                                uploadKey +
+                                "." +
+                                imgType
+                        );
+                        xhr.send(reader.result);
+                        xhr.onreadystatechange = function () {
+                            if (xhr.readyState == 4) {
+                                if (xhr.status == 200) {
+                                    that.url = baseUrl + uploadKey + "." + imgType;
+                                    bus.$emit("updateStyle", "url", baseUrl + uploadKey + "." + imgType);
+                                }
+                            }
+                        };
+                    }
+                };
+                reader.readAsArrayBuffer(file);
             });
-          } else {
-            msgData.map((item) => {
-              item.checked = false;
-              return item;
+        },
+        dataURLtoBlob(dataURI, type) {
+            var binary = atob(dataURI.split(",")[1]);
+            var array = [];
+            for (var i = 0; i < binary.length; i++) {
+                array.push(binary.charCodeAt(i));
+            }
+            return new Blob([new Uint8Array(array)], { type: type });
+        },
+        formatDate(now) {
+            let year = now.getFullYear();
+            let month = now.getMonth() + 1;
+            let date = now.getDate();
+            let hour = now.getHours();
+            let minute = now.getMinutes();
+            let second = now.getSeconds();
+            return (
+                year +
+                "-" +
+                month +
+                "-" +
+                (date > 10 ? date : "0" + date) +
+                " " +
+                hour +
+                ":" +
+                (minute > 10 ? minute : "0" + minute) +
+                ":" +
+                (second > 10 ? second : "0" + second)
+            );
+        },
+        // 切换选中选项
+        changeCheck(item) {
+            item.checked = !item.checked;
+            // 添加设备信息点
+            Object.assign(item, {
+                equipId: this.EquipData.attachObjectIds[0],
             });
-          }
-          //  生成二级树
-          msgData.forEach((item) => {
-            const itemTag = item.secondTag
-              ? item.secondTag
-              : item.firstTag
-              ? item.firstTag
-              : "--";
-            if (arr.length) {
-              let index = -1;
-              arr.forEach((aItem) => {
-                if (aItem.tag == itemTag) {
-                  index = 1;
-                  aItem.children.push(item);
-                  aItem.number++;
-                }
-              });
-
-              if (index == -1) {
-                const tag = item.secondTag
-                  ? item.secondTag
-                  : item.firstTag
-                  ? item.firstTag
-                  : "--";
-                const tagName = item.secondName
-                  ? item.secondName
-                  : item.firstName
-                  ? item.firstName
-                  : "--";
-                let obj = {
-                  tagName: tagName,
-                  tag: tag,
-                  children: [item],
-                  number: 1,
-                  showChildren: true,
-                };
-                arr.push(obj);
-              }
-            } else {
-              const tag = item.secondTag
-                ? item.secondTag
-                : item.firstTag
-                ? item.firstTag
-                : "--";
-              const tagName = item.secondName
-                ? item.secondName
-                : item.firstName
-                ? item.firstName
-                : "--";
-              let obj = {
-                tagName: tagName,
-                tag: tag,
-                children: [],
-                number: 1,
-                showChildren: true,
-              };
-              obj.children.push(item);
-              arr.push(obj);
+            bus.$emit("changeEquipMsgPoint", item);
+        },
+        // 搜索回车操作
+        pressEnter() {
+            const list = [];
+            if (!this.getPressMsg) {
+                this.pressMsgData = [];
+                return;
             }
-          });
-          this.msgData = arr;
-          this.$loading.close(this.local);
-        })
-        .catch((err) => {
-          console.log("接口报错", err);
-          this.$loading.close(this.local);
-        });
-    },
-    Width(val) {
-      this.width = val;
-    },
-    Height(val) {
-      this.height = val;
-    },
-    AnotherMsg(val) {
-      this.anotherMsg = val;
+            // 对信息点相同得提取出来
+            this.msgData.forEach((item) => {
+                item.children.forEach((a) => {
+                    if (a.name.includes(this.getPressMsg)) {
+                        list.push(a);
+                    }
+                });
+            });
+            this.pressMsgData = list;
+        },
     },
-  },
-  mounted() {},
+    watch: {
+        EquipData(val) {
+            this.msgData = []; //存储二级树
+            this.pressMsgData = []; // 搜索后得信息点数组
+            this.getPressMsg = ""; //输入信息
+            // 启动局部 loading
+
+            this.local = this.$loading({
+                el: this.$refs.localDom,
+                type: "local",
+                size: "min",
+            });
+
+            const data = {
+                Type: val.properties.classCode,
+            };
+            queryDict(data)
+                .then((res) => {
+                    let arr = [];
+                    // 勾选设备中选中的对象
+                    const msgData = res.content;
+                    // 设置已经勾选数据
+                    if (this.InfoPointList && this.InfoPointList.length) {
+                        msgData.map((item) => {
+                            item.checked = false;
+                            this.InfoPointList.forEach((a) => {
+                                if (a.id == item.id) {
+                                    item.checked = true;
+                                }
+                            });
+                            return item;
+                        });
+                    } else {
+                        msgData.map((item) => {
+                            item.checked = false;
+                            return item;
+                        });
+                    }
+                    //  生成二级树
+                    msgData.forEach((item) => {
+                        const itemTag = item.secondTag ? item.secondTag : item.firstTag ? item.firstTag : "--";
+                        if (arr.length) {
+                            let index = -1;
+                            arr.forEach((aItem) => {
+                                if (aItem.tag == itemTag) {
+                                    index = 1;
+                                    aItem.children.push(item);
+                                    aItem.number++;
+                                }
+                            });
+
+                            if (index == -1) {
+                                const tag = item.secondTag ? item.secondTag : item.firstTag ? item.firstTag : "--";
+                                const tagName = item.secondName ? item.secondName : item.firstName ? item.firstName : "--";
+                                let obj = {
+                                    tagName: tagName,
+                                    tag: tag,
+                                    children: [item],
+                                    number: 1,
+                                    showChildren: true,
+                                };
+                                arr.push(obj);
+                            }
+                        } else {
+                            const tag = item.secondTag ? item.secondTag : item.firstTag ? item.firstTag : "--";
+                            const tagName = item.secondName ? item.secondName : item.firstName ? item.firstName : "--";
+                            let obj = {
+                                tagName: tagName,
+                                tag: tag,
+                                children: [],
+                                number: 1,
+                                showChildren: true,
+                            };
+                            obj.children.push(item);
+                            arr.push(obj);
+                        }
+                    });
+                    this.msgData = arr;
+                    this.$loading.close(this.local);
+                })
+                .catch((err) => {
+                    console.log("接口报错", err);
+                    this.$loading.close(this.local);
+                });
+        },
+        Width(val) {
+            this.width = val;
+        },
+        Height(val) {
+            this.height = val;
+        },
+        AnotherMsg(val) {
+            this.anotherMsg = val;
+        },
+    }
 };
 </script>
 <style lang="less" scoped>
 ul,
 li,
 p {
-  margin: 0;
-  padding: 0;
-  list-style-type: none;
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
 }
 #equip_pro {
-  .title {
-    height: 47px;
-    border-bottom: 1px solid #979797;
-    color: #646c73;
-    font-size: 16px;
-    padding-left: 12px;
-    box-sizing: border-box;
-  }
-  .property {
-    .base-property {
-      display: flex;
-      align-items: center;
-      justify-content: space-around;
+    .title {
+        height: 40px;
+        line-height: 40px;
+        color: #000000;
+        background: #F8F9FA;
+        font-size: 14px;
+        padding-left: 12px;
+        box-sizing: border-box;
     }
-    .base-property-left {
-      display: flex;
-      align-items: center;
-      justify-content: flex-start;
-      padding-left: 12px;
-      padding-top: 12px;
-      box-sizing: border-box;
+    /deep/ .el-tabs__item {
+        padding: 0 20px!important;
     }
-    .imgUpdate {
-      border-top: 1px solid #e4e5e7;
-      width: 100%;
-      margin-bottom: 16px;
-      padding: 0 12px 0 12px;
-      box-sizing: border-box;
-      .img-tit {
-        margin: 12px 0 12px 0;
-        color: #646a73;
-        font-size: 12px;
-      }
+    .equip-info-box {
+        padding: 0 12px 12px;
+        border-bottom: 1px solid #E4E5E7;
+        .equip-info-item {
+            margin-bottom: 8px;
+            .equip-info-title {
+                color: #8D9399;
+            }
+            .equip-info-value {
+                color: #1F2429;
+            }
+        }
     }
-  }
-  .msgPoint-box {
-    width: 100%;
-    height: 100%;
-    padding: 0 12px 0 12px;
-    box-sizing: border-box;
-    .msgPoint-list {
-      margin-top: 20px;
-      height: 100%;
-      overflow-y: scroll;
-      .type-list {
-        .type-title {
-          cursor: pointer;
-          margin-bottom: 10px;
-          span {
-            margin-left: 12px;
-          }
+    .property {
+        .base-property {
+            display: flex;
+            align-items: center;
+            justify-content: space-around;
         }
-        ul {
-          width: 100%;
-          padding-left: 28px;
-          li {
+        .base-property-left {
             display: flex;
-            height: 40px;
             align-items: center;
             justify-content: flex-start;
-            cursor: pointer;
-            p {
-              margin-left: 12px;
-            }
-            &:hover {
-              background: #f5f6f7;
+            padding-left: 12px;
+            padding-top: 12px;
+            box-sizing: border-box;
+        }
+        .imgUpdate {
+            border-top: 1px solid #e4e5e7;
+            width: 100%;
+            margin-bottom: 16px;
+            padding: 0 12px 0 12px;
+            box-sizing: border-box;
+            .img-tit {
+                margin: 12px 0 12px 0;
+                color: #646a73;
+                font-size: 12px;
             }
-          }
         }
-      }
     }
-    .msgPoint-list-press {
-      margin-top: 12px;
-      overflow-y: scroll;
-      li {
-        display: flex;
-        height: 40px;
-        align-items: center;
-        justify-content: flex-start;
-        cursor: pointer;
-        p {
-          margin-left: 12px;
+    .msgPoint-box {
+        width: 100%;
+        height: 100%;
+        padding: 0 12px 0 12px;
+        box-sizing: border-box;
+        .msgPoint-list {
+            margin-top: 20px;
+            height: 100%;
+            overflow-y: scroll;
+            .type-list {
+                .type-title {
+                    cursor: pointer;
+                    margin-bottom: 10px;
+                    span {
+                        margin-left: 12px;
+                    }
+                }
+                ul {
+                    width: 100%;
+                    padding-left: 28px;
+                    li {
+                        display: flex;
+                        height: 40px;
+                        align-items: center;
+                        justify-content: flex-start;
+                        cursor: pointer;
+                        p {
+                            margin-left: 12px;
+                        }
+                        &:hover {
+                            background: #f5f6f7;
+                        }
+                    }
+                }
+            }
         }
-        &:hover {
-          background: #f5f6f7;
+        .msgPoint-list-press {
+            margin-top: 12px;
+            overflow-y: scroll;
+            li {
+                display: flex;
+                height: 40px;
+                align-items: center;
+                justify-content: flex-start;
+                cursor: pointer;
+                p {
+                    margin-left: 12px;
+                }
+                &:hover {
+                    background: #f5f6f7;
+                }
+            }
         }
-      }
     }
-  }
-  .caret-icon {
-    animation: nowhirling 0.2s linear forwards;
-  }
-  .caret-icon-active {
-    animation: whirling 0.2s linear forwards;
-  }
-  @keyframes whirling {
-    0% {
-      transform: rotate(-90deg);
-      -ms-transform: rotate(-90deg); /* Internet Explorer */
-      -moz-transform: rotate(-90deg); /* Firefox */
-      -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
-      -o-transform: rotate(-90deg); /* Opera */
+    .caret-icon {
+        animation: nowhirling 0.2s linear forwards;
     }
-    100% {
-      transform: rotate(0deg);
-      -ms-transform: rotate(0deg); /* Internet Explorer */
-      -moz-transform: rotate(0deg); /* Firefox */
-      -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
-      -o-transform: rotate(0deg); /* Opera */
+    .caret-icon-active {
+        animation: whirling 0.2s linear forwards;
     }
-  }
-  @keyframes nowhirling {
-    0% {
-      transform: rotate(0deg);
-      -ms-transform: rotate(0deg); /* Internet Explorer */
-      -moz-transform: rotate(0deg); /* Firefox */
-      -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
-      -o-transform: rotate(0deg); /* Opera */
+    @keyframes whirling {
+        0% {
+            transform: rotate(-90deg);
+            -ms-transform: rotate(-90deg); /* Internet Explorer */
+            -moz-transform: rotate(-90deg); /* Firefox */
+            -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
+            -o-transform: rotate(-90deg); /* Opera */
+        }
+        100% {
+            transform: rotate(0deg);
+            -ms-transform: rotate(0deg); /* Internet Explorer */
+            -moz-transform: rotate(0deg); /* Firefox */
+            -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
+            -o-transform: rotate(0deg); /* Opera */
+        }
     }
-    100% {
-      transform: rotate(-90deg);
-      -ms-transform: rotate(-90deg); /* Internet Explorer */
-      -moz-transform: rotate(-90deg); /* Firefox */
-      -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
-      -o-transform: rotate(-90deg); /* Opera */
+    @keyframes nowhirling {
+        0% {
+            transform: rotate(0deg);
+            -ms-transform: rotate(0deg); /* Internet Explorer */
+            -moz-transform: rotate(0deg); /* Firefox */
+            -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
+            -o-transform: rotate(0deg); /* Opera */
+        }
+        100% {
+            transform: rotate(-90deg);
+            -ms-transform: rotate(-90deg); /* Internet Explorer */
+            -moz-transform: rotate(-90deg); /* Firefox */
+            -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
+            -o-transform: rotate(-90deg); /* Opera */
+        }
     }
-  }
 }
 </style>

+ 12 - 11
src/components/editview/rightPropertyBar/property.vue

@@ -135,13 +135,13 @@ export default {
                 this.itemType = "";
             }
             // 对设备做出判断 看是否点入的是设备相关信息点
-            if (this.itemType == "BaseEquipment") {
-                this.EquipData = itemList[0].legendData;
-                if (itemList[0].curTextItem) {
-                    this.itemType = "BaseEquipmentMsg";
-                }
-            }
-            console.log(`  this.itemType: ,${this.itemType}`);
+            // if (this.itemType == "BaseEquipment") {
+            //     this.EquipData = itemList[0].legendData;
+            //     if (itemList[0].curTextItem) {
+            //         this.itemType = "BaseEquipmentMsg";
+            //     }
+            // }
+            console.log(`this.itemType: ,${this.itemType}`);
             // 同步联动样式
             this.linkStyle(itemList);
         },
@@ -189,11 +189,12 @@ export default {
                 } else {
                     this.infoPointList = [];
                 }
-            } else if (this.itemType == "BaseEquipmentMsg") {
-                // 获取信息点详情信息
-                this.EquipMsgData = item.curTextItem.propertyData;
-                this.EquipMsgItem = item.curTextItem;
             }
+            // else if (this.itemType == "BaseEquipmentMsg") {
+            //     // 获取信息点详情信息
+            //     this.EquipMsgData = item.curTextItem.propertyData;
+            //     this.EquipMsgItem = item.curTextItem;
+            // }
         },
         // 修改设备信息点数据
         changeEquipMsg(val) {

+ 0 - 1
src/lib/item/SPlanEquipment.ts

@@ -25,7 +25,6 @@
  */
 
 import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
-import { Legend } from "@persagy-web/big-edit";
 import { Example } from "../index";
 import { SBaseIconTextEdit, SBaseTextEdit } from "@persagy-web/edit";
 import { svgTobase64, uuid } from "@persagy-web/big-edit/lib/until";