瀏覽代碼

右侧属性值栏位,绝对定位

yunxing 4 年之前
父節點
當前提交
b4768257d9

+ 210 - 224
src/components/editview/leftToolBar/addBaseItem.vue

@@ -1,269 +1,255 @@
 <!-- 添加基础实例 -->
 
 <template>
-  <div class="base-item-list">
-    <Input
-      class="baseItemInput"
-      :width="188"
-      placeholder="搜索图例名称"
-      iconType="search"
-      v-model="baseItemVal"
-      @pressEnter="pressEnter"
-      @clear="pressEnter"
-    />
-    <div
-      v-show="!baseItemList.length"
-      class="lengend-item"
-      v-for="(item, index) in baseEditItems"
-      :key="index"
-    >
-      <div class="legend-title" @click="collapse(item)">
-        <span>{{ item.title }}</span
-        ><i
-          :class="[
-            item.isClip ? 'caret-icon-active' : 'caret-icon',
-            'el-icon-arrow-down',
-          ]"
-        ></i>
-      </div>
-      <el-collapse-transition>
-        <div v-show="item.isClip">
-          <div
-            class="legend-content"
-            v-for="(itemList, i) in item.itemList"
-            :key="i"
-          >
-            <div @click="collapse(itemList)" class="title">
-              {{ itemList.title }}
-              <i
-                v-bind:class="[
-                  itemList.isClip ? 'caret-icon-active' : 'caret-icon',
-                  'el-icon-caret-bottom ',
-                ]"
-              ></i>
+    <div class="base-item-list">
+        <Input
+            class="baseItemInput"
+            :width="188"
+            placeholder="搜索图例名称"
+            iconType="search"
+            v-model="baseItemVal"
+            @pressEnter="pressEnter"
+            @clear="pressEnter"
+        />
+        <div v-show="!baseItemList.length" class="lengend-item" v-for="(item, index) in baseEditItems" :key="index">
+            <div class="legend-title" @click="collapse(item)">
+                <span>{{ item.title }}</span
+                ><i :class="[item.isClip ? 'caret-icon-active' : 'caret-icon', 'el-icon-arrow-down']"></i>
             </div>
             <el-collapse-transition>
-              <ul v-show="itemList.isClip">
-                <li
-                  :class="{ 'btn-active': editCmd == baseItem.id }"
-                  v-for="(baseItem, k) in itemList.itemList"
-                  :key="k"
-                  @click="drawItem(baseItem.id)"
-                  :title="baseItem.name"
-                >
-                  <img class="icon" :src="baseItem.icon" />
-                  <span class="iconName">{{ baseItem.name }}</span>
-                </li>
-              </ul>
+                <div v-show="item.isClip">
+                    <div class="legend-content" v-for="(itemList, i) in item.itemList" :key="i">
+                        <div @click="collapse(itemList)" class="title">
+                            {{ itemList.title }}
+                            <i v-bind:class="[itemList.isClip ? 'caret-icon-active' : 'caret-icon', 'el-icon-caret-bottom ']"></i>
+                        </div>
+                        <el-collapse-transition>
+                            <ul v-show="itemList.isClip">
+                                <li
+                                    :class="{ 'btn-active': editCmd == baseItem.id }"
+                                    v-for="(baseItem, k) in itemList.itemList"
+                                    :key="k"
+                                    @click="drawItem(baseItem.id)"
+                                    :title="baseItem.name"
+                                >
+                                    <img class="icon" :src="baseItem.icon" />
+                                    <span class="iconName">{{ baseItem.name }}</span>
+                                </li>
+                            </ul>
+                        </el-collapse-transition>
+                    </div>
+                </div>
             </el-collapse-transition>
-          </div>
         </div>
-      </el-collapse-transition>
+        <ul class="baseItems" v-show="baseItemList.length">
+            <li
+                :class="{ 'btn-active': editCmd == baseItem.id }"
+                v-for="(baseItem, k) in baseItemList"
+                :key="k"
+                @click="drawItem(baseItem.id)"
+                :title="baseItem.name"
+            >
+                <img class="icon" :src="baseItem.icon" />
+                <span class="iconName">{{ baseItem.name }}</span>
+            </li>
+        </ul>
     </div>
-    <ul class="baseItems" v-show="baseItemList.length">
-      <li
-        :class="{ 'btn-active': editCmd == baseItem.id }"
-        v-for="(baseItem, k) in baseItemList"
-        :key="k"
-        @click="drawItem(baseItem.id)"
-        :title="baseItem.name"
-      >
-        <img class="icon" :src="baseItem.icon" />
-        <span class="iconName">{{ baseItem.name }}</span>
-      </li>
-    </ul>
-  </div>
 </template>
 <script>
 import { baseEditItems } from "./data";
 import { mapMutations, mapState } from "vuex";
 export default {
-  data() {
-    return {
-      baseEditItems,
-      baseItemVal: "", //基础组件搜索
-      baseItemList: [], // 搜索后返回得数组
-    };
-  },
-  computed: {
-    ...mapState(["editCmd"]),
-  },
-  methods: {
-    ...mapMutations(["SETCHOICELEHEND"]),
-    drawItem(item) {
-      this.SETCHOICELEHEND(item);
+    data() {
+        return {
+            baseEditItems,
+            baseItemVal: "", //基础组件搜索
+            baseItemList: [], // 搜索后返回得数组
+        };
     },
-    pressEnter() {
-      const list = [];
-      if (!this.baseItemVal) {
-        this.baseItemList = [];
-        return;
-      }
-      // 对信息点相同得提取出来
-      this.baseEditItems[0].itemList.forEach((item) => {
-        item.itemList.forEach((a) => {
-          if (a.name.includes(this.baseItemVal)) {
-            list.push(a);
-          }
-        });
-      });
-      this.baseItemList = list;
+    computed: {
+        ...mapState(["editCmd"]),
     },
-    // /是否下拉折叠
-    collapse(item) {
-      item.isClip = !item.isClip;
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND"]),
+        drawItem(item) {
+            this.SETCHOICELEHEND(item);
+        },
+        pressEnter() {
+            const list = [];
+            if (!this.baseItemVal) {
+                this.baseItemList = [];
+                return;
+            }
+            // 对信息点相同得提取出来
+            this.baseEditItems[0].itemList.forEach((item) => {
+                item.itemList.forEach((a) => {
+                    if (a.name.includes(this.baseItemVal)) {
+                        list.push(a);
+                    }
+                });
+            });
+            this.baseItemList = list;
+        },
+        // /是否下拉折叠
+        collapse(item) {
+            item.isClip = !item.isClip;
+        },
     },
-  },
 };
 </script>
 <style lang="less" scoped>
 .base-item-list {
-  .baseItemInput {
-    margin: 12px 0;
-  }
-  .lengend-item {
-    width: 100%;
-    .legend-title {
-      display: block;
-      font-size: 14px;
-      padding: 0 10px 0 10px;
-      box-sizing: border-box;
-      color: #8d9399;
-      border-top: 1px solid #eee;
-      display: flex;
-      align-items: center;
-      justify-content: space-between;
-      cursor: pointer;
-      span {
-        height: 38px;
-        line-height: 38px;
-      }
+    .baseItemInput {
+        margin: 12px 0;
     }
-    .legend-content {
-      padding: 0 10 10px 10px;
-      box-sizing: border-box;
-      .title {
-        margin-left: 10px;
-        font-weight: bold;
-        color: #1f2429;
-        font-size: 14px;
-        padding-top: 16px;
-        padding-bottom: 16px;
-        cursor: pointer;
-      }
-      ul {
+    .lengend-item {
+        width: 100%;
+        .legend-title {
+            display: block;
+            font-size: 14px;
+            padding: 0 10px 0 10px;
+            box-sizing: border-box;
+            color: #8d9399;
+            border-top: 1px solid #eee;
+            display: flex;
+            align-items: center;
+            justify-content: space-between;
+            cursor: pointer;
+            span {
+                height: 38px;
+                line-height: 38px;
+            }
+        }
+        .legend-content {
+            padding: 0 10 10px 10px;
+            box-sizing: border-box;
+            .title {
+                margin-left: 10px;
+                font-weight: bold;
+                color: #1f2429;
+                font-size: 14px;
+                padding-top: 16px;
+                padding-bottom: 16px;
+                cursor: pointer;
+            }
+            ul {
+                display: flex;
+                flex-wrap: wrap;
+                border-bottom: 1px solid #eee;
+                li {
+                    font-size: 12px;
+                    min-width: 52px;
+                    height: 52px;
+                    display: flex;
+                    align-items: center;
+                    justify-content: center;
+                    flex-direction: column;
+                    padding: 4px;
+                    box-sizing: border-box;
+                    margin: 0 10px 16px 10px;
+                    .icon {
+                        width: 28px;
+                        height: 28px;
+                        // background: red;
+                    }
+                    .iconName {
+                        width: 100%;
+                        display: flex;
+                        justify-content: center;
+                        overflow: hidden;
+                        text-overflow: ellipsis;
+                        white-space: nowrap;
+                    }
+                    cursor: pointer;
+                }
+                li:hover {
+                    background: #f5f6f7;
+                }
+                .btn-active {
+                    background: #e1f2ff !important;
+                }
+            }
+        }
+        .legend-content:nth-last-child(1) {
+            ul {
+                border-bottom: none;
+            }
+        }
+    }
+}
+.baseItems {
+    display: flex;
+    flex-wrap: wrap;
+    border-bottom: 1px solid #eee;
+    li {
+        font-size: 12px;
+        width: 52px;
+        height: 52px;
         display: flex;
-        flex-wrap: wrap;
-        border-bottom: 1px solid #eee;
-        li {
-          font-size: 12px;
-          width: 52px;
-          height: 52px;
-          display: flex;
-          align-items: center;
-          justify-content: center;
-          flex-direction: column;
-          padding: 4px;
-          box-sizing: border-box;
-          margin: 0 10px 16px 10px;
-          .icon {
+        align-items: center;
+        justify-content: center;
+        flex-direction: column;
+        padding: 4px;
+        box-sizing: border-box;
+        margin: 0 10px 16px 10px;
+        .icon {
             width: 28px;
             height: 28px;
             // background: red;
-          }
-          .iconName {
+        }
+        .iconName {
             width: 100%;
             display: flex;
             justify-content: center;
             overflow: hidden;
             text-overflow: ellipsis;
             white-space: nowrap;
-          }
-          cursor: pointer;
         }
-        li:hover {
-          background: #f5f6f7;
-        }
-        .btn-active {
-          background: #e1f2ff !important;
-        }
-      }
+        cursor: pointer;
     }
-  }
-}
-.baseItems {
-  display: flex;
-  flex-wrap: wrap;
-  border-bottom: 1px solid #eee;
-  li {
-    font-size: 12px;
-    width: 52px;
-    height: 52px;
-    display: flex;
-    align-items: center;
-    justify-content: center;
-    flex-direction: column;
-    padding: 4px;
-    box-sizing: border-box;
-    margin: 0 10px 16px 10px;
-    .icon {
-      width: 28px;
-      height: 28px;
-      // background: red;
+    li:hover {
+        background: #f5f6f7;
     }
-    .iconName {
-      width: 100%;
-      display: flex;
-      justify-content: center;
-      overflow: hidden;
-      text-overflow: ellipsis;
-      white-space: nowrap;
+    .btn-active {
+        background: #e1f2ff !important;
     }
-    cursor: pointer;
-  }
-  li:hover {
-    background: #f5f6f7;
-  }
-  .btn-active {
-    background: #e1f2ff !important;
-  }
 }
 .caret-icon {
-  animation: nowhirling 0.2s linear forwards;
+    animation: nowhirling 0.2s linear forwards;
 }
 .caret-icon-active {
-  animation: whirling 0.2s linear forwards;
+    animation: whirling 0.2s linear forwards;
 }
 @keyframes whirling {
-  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(180deg);
-    -ms-transform: rotate(180deg); /* Internet Explorer */
-    -moz-transform: rotate(180deg); /* Firefox */
-    -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
-    -o-transform: rotate(180deg); /* Opera */
-  }
+    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(180deg);
+        -ms-transform: rotate(180deg); /* Internet Explorer */
+        -moz-transform: rotate(180deg); /* Firefox */
+        -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
+        -o-transform: rotate(180deg); /* Opera */
+    }
 }
 @keyframes nowhirling {
-  0% {
-    transform: rotate(180deg);
-    -ms-transform: rotate(180deg); /* Internet Explorer */
-    -moz-transform: rotate(180deg); /* Firefox */
-    -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
-    -o-transform: rotate(180deg); /* 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 */
-  }
+    0% {
+        transform: rotate(180deg);
+        -ms-transform: rotate(180deg); /* Internet Explorer */
+        -moz-transform: rotate(180deg); /* Firefox */
+        -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
+        -o-transform: rotate(180deg); /* 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 */
+    }
 }
 </style>

+ 20 - 10
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -8,15 +8,7 @@
             <Cascader caption="设备实例范围:" multiple excludeTop :data="cascaderData" @confirm="equipmentConfirm" showPanel width="240"></Cascader>
             <span class="text2">选择空间:</span>
             <Cascader caption="分区类型:" multiple excludeTop :data="cascaderData" showPanel width="240"></Cascader>
-            <Select
-                width="220"
-                tipPlace="top"
-                caption="分区下实例:"
-                @change=""
-                v-model="sl"
-                :selectdata="selectData"
-                :placeholder="'请选择'"
-            />
+            <Select width="220" tipPlace="top" caption="分区下实例:" @change="" v-model="sl" :selectdata="selectData" :placeholder="'请选择'" />
             <Cascader caption="空间功能类型" multiple excludeTop :data="cascaderData" showPanel width="240"></Cascader>
         </div>
         <el-table
@@ -42,7 +34,7 @@
         </div>
         <div slot="footer" class="dialog-footer">
             <el-button @click="close">取 消</el-button>
-            <el-button type="primary" @click="dialogTableVisible = false">确 定</el-button>
+            <el-button type="primary" @click="confirm">确 定</el-button>
         </div>
     </el-dialog>
 </template>
@@ -197,6 +189,24 @@ export default {
         editInfo(data) {
             console.log(data);
         },
+        /**
+         * 点击弹窗确定,提交接口
+         */
+        confirm() {
+            this.dialogTableVisible = false;
+            /**
+             * 设备实例范围:
+             * []
+             * 空间
+             * 分区类型
+             * []
+             * 分区下实例
+             * id
+             * 空间功能类型
+             * []
+             *
+             */
+        },
     },
 };
 </script>

+ 97 - 114
src/components/editview/leftToolBar/data.js

@@ -1,116 +1,99 @@
-
-export const baseEditItems = [{
-    title: '基础组件',
-    isClip: true,
-    itemList: [{
-        title: '通用元素',
-        isClip: true,// 是否展开
-        itemList: [{
-            name: '线条',
-            id: "EditBaseLine",
-            icon: require("./../../../assets/images/leftImgs/" + "EditBaseLine.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseLine" + "Active" + ".png")
-        },
-        {
-            name: '文本框',
-            id: "EditBasetext",
-            icon: require("./../../../assets/images/leftImgs/" + "EditBasetext.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "EditBasetext" + "Active" + ".png")
-        },
-        {
-            name: '图片',
-            id: "EditBaseImage",
-            icon: require("./../../../assets/images/leftImgs/" + "EditBaseImage.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseImage" + "Active" + ".png")
-        },
-        {
-            name: '批注',
-            id: "BaseExplain",
-            icon: require("./../../../assets/images/leftImgs/" + "EditBasePostil.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "EditBasePostil" + "Active" + ".png")
-        }
-        ]
-    },
-    {
-        title: '图形',
-        isClip: true,// 是否展开
-        itemList: [{
-            name: '矩形',
-            id: "EditBaseRect",
-            icon: require("./../../../assets/images/leftImgs/" + "EditBaseRect.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseRect" + "Active" + ".png")
-        },
-        {
-            name: '多边形',
-            id: "EditBasePolygon",
-            icon: require("./../../../assets/images/leftImgs/" + "polygon.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "polygon" + "Active" + ".png")
-        },
-        {
-            name: '圆',
-            id: "EditBaseCircle",
-            icon: require("./../../../assets/images/leftImgs/" + "circle.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "circle" + "Active" + ".png")
-        },
-        {
-            name: '箭头',
-            id: "EditBaseArrows",
-            icon: require("./../../../assets/images/leftImgs/" + "EditBaseArrows.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseArrows" + "Active" + ".png")
-        }
-        ]
-    },
+export const baseEditItems = [
     {
-        title: '联通方式',
-        isClip: true,// 是否展开
-        itemList: [{
-            name: '弯头',
-            id: "wantou",
-            icon: require("./../../../assets/images/leftImgs/" + "wantou.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "wantou" + "Active" + ".png")
-        },
-        {
-            name: '三通',
-            id: "santong",
-            icon: require("./../../../assets/images/leftImgs/" + "santong.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "santong" + "Active" + ".png")
-        },
-        {
-            name: '四通',
-            id: "sitong",
-            icon: require("./../../../assets/images/leftImgs/" + "sitong.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "sitong" + "Active" + ".png")
-        }
-        ]
-    },
-    {
-        title: '动态取值',
-        isClip: true,// 是否展开
-        itemList: [{
-            name: '公式',
-            id: "equation",
-            icon: require("./../../../assets/images/leftImgs/" + "equation.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "equation" + "Active" + ".png")
-        },
-        {
-            name: '信息点',
-            id: "infoPoint",
-            icon: require("./../../../assets/images/leftImgs/" + "infoPoint.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "infoPoint" + "Active" + ".png")
-        },
-        {
-            name: '设备组',
-            id: "equipList",
-            icon: require("./../../../assets/images/leftImgs/" + "equipList.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "equipList" + "Active" + ".png")
-        },
-        {
-            name: '通用实例',
-            id: "publicItem",
-            icon: require("./../../../assets/images/leftImgs/" + "publicItem.png"),
-            activeIcon: require("./../../../assets/images/leftImgs/" + "publicItem" + "Active" + ".png")
-        }
-        ]
+        title: "基础组件",
+        isClip: true,
+        itemList: [
+            {
+                title: "通用元素",
+                isClip: true, // 是否展开
+                itemList: [
+                    {
+                        name: "线条",
+                        id: "EditBaseLine",
+                        icon: require("./../../../assets/images/leftImgs/" + "EditBaseLine.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseLine" + "Active" + ".png"),
+                    },
+                    {
+                        name: "文字",
+                        id: "EditBasetext",
+                        icon: require("./../../../assets/images/leftImgs/" + "EditBasetext.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "EditBasetext" + "Active" + ".png"),
+                    },
+                    {
+                        name: "图片",
+                        id: "EditBaseImage",
+                        icon: require("./../../../assets/images/leftImgs/" + "EditBaseImage.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseImage" + "Active" + ".png"),
+                    },
+                    {
+                        name: "批注",
+                        id: "BaseExplain",
+                        icon: require("./../../../assets/images/leftImgs/" + "EditBasePostil.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "EditBasePostil" + "Active" + ".png"),
+                    },
+                ],
+            },
+            {
+                title: "图形",
+                isClip: true, // 是否展开
+                itemList: [
+                    {
+                        name: "矩形",
+                        id: "EditBaseRect",
+                        icon: require("./../../../assets/images/leftImgs/" + "EditBaseRect.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseRect" + "Active" + ".png"),
+                    },
+                    {
+                        name: "多边形",
+                        id: "EditBasePolygon",
+                        icon: require("./../../../assets/images/leftImgs/" + "polygon.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "polygon" + "Active" + ".png"),
+                    },
+                    {
+                        name: "圆",
+                        id: "EditBaseCircle",
+                        icon: require("./../../../assets/images/leftImgs/" + "circle.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "circle" + "Active" + ".png"),
+                    },
+                    {
+                        name: "箭头",
+                        id: "EditBaseArrows",
+                        icon: require("./../../../assets/images/leftImgs/" + "EditBaseArrows.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseArrows" + "Active" + ".png"),
+                    },
+                ],
+            },
+
+            {
+                title: "动态取值",
+                isClip: true, // 是否展开
+                itemList: [
+                    {
+                        name: "公式",
+                        id: "equation",
+                        icon: require("./../../../assets/images/leftImgs/" + "equation.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "equation" + "Active" + ".png"),
+                    },
+                    {
+                        name: "信息点",
+                        id: "infoPoint",
+                        icon: require("./../../../assets/images/leftImgs/" + "infoPoint.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "infoPoint" + "Active" + ".png"),
+                    },
+                    {
+                        name: "设备组",
+                        id: "equipList",
+                        icon: require("./../../../assets/images/leftImgs/" + "equipList.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "equipList" + "Active" + ".png"),
+                    },
+                    {
+                        name: "通用实例",
+                        id: "publicItem",
+                        icon: require("./../../../assets/images/leftImgs/" + "publicItem.png"),
+                        activeIcon: require("./../../../assets/images/leftImgs/" + "publicItem" + "Active" + ".png"),
+                    },
+                ],
+            },
+        ],
     },
-    ]
-}]
+];

+ 2 - 1
src/components/editview/rightPropertyBar.vue

@@ -20,7 +20,8 @@ export default {
     background: rgba(255, 255, 255, 1);
     box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
     box-sizing: border-box;
-    width: 240px;
+    // width: 240px;
     height: calc(~"100% - 2px");
+    position: relative;
 }
 </style>

+ 196 - 193
src/components/editview/rightPropertyBar/property.vue

@@ -1,61 +1,61 @@
 <!--属性栏-->
 <template>
-  <div class="propertys">
-    <baseTextPro
-      :strokeColor="strokeColor"
-      :fontSize="fontSize"
-      :textMsg="textMsg"
-      :backgroundColor="backgroundColor"
-      v-show="itemType == 'BaseText' || itemType == 'BaseExplain'"
-    ></baseTextPro>
-    <baseLinePro
-      v-show="itemType == 'BaseArrow'"
-      :strokeColor="strokeColor"
-      :lineStyle="lineStyle"
-      :lineWidth="lineWidth"
-      :Begin="begin"
-      :End="end"
-    ></baseLinePro>
-    <BaseGraphy
-      :lineStyle="lineStyle"
-      :lineWidth="lineWidth"
-      :strokeColor="strokeColor"
-      :fillColor="fillColor"
-      :Url="Url"
-      :Width="Width"
-      :Height="Height"
-      v-show="
-        itemType == 'BaseRect' ||
-        itemType == 'BaseTriangle' ||
-        itemType == 'BaseCircle' ||
-        itemType == 'BasePolygon' ||
-        itemType == 'BaseArrowPolygon'
-      "
-    ></BaseGraphy>
-    <BaseImagePro
-      :lineStyle="lineStyle"
-      :lineWidth="lineWidth"
-      :strokeColor="strokeColor"
-      :Url="Url"
-      :Width="Width"
-      :Height="Height"
-      v-show="itemType == 'BaseImage'"
-    ></BaseImagePro>
-    <BaseEquipment
-      :Width="Width"
-      :Height="Height"
-      :AnotherMsg="AnotherMsg"
-      :InfoPointList="infoPointList"
-      :EquipData="EquipData"
-      v-show="itemType == 'BaseEquipment'"
-      :equipHeight="equipHeight"
-    ></BaseEquipment>
-    <BaseEquipmentMsg
-      v-show="itemType == 'BaseEquipmentMsg'"
-      :EquipMsgData="EquipMsgData"
-      @changeEquipMsgData="changeEquipMsg"
-    ></BaseEquipmentMsg>
-  </div>
+    <div class="propertys" :class="{ width: itemType }">
+        <baseTextPro
+            :strokeColor="strokeColor"
+            :fontSize="fontSize"
+            :textMsg="textMsg"
+            :backgroundColor="backgroundColor"
+            v-show="itemType == 'BaseText' || itemType == 'BaseExplain'"
+        ></baseTextPro>
+        <baseLinePro
+            v-show="itemType == 'BaseArrow'"
+            :strokeColor="strokeColor"
+            :lineStyle="lineStyle"
+            :lineWidth="lineWidth"
+            :Begin="begin"
+            :End="end"
+        ></baseLinePro>
+        <BaseGraphy
+            :lineStyle="lineStyle"
+            :lineWidth="lineWidth"
+            :strokeColor="strokeColor"
+            :fillColor="fillColor"
+            :Url="Url"
+            :Width="Width"
+            :Height="Height"
+            v-show="
+                itemType == 'BaseRect' ||
+                itemType == 'BaseTriangle' ||
+                itemType == 'BaseCircle' ||
+                itemType == 'BasePolygon' ||
+                itemType == 'BaseArrowPolygon'
+            "
+        ></BaseGraphy>
+        <BaseImagePro
+            :lineStyle="lineStyle"
+            :lineWidth="lineWidth"
+            :strokeColor="strokeColor"
+            :Url="Url"
+            :Width="Width"
+            :Height="Height"
+            v-show="itemType == 'BaseImage'"
+        ></BaseImagePro>
+        <BaseEquipment
+            :Width="Width"
+            :Height="Height"
+            :AnotherMsg="AnotherMsg"
+            :InfoPointList="infoPointList"
+            :EquipData="EquipData"
+            v-show="itemType == 'BaseEquipment'"
+            :equipHeight="equipHeight"
+        ></BaseEquipment>
+        <BaseEquipmentMsg
+            v-show="itemType == 'BaseEquipmentMsg'"
+            :EquipMsgData="EquipMsgData"
+            @changeEquipMsgData="changeEquipMsg"
+        ></BaseEquipmentMsg>
+    </div>
 </template>
 <script>
 import baseTextPro from "./baseTextPro.vue";
@@ -66,153 +66,156 @@ import BaseEquipment from "./BaseEquipment";
 import BaseEquipmentMsg from "./BaseEquipmentMsg";
 import bus from "@/bus/bus";
 const lineStyle = {
-  0: "Solid",
-  1: "Dashed",
-  /** 点线    */
-  2: "Dotted",
-  /** 无    */
-  3: "None",
+    0: "Solid",
+    1: "Dashed",
+    /** 点线    */
+    2: "Dotted",
+    /** 无    */
+    3: "None",
 };
 const arrowType = {
-  0: "None",
-  1: "Basic",
-  /** 点线    */
-  2: "Triangle",
-  /** 无    */
-  3: "Diamond",
-  4: "Square",
-  5: "Circle",
+    0: "None",
+    1: "Basic",
+    /** 点线    */
+    2: "Triangle",
+    /** 无    */
+    3: "Diamond",
+    4: "Square",
+    5: "Circle",
 };
 export default {
-  components: {
-    baseTextPro,
-    baseLinePro,
-    BaseGraphy,
-    BaseImagePro,
-    BaseEquipment,
-    BaseEquipmentMsg,
-  },
-  data() {
-    return {
-      itemType: "", // item 类型
-      strokeColor: "", //线条颜色
-      lineStyle: "solid", //线条样式
-      lineWidth: 1, //线宽
-      fontSize: 0, //字体大小
-      textMsg: "", // 文本
-      backgroundColor: "", // 背景色
-      Width: 0, //item 宽
-      Height: 0, //item 高
-      Url: "", // 路径
-      fillColor: "", //填充色
-      begin: "", //开头样式
-      end: "", //结尾样式
-      infoPointList: [], //设备--信息点数组
-      EquipData: {}, //设备 信息
-      equipHeight: "", // 设备属性栏得高度
-      EquipMsgData: {}, //设备信息点详情数据
-      EquipMsgItem: null, //设备信息点实例
-      AnotherMsg: "", // 附加信息 (只用与设备图例)
-    };
-  },
-  mounted() {
-    const box = document.getElementsByClassName("propertys")[0];
-    this.equipHeight = box.offsetHeight - 150 + "px";
-    bus.$on("emitChoice", this.emitChoice);
-  },
-  methods: {
-    emitChoice(itemList) {
-      if (itemList.length == 1) {
-        const data = itemList[0].data
-          ? itemList[0].data
-          : itemList[0].legendData
-          ? itemList[0].legendData
-          : itemList[0].relationData
-          ? itemList[0].relationData
-          : null;
-        this.itemType = data.properties.type ? data.properties.type : "";
-      } else {
-        this.itemType = "";
-      }
-      // 对设备做出判断 看是否点入的是设备相关信息点
-      if (this.itemType == "BaseEquipment") {
-        this.EquipData = itemList[0].legendData;
-        if (itemList[0].curTextItem) {
-          this.itemType = "BaseEquipmentMsg";
-        }
-      }
-      // 同步联动样式
-      this.linkStyle(itemList);
+    components: {
+        baseTextPro,
+        baseLinePro,
+        BaseGraphy,
+        BaseImagePro,
+        BaseEquipment,
+        BaseEquipmentMsg,
     },
-    // 同步样式
-    linkStyle(itemList) {
-      const item = itemList[0];
-      this.EquipMsgItem = null;
-      if (this.itemType == "BaseArrow") {
-        this.strokeColor = item.strokeColor.toRgba();
-        this.lineStyle = lineStyle[item.lineStyle];
-        this.lineWidth = item.lineWidth;
-        this.begin = arrowType[item.begin];
-        this.end = arrowType[item.end];
-      } else if (
-        this.itemType == "BaseText" ||
-        this.itemType == "BaseExplain"
-      ) {
-        this.strokeColor = item.strokeColor.toRgba();
-        this.backgroundColor = item.backgroundColor.toRgba();
-        this.textMsg = item.text;
-        this.fontSize = item.font.size;
-      } else if (
-        this.itemType == "BaseImage" ||
-        this.itemType == "BasePipeUninTool"
-      ) {
-        this.Width = item.width; //item 宽
-        this.Height = item.height; //item 高
-        this.Url = item.url; // 路径
-        this.lineStyle = lineStyle[item.lineStyle];
-        this.lineWidth = item.lineWidth;
-        this.strokeColor = item.strokeColor.toRgba();
-      } else if (
-        this.itemType == "BaseRect" ||
-        this.itemType == "BaseTriangle" ||
-        this.itemType == "BaseCircle" ||
-        this.itemType == "BasePolygon"
-      ) {
-        this.Width = item.width; //item 宽
-        this.Height = item.height; //item 高
-        this.lineStyle = lineStyle[item.lineStyle];
-        this.lineWidth = item.lineWidth;
-        this.strokeColor = item.strokeColor.toRgba();
-        this.fillColor = item.fillColor.toRgba();
-        // 填充色
-      } else if (this.itemType == "BaseEquipment") {
-        this.Width = item.sWidth; //item 宽
-        this.Height = item.sHeight; //item 高
-        this.AnotherMsg = item.anotherMsg;
-        if (item.infoPointList && item.infoPointList.length) {
-          this.infoPointList = item.infoPointList;
-        } else {
-          this.infoPointList = [];
-        }
-      } else if (this.itemType == "BaseEquipmentMsg") {
-        // 获取信息点详情信息
-        this.EquipMsgData = item.curTextItem.propertyData;
-        this.EquipMsgItem = item.curTextItem;
-      }
+    data() {
+        return {
+            itemType: "", // item 类型
+            strokeColor: "", //线条颜色
+            lineStyle: "solid", //线条样式
+            lineWidth: 1, //线宽
+            fontSize: 0, //字体大小
+            textMsg: "", // 文本
+            backgroundColor: "", // 背景色
+            Width: 0, //item 宽
+            Height: 0, //item 高
+            Url: "", // 路径
+            fillColor: "", //填充色
+            begin: "", //开头样式
+            end: "", //结尾样式
+            infoPointList: [], //设备--信息点数组
+            EquipData: {}, //设备 信息
+            equipHeight: "", // 设备属性栏得高度
+            EquipMsgData: {}, //设备信息点详情数据
+            EquipMsgItem: null, //设备信息点实例
+            AnotherMsg: "", // 附加信息 (只用与设备图例)
+        };
     },
-    // 修改设备信息点数据
-    changeEquipMsg(val) {
-      const obj = this.EquipMsgItem.propertyData;
-      let obj2 = Object.assign(obj, val);
-      this.EquipMsgItem.propertyData = obj2;
-      this.EquipMsgItem.text = val.name;
+    mounted() {
+        const box = document.getElementsByClassName("propertys")[0];
+        this.equipHeight = box.offsetHeight - 150 + "px";
+        bus.$on("emitChoice", this.emitChoice);
+    },
+    methods: {
+        emitChoice(itemList) {
+            if (itemList.length == 1) {
+                const data = itemList[0].data
+                    ? itemList[0].data
+                    : itemList[0].legendData
+                    ? itemList[0].legendData
+                    : itemList[0].relationData
+                    ? itemList[0].relationData
+                    : null;
+                this.itemType = data.properties.type ? data.properties.type : "";
+            } else {
+                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);
+        },
+        // 同步样式
+        linkStyle(itemList) {
+            const item = itemList[0];
+            this.EquipMsgItem = null;
+            if (this.itemType == "BaseArrow") {
+                this.strokeColor = item.strokeColor.toRgba();
+                this.lineStyle = lineStyle[item.lineStyle];
+                this.lineWidth = item.lineWidth;
+                this.begin = arrowType[item.begin];
+                this.end = arrowType[item.end];
+            } else if (this.itemType == "BaseText" || this.itemType == "BaseExplain") {
+                this.strokeColor = item.strokeColor.toRgba();
+                this.backgroundColor = item.backgroundColor.toRgba();
+                this.textMsg = item.text;
+                this.fontSize = item.font.size;
+            } else if (this.itemType == "BaseImage" || this.itemType == "BasePipeUninTool") {
+                this.Width = item.width; //item 宽
+                this.Height = item.height; //item 高
+                this.Url = item.url; // 路径
+                this.lineStyle = lineStyle[item.lineStyle];
+                this.lineWidth = item.lineWidth;
+                this.strokeColor = item.strokeColor.toRgba();
+            } else if (
+                this.itemType == "BaseRect" ||
+                this.itemType == "BaseTriangle" ||
+                this.itemType == "BaseCircle" ||
+                this.itemType == "BasePolygon"
+            ) {
+                this.Width = item.width; //item 宽
+                this.Height = item.height; //item 高
+                this.lineStyle = lineStyle[item.lineStyle];
+                this.lineWidth = item.lineWidth;
+                this.strokeColor = item.strokeColor.toRgba();
+                this.fillColor = item.fillColor.toRgba();
+                // 填充色
+            } else if (this.itemType == "BaseEquipment") {
+                this.Width = item.sWidth; //item 宽
+                this.Height = item.sHeight; //item 高
+                this.AnotherMsg = item.anotherMsg;
+                if (item.infoPointList && item.infoPointList.length) {
+                    this.infoPointList = item.infoPointList;
+                } else {
+                    this.infoPointList = [];
+                }
+            } else if (this.itemType == "BaseEquipmentMsg") {
+                // 获取信息点详情信息
+                this.EquipMsgData = item.curTextItem.propertyData;
+                this.EquipMsgItem = item.curTextItem;
+            }
+        },
+        // 修改设备信息点数据
+        changeEquipMsg(val) {
+            const obj = this.EquipMsgItem.propertyData;
+            let obj2 = Object.assign(obj, val);
+            this.EquipMsgItem.propertyData = obj2;
+            this.EquipMsgItem.text = val.name;
+        },
     },
-  },
 };
 </script>
 <style lang="less" scoped>
 .propertys {
-  width: 100%;
-  height: 100%;
+    height: 100%;
+}
+.width {
+    width: 240px;
+    position: absolute;
+    right: 0;
+    top: 0;
+    background: #ffffff;
+    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
+    box-sizing: border-box;
 }
 </style>

+ 1 - 1
src/components/editview/topoEditer.vue

@@ -45,7 +45,7 @@ export default {
         display: flex;
         justify-content: flex-start;
         .right-bar {
-            width: 240px;
+            // width: 240px;
             height: 100%;
         }
         .base-topo-editer {

+ 30 - 6
src/views/home.vue

@@ -85,7 +85,7 @@
                                         @moveTo="moveTo"
                                         @delete="deleteGraph"
                                         @editTag="editTag"
-                                        @toEdit="toEdit"
+                                        @toEdit="toEdit(t, floor.infos)"
                                         @download="download"
                                     ></topoImageCard>
                                 </template>
@@ -191,6 +191,7 @@ export default {
             imgUrl: "/image-service/common/image_get?systemId=dataPlatform&key=",
             cardLoading: false,
             folderId: "", //文件夹id
+            folderName: "", //文件夹名称
         };
     },
     created() {
@@ -206,6 +207,17 @@ export default {
         },
         // 新建画布成功回调
         createPlanarCallback(folder) {
+            console.log("=============");
+            console.log(folder);
+            console.log("=============");
+            /**
+             * 1.
+             *  folderId: "894983e26c20464e8c2e7d349d5bbc48"
+                folderName: undefined
+            2.
+                folderId: "1cb3aa7281724617b05e60f494dd58e0"
+                folderName: "dfas"
+             */
             // TODO: 编辑器开发完后后解开注释
             /*  this.$router.push({
                 name: "Editer",
@@ -219,8 +231,10 @@ export default {
             // 不进行文件夹的定位
             return true; */
             if (folder.folderId) {
+                this.folderId = folder.folderId;
                 // 是否新建文件夹
                 if (folder.folderName) {
+                    this.folderName = folder.folderName;
                     // 新建文件夹
                     this.$refs.leftFolder.getFolderData(folder.folderId);
                 } else {
@@ -325,6 +339,7 @@ export default {
          * 更改选中的文件夹
          */
         changeFolder(data) {
+            console.log(data);
             // 清空搜索值
             this.queryText = "";
             // 如果没有文件夹数据,清空页面数据
@@ -335,6 +350,7 @@ export default {
                 return true;
             }
             this.folderId = data.id;
+            this.folderName = data.name;
             this.queryGraph();
         },
         // 发布修改
@@ -358,16 +374,24 @@ export default {
             this.queryGraph();
             this.$refs.leftAsideTree.getCategoryGraph();
         },
-        // 新建拓扑图成功
-        toEdit(data) {
+        /**
+         * 跳转编辑器
+         */
+        toEdit(data, infos) {
+            const { id, graphId } = data,
+                { floorMap } = infos,
+                { folderId, folderName } = this;
             this.$message.warning("功能开发中");
             return true;
             this.$router.push({
                 name: "Editer",
                 query: {
-                    graphId: data.graphId,
-                    id: data.id,
-                    categoryName: encodeURI(this.categoryName),
+                    id,
+                    graphId,
+                    floorMap: infos.floorMap,
+                    folderId,
+                    folderName,
+                    // categoryName: encodeURI(this.categoryName),
                     isPub: this.isPub,
                 },
             });