소스 검색

feat 新增 信息点 名称,Code修改

yx 4 년 전
부모
커밋
645410eef2
5개의 변경된 파일54개의 추가작업 그리고 15개의 파일을 삭제
  1. 4 1
      src/components/baseEditer.vue
  2. 21 6
      src/components/edit/attrInfo.vue
  3. 6 4
      src/components/edit/right_toolbar.vue
  4. 13 2
      src/components/mapClass/EditScence.ts
  5. 10 2
      src/lib/items/SInfoItem.ts

+ 4 - 1
src/components/baseEditer.vue

@@ -740,10 +740,13 @@ export default {
                 this.scene.deleteEquipmentInfo()
             })
             /** ---------------------信息点Item属性修改--------------------- */
-            // 删除信息点
+            // 修改信息点名称
             bus.$on('changeInfoItemName', (Name) => {
                 this.scene.updateInfoItemName(Name)
             })
+            bus.$on('changeInfoItemCode', (Code) => {
+                this.scene.updateInfoItemCode(Code)
+            })
             /** ---------------------信息点Item属性修改--------------------- */
 
             // 改变图例名称

+ 21 - 6
src/components/edit/attrInfo.vue

@@ -2,16 +2,26 @@
     <div class='equipment-attr'>
         <p>编辑信息点</p>
         <div class='row'>
-            <div class='row-tit'>名称</div>
+            <div class='row-tit'>信息点名称</div>
             <a-input v-model='infoData.Name' style='width: 180px' @change='changeInfoName' />
         </div>
+        <div class='row'>
+            <div class='row-tit'>信息点Code</div>
+            <a-input v-model='infoData.Code' style='width: 180px' @change='changeInfoCode' />
+        </div>
         <!-- 工程信息化对象列表 -->
         <div class='row'>
             <div class='row-tit'>工程信息化对象列表</div>
         </div>
-        <!-- <div class='row' v-for='(item,index) in AttachObjectIds' :key='index'>
-            <a-input class='input' v-model='AttachObjectIds[index]' type='small' @change='changeAttachObjectIds(index)' />
-        </div> -->
+        <div class='row' v-for='(item,index) in infoData.AttachObjectIds' :key='index'>
+            <a-input class='input' v-model='infoData.AttachObjectIds[index]' type='small' @change='changeInfoAttachObjectIds(index)' />
+        </div>
+        <!-- 添加工程信息化对象列表 -->
+        <div class='row'>
+            <span>操作工程信息化对象</span>
+            <a-button @click='handleAttach(1)' size='small' type='primary'>添加</a-button>
+            <a-button @click='handleAttach(-1)' size='small' v-show='AttachObjectIds.length' type='danger'>删除</a-button>
+        </div>
     </div>
 </template>
 <script>
@@ -50,10 +60,10 @@ export default {
         handleAttach(flag) {
             switch (flag) {
                 case -1:
-                    bus.$emit('deleteAttachObjectIds')
+                    // bus.$emit('deleteAttachObjectIds')
                     break
                 default:
-                    bus.$emit('addAttachObjectIds')
+                    // bus.$emit('addAttachObjectIds')
                     break
             }
             this.init()
@@ -70,6 +80,7 @@ export default {
             this.init()
         },
         init() {
+            window.vm = this
             // 设置信息点名称
             this.infoData = this.focusItemList.itemList[0].toData()
             console.log(this.infoData)
@@ -79,6 +90,10 @@ export default {
         changeInfoName() {
             bus.$emit('changeInfoItemName', this.infoData.Name)
         },
+        changeInfoCode() {
+            bus.$emit('changeInfoItemCode', this.infoData.Code)
+        },
+        changeInfoAttachObjectIds(index) {},
     },
 }
 </script>

+ 6 - 4
src/components/edit/right_toolbar.vue

@@ -20,9 +20,9 @@
                         </li>
                     </ul>
                     <!-- 设备 item 属性值组件 -->
-                    <equipmentAttr :key="key" v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
+                    <equipmentAttr :key="eqKey" v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
                     <!-- 信息点 item 属性值组件 -->
-                    <attrInfo v-else-if="attrType === 'Info'"  :focusItemList="focusItemList"/>
+                    <attrInfo :key="infoKey" v-else-if="attrType === 'Info'"  :focusItemList="focusItemList"/>
                     <!-- 其他属性值组件 -->
                     <attrSelect v-else-if="attrType" :type="attrType" :focusItemList="focusItemList" />
                     <!-- 项目基础信息 -->
@@ -111,7 +111,8 @@ export default {
             key: "",
             isLock: true,
             aspectRatio: 1, // 元素宽高比
-            key:1
+            eqKey:1,
+            infoKey:1,
         };
     },
     methods: {
@@ -196,7 +197,8 @@ export default {
             console.log('=================')
             console.log('focusItemList',newVal)
             this.attrType = newVal.itemType;
-            this.key++
+            this.infoKey++
+            this.eqKey++
             // if (newVal.itemList.length !== 1) {
             //     this.msgList.forEach(item => {
             //         if (item.name == "X") {

+ 13 - 2
src/components/mapClass/EditScence.ts

@@ -485,7 +485,7 @@ export class EditScence extends SGraphScene {
         this.grabItem = null;
         this.focusItem = item;
         this.cmd = 'choice';
-        // this.finishCreated(item);
+        this.finishCreated(item);
         this.scenceUpdate(this);
     }
 
@@ -2074,7 +2074,8 @@ export class EditScence extends SGraphScene {
         this.Nodes.push(equipmentItem);
         this.addItem(equipmentItem);
         // this.grabItem = equipmentItem;
-        // this.focusItem = equipmentItem;
+        this.finishCreated(equipmentItem);
+        this.focusItem = equipmentItem;
         this.cmd = "choice";
     }
     /** ---------------------信息点Item属性修改--------------------- */
@@ -2088,4 +2089,14 @@ export class EditScence extends SGraphScene {
             this.scenceUpdate(this);
         }
     }
+    /**
+     * @description 更新信息点item的 Code
+     * @param Code 信息点item的 Code
+     */
+    updateInfoItemCode(Code: string) {
+        if (this.focusItem) {
+            this.focusItem.Code = Code;
+            this.scenceUpdate(this);
+        }
+    }
 }

+ 10 - 2
src/lib/items/SInfoItem.ts

@@ -11,7 +11,9 @@ import { cloneDeep } from 'lodash'
 export class SInfoItem extends STextItem {
     /** 标识对象数据 */
     data: Info;
-
+    // 工程信息化对象列表
+    AttachObjectIds: string[] = [];
+    Code: string = '';
     /**
      * 构造函数
      *
@@ -24,8 +26,10 @@ export class SInfoItem extends STextItem {
         this.isTransform = false;
         this.data = cloneDeep(data);
         this.id = data.ID;
+        this.Code = data.Code;
         this.name = data.Name;
         this.text = data.Name
+        this.AttachObjectIds = data.AttachObjectIds
         this.moveTo(data.Pos.X, data.Pos.Y);
         if (data.Size) {
             this.width = data.Size.Width;
@@ -41,8 +45,12 @@ export class SInfoItem extends STextItem {
             this.backgroundColor = new SColor(data.Properties.Background);
         }
     } // Constructor
-
+    /**
+     * 返回item对应的数据
+     */
     toData(): Info {
+        this.data.Code = this.Code
+        this.data.AttachObjectIds = this.AttachObjectIds
         this.data.Pos = { X: this.x, Y: this.y };
         this.data.Size = { Width: this.width, Height: this.height };
         this.data.Properties.Color = this.color.value;