Browse Source

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-editer into pro
使用pro分支

yunxing 4 years ago
parent
commit
0f6344b3b9

+ 3 - 3
package.json

@@ -9,10 +9,10 @@
   },
   "dependencies": {
     "@saga-web/base": "2.1.22",
-    "@saga-web/big": "1.0.61",
+    "@saga-web/big": "1.0.65",
     "@saga-web/draw": "2.1.100",
-    "@saga-web/feng-map": "1.0.15",
-    "@saga-web/graph": "2.1.98",
+    "@saga-web/feng-map": "1.0.16",
+    "@saga-web/graph": "2.1.101",
     "ant-design-vue": "^1.6.0",
     "core-js": "^3.6.4",
     "element-ui": "^2.13.2",

+ 1 - 1
src/api/editer.js

@@ -1,7 +1,7 @@
 // 登录校验接口
 import httputils from '@/api/httputils'
 const testApi = '/serve/topology-wanda';
-const dataApi = '/data';
+const dataApi = '';
 // const testApi = '/serve'
 //获取图例分类结构
 export function queryByGroup(params) {

+ 3 - 2
src/api/httputils.js

@@ -21,9 +21,10 @@ axiosservice.interceptors.request.use(
     (config) => {
         config.withCredentials = true // 允许携带token ,这个是解决跨域产生的相关问题
         const token = store.getters["token"]
-        if (token) {
+        if (config.url.indexOf('mapapp') < 0) {
             config.headers = {
-                "sso-token": token,
+                'sso-token': 'admin:lengqiang',
+                isPreview: false, //默认false,当预览开启的时候是true
             }
         }
         return config

BIN
src/assets/images/redo.png


BIN
src/assets/images/undo.png


+ 6 - 1
src/components/baseEditer.vue

@@ -12,7 +12,12 @@ import { SFloorParser } from "@saga-web/big";
 import { FloorView } from "./../lib/FloorView";
 import { EditScence } from "./mapClass/EditScence";
 import bus from "@/bus";
-import { saveGroup, readGroup, queryTypeGraph, publishGraph } from "@/api/editer.js";
+import {
+  saveGroup,
+  readGroup,
+  queryTypeGraph,
+  publishGraph
+} from "@/api/editer.js";
 import { STopologyParser } from "./../lib/parsers/STopologyParser";
 import { uuid } from "@/components/mapClass/until";
 import { SImageItem } from "@saga-web/graph/lib";

+ 34 - 11
src/components/edit/attr_select.vue

@@ -21,6 +21,7 @@
         <div class="row-tit">线型</div>
         <a-select
           style="width: 208px"
+          v-model="borderStyle"
           :default-value="borderLineOption[0].id"
           @change="changeBorder"
         >
@@ -126,7 +127,7 @@
           <div class="grid-content">
             <a-input-number
               v-model="imageNum"
-              :min="1"
+              :min="attrCards.length==imageNum?imageNum:1"
               @change="changeImageNum"
               style="width: 208px"
             />
@@ -252,7 +253,7 @@
       </div>
 
         <div class="grid-content">
-          <a-card class="attr-card" v-for="(item,index) in attrCards" :key="index">{{item.wzjc ||item.sbjc}}</a-card>
+          <a-card class="attr-card" v-for="(item,index) in attrCards" :key="index">{{item.sbjc ||item.wzjc}}</a-card>
         </div>
       </a-spin>
     </div>
@@ -283,7 +284,7 @@
         </a-collapse-panel>
       </a-collapse>
     </div>
-    <editDialog ref="dialog" :typeEdit="type" :getmajorId="'1001'" :sysNum="imageNum" :key="Date.now()"/>
+    <editDialog  ref="dialog" :attrCards="attrCards" :typeEdit="type" :getmajorId="getmajorId" :sysNum="imageNum" :key="new Date().getTime()"/>
     <!--    <editDialog ref="dialog" :typeEdit="2" :getmajorId="'1001'" :sysNum="5" />-->
   </div>
 </template>
@@ -293,8 +294,9 @@ import editDialog from "./edit-dialog";
 import Swatches from "vue-swatches";
 import bus from "@/bus";
 import "vue-swatches/dist/vue-swatches.css";
-import { ItemColor } from "@saga-web/big/lib";
+import { SLineStyle } from "@saga-web/graph/lib";
 import { uploadImg, queryGlsmsLocation,queryGlsmsAsset } from "@/api/editer.js";
+import {getUrlMsg}  from '@/components/urlMsg.js'
 export default {
   name: "attr_select",
   props: ["type", "focusItemList"],
@@ -319,6 +321,7 @@ export default {
       fontColor: "#1CA085", //文字颜色
       borderColor: "", // 边框颜色 直线,折线,多边形等
       backColor: "", //背景色 用于text文字
+      borderStyle: "solid",
       borderLineOption: [
         {
           id: "solid",
@@ -372,7 +375,8 @@ export default {
       SubType: "", //空间类型,区分石材铺装
       itemExplain:'', //图例说明 只针对石材铺装
       attrCards:[],
-      spinning:false
+      spinning:false,
+      getmajorId:''
     };
   },
   methods: {
@@ -476,12 +480,13 @@ export default {
   watch: {
     focusItemList: function(newval) {
       const Item = newval.itemList[0];
+      this.getmajorId = Item.data.Properties.InfoSystemId;
       if (Item.data && Item.data.SubType) {
         this.SubType = Item.data.SubType;
       }else{
          this.SubType = '';
       }
-       console.log('this.SubType',this.SubType);
+
       if (newval.itemList.length == 1) {
         if (newval.itemType == "baseText") {
           this.textMsg = Item.text;
@@ -491,6 +496,13 @@ export default {
         } else if (newval.itemType == "baseLine") {
           this.lineWidth = Item.lineWidth;
           this.borderColor = Item.strokeColor.value;
+          if (Item.lineStyle == SLineStyle.Soild) {
+            this.borderStyle = "solid";
+          } else if (Item.lineStyle == SLineStyle.Dashed) {
+            this.borderStyle = "dashed";
+          } else if (Item.lineStyle == SLineStyle.Dotted) {
+            this.borderStyle = "dotted";
+          }
         } else if (
           newval.itemType == "Zone" ||
           newval.itemType == "Line" ||
@@ -515,25 +527,36 @@ export default {
         }
       }
       const  location =[];
-      Item.data.AttachObjectIds && Item.data.AttachObjectIds.map(item=>{
+      let  params ={};
+      Item.data.AttachObjectIds.map(item=>{
         location.push(item.id)
       })
      if(newval.itemType == 'Zone'){
        this.spinning = true;
-       queryGlsmsLocation({plazaId: '1000423'},{location:location}).then(res=>{
+       if(location.length){
+         params = {locationList:location}
+       }else{
+         params = {locationList:['']};
+       }
+       queryGlsmsLocation({plazaId: getUrlMsg().projectId},params).then(res=>{
          this.spinning = false;
          if(res.data.result =='success'){
-           this.attrCards = res.data.data;
+           this.attrCards = res.data.data||[];
          }else{
            this.$message.error('工程信息化中的位置信息获取失败')
          }
        })
      }else if(newval.itemType == 'Image'){
        this.spinning = true;
-       queryGlsmsAsset({plazaId: '1000423'},{assetnum:location}).then(res=>{
+       if(location.length){
+         params = {assetnumList:location}
+       }else{
+         params = {assetnumList:['']};
+       }
+       queryGlsmsAsset({plazaId: getUrlMsg().projectId},params).then(res=>{
          this.spinning = false;
          if(res.data.result =='success'){
-           this.attrCards = res.data.data;
+           this.attrCards = res.data.data||[];
          }else{
            this.$message.error('工程信息化中的设备信息获取失败')
          }

+ 87 - 56
src/components/edit/edit-dialog.vue

@@ -1,5 +1,5 @@
 <template>
-  <a-modal v-model="visible"  title="选择编辑" on-ok="handleOk" width="1200px" class="edit-dialog">
+  <a-modal v-model="visible"  title="选择编辑"  width="1200px" class="edit-dialog" @cancel="handleCancel">
     <template slot="footer">
       <a-button key="back" @click="handleCancel">
         取消
@@ -19,7 +19,7 @@
                     :selectdata="majorList"
                     :placeholder="'请选择'"
                     class="search-select"
-                    width="236"
+                    width="236" isReadOnly
             />
           </div>
           <div class="search">
@@ -41,18 +41,18 @@
           <searchTree  @getTreeId="getTreeId" :treeData="treeData"/>
         </div>
         <div class="checkbox">
-          <a-table :pagination="false" row-key='location||assetnum' :columns="typeEdit=='Image'?columnsSys:columnsLocal" :data-source="tableData"  :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange,onSelect:onSelect }" :scroll="{ y: 340 }"  :loading="loading"/>
+          <a-table :pagination="false" :row-key='typeEdit=="Zone"?"location":"assetnum"' :columns="typeEdit=='Image'?columnsSys:columnsLocal" :data-source="tableData"  :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange,onSelect:onSelect }" :scroll="{ y: 340 }"  :loading="loading"/>
           <a-pagination v-if="total>0" v-model="page" :total="total" show-less-items style="margin-left: auto;"  @change="handleTableChange"/>
         </div>
       </div>
       <div class="right">
         <div class="header">
-          <span class="select-number">已选择 <b>{{selectList.length}}</b>/{{sysNum}}</span>
-          <a-button type="link" class="link" @click="clearSelectList">清空</a-button>
+          <span class="select-number">已选择 <b>{{arrList.length}}</b>/{{sysNum}}</span>
+          <a-button type="link" class="link" @click="clearArrList">清空</a-button>
         </div>
 
         <div class="list-box">
-          <p v-for="(item,index) in selectList" :key="index" class="list">{{item.sbjc||item.wzjc}}
+          <p v-for="(item,index) in arrList" :key="index" class="list">{{item.sbjc||item.wzjc}}
             <a-icon type="close" class="icon" @click="deleteItem(item,index)"/>
           </p>
         </div>
@@ -65,13 +65,17 @@
 <script>
     import searchTree from "@/components/edit/search_tree";
     import {queryGlsmsasset ,getQuerySmsxt,getPlazaFloor,getQuerySmsxtBy,queryWzfldl,queryWzflByDl,queryGlsmsLocation} from "@/api/editer";
+    import bus from "@/bus";
+    import {getUrlMsg}  from '@/components/urlMsg.js'
+
     export default {
         name: "edit-dialog",
         components: {searchTree},
       props:{
         typeEdit:String , //用于区分是设备 还是  位置
         getmajorId:String, //专业Id
-        sysNum:Number //设备总数
+        sysNum:Number ,//设备总数
+        attrCards:Array
       },
         data() {
             return {
@@ -81,7 +85,6 @@
                 searchName: '',
                 floorId:"",//所属楼层
                 dataFloor: [],
-                selectList: [],
                 plainOptions: ['福建三明万达-供电系统-6楼-工程信息化中的区域编码ND182472e83742', '福建三明万达-供电系统-6楼-工程信息化中的区域编码ND18247283742'],
                 majorList: [],
                 checkedList: [],
@@ -122,15 +125,17 @@
               loading:false,
               page:1,
               size:10,
-              selectedRowKeys:[],
               treeData:[],
-              total:0
+              total:0,
+              selectedRowKeys :[],
+              arrList:[],
+              selectList:[],
             }
         },
         computed:{
           majorId(){
-            return  this.getmajorId||''
-          }
+            return this.typeEdit=='Zone'?'位置区域': this.getmajorId
+          },
         },
       watch:{
         floorId(val){
@@ -148,15 +153,25 @@
                 setTimeout(() => {
                     this.visible = false;
                     this.loading = false;
-                    let lists = [];
-                    this.selectList.map(item =>{
+                    const lists = [];
+                    let arr = [];
+                    arr = JSON.parse(JSON.stringify( this.arrList))
+                  arr.map(item =>{
                       lists.push({id:item.location||item.assetnum,name:item.wzjc||item.sbjc})
                     })
-                  console.log(lists);
-                }, 3000);
+                    bus.$emit('changeAttachObjectIds',lists)
+                    bus.$emit('updateAttachMsg',lists)
+                },1000);
             },
             handleCancel(e) {
                 this.visible = false;
+              let arr = [];
+              let lists = [];
+              arr = JSON.parse(JSON.stringify( this.selectList))
+              arr.map(item =>{
+                lists.push({id:item.location||item.assetnum,name:item.wzjc||item.sbjc})
+              })
+              bus.$emit('changeAttachObjectIds',lists)
             },
             onSearch(value) {
                 this.queryGlsmsasset()
@@ -186,16 +201,16 @@
             },
           //获取表格数据
           queryGlsmsasset(){
-            let data = {
-              plazaId: '1000423',//广场id 必填
+            const data = {
+              plazaId: getUrlMsg().projectId,//广场id 必填
               page: this.page,//页数
               size: this.size,//条数
             }
             if( this.keyword){
               data.keyword = this.typeEdit=='Image'? `${this.keyword}:brand`:`${this.keyword}:wzjc`
             }
-            let paramData =  {classstructureid: this.classstructureid,gname:this.floorId};
-            let paramDataLocal =  {locfl: this.locfl,gname:this.floorId};
+            const paramData =  {classstructureid: this.classstructureid,gname:this.floorId};
+            const paramDataLocal =  {locfl: this.locfl,gname:this.floorId};
             this.loading = true;
             if(this.typeEdit=='Image'){
               queryGlsmsasset(data,paramData).then(res => {
@@ -203,7 +218,7 @@
                 if(res.data.result == 'success'){
                   this.total = res.data.count;
                   if(res.data.data){
-                    let data = res.data.data;
+                    const data = res.data.data;
                     data.map(item=>{
                       item.id = item.sbjbm
                     })
@@ -239,54 +254,61 @@
             this.queryGlsmsasset();
           },
           onSelect(record, selected, selectedRows, nativeEvent){
-            if(!selected  && this.selectList.length>0){
-              this.selectList.map((item,index)=>{
-                if( item.id == record.id){
-                  this.selectList.splice(index,1);
+            if(!selected  && this.arrList.length>0){
+              this.arrList.map((item,index)=>{
+                if(this.typeEdit=='Zone'&& item.location == record.location ){
+                  this.arrList.splice(index,1);
+                }else if(this.typeEdit=='Image'&& item.assetnum == record.assetnum ){
+                  this.arrList.splice(index,1);
                 }
               })
             }
           },
           // 中间表格勾选
           onSelectChange(selectedRowKeys,selectedRows) {
-            console.log(selectedRows);
             this.selectedRowKeys = selectedRowKeys;
               if(this.selectedRowKeys.length>this.sysNum){
                 this.selectedRowKeys.pop();
                 this.$message.error('不能超过设备数')
                 return false;
               }
-            selectedRows.map(item=>{
-              this.selectList.push(item)
-            })
-            // let obj = {}
-            //
-            // this.selectList = this.selectList.reduce (function(item,next){
-            //
-            //   obj[next.id] ? ' ' : obj[next.id]  = true && item.push(next)
-            //
-            //   return item;
-            //
-            // },[])
+            this.arrList = [...this.arrList,...selectedRows]
+            const obj = {}
+            if(this.typeEdit=='Zone'){
+              this.arrList = this.arrList.reduce (function(item,next){
+                obj[next.location] ? ' ' : obj[next.location]  = true && item.push(next)
+
+                return item;
+
+              },[])
+            }else{
+              this.arrList = this.arrList.reduce (function(item,next){
+                obj[next.assetnum] ? ' ' : obj[next.assetnum]  = true && item.push(next)
+
+                return item;
+
+              },[])
+            }
+
           },
           //右侧删除
           deleteItem(item,index){
-            this.selectedRowKeys.splice(this.selectedRowKeys.indexOf(item.id),1);
-            this.selectList.splice(index,1);
+            this.selectedRowKeys.splice(this.selectedRowKeys.indexOf(item.location||item.assetnum),1);
+            this.arrList.splice(index,1);
           },
           //右侧清空
-          clearSelectList(){
+          clearArrList(){
             this.selectedRowKeys = [];
-            this.selectList = [];
+            this.arrList = [];
           },
           //获取楼层
           getPlazaFloor(){
-              let data = {
-                plazaId:'1000423'
+              const data = {
+                plazaId:getUrlMsg().projectId
               }
             getPlazaFloor(data).then(res =>{
               if(res.result == 'success'){
-                let data = res.data;
+                const data = res.data;
                 data.map(item=>{
                   item.id = item.gname;
                 })
@@ -300,7 +322,7 @@
                 getQuerySmsxt({}).then(res =>{
                   if(res.result == 'success'){
                     if(res.data){
-                      let data = res.data;
+                      const data = res.data;
                       data.map(item=>{
                         item.id = item.code;
                         item.name = item.name;
@@ -314,7 +336,7 @@
                 queryWzfldl({}).then(res =>{
                 if(res.result == 'success'){
                   if(res.data){
-                    let data = res.data;
+                    const data = res.data;
                     data.map(item=>{
                       item.id = item.dl;
                       item.name = item.dl;
@@ -329,13 +351,13 @@
          // 获取设备大类下的分类和位置大类下的分类
           getQuerySmsxtBy(smsxt){
               if(this.typeEdit=='Image'){
-              let data = {
+              const data = {
                 smsxt:smsxt
               }
               getQuerySmsxtBy(data,{}).then(res =>{
                 if(res.result == 'success') {
                   if(res.data){
-                    let data = res.data;
+                    const data = res.data;
                     (function recursion(newObj) {
                       newObj.map(item=>{
                         item.label = item.gcxxhxtname || item.classqc;
@@ -354,13 +376,13 @@
                 }
               })
             }else if(this.typeEdit=='Zone'){
-                let data = {
+                const data = {
                   dl:smsxt
                 }
                 queryWzflByDl(data,{}).then(res =>{
                   if(res.result == 'success') {
                     if(res.data){
-                      let data = res.data;
+                      const data = res.data;
                       (function recursion(newObj) {
                         newObj.map(item=>{
                           item.label = item.name;
@@ -380,14 +402,23 @@
 
           }
         },
-        mounted() {
+        created() {
+          if(this.attrCards.length){
+            this.attrCards.map(item=>{
+              this.selectedRowKeys.push(item.location||item.assetnum)
+            })
+            this.arrList = JSON.parse(JSON.stringify(this.attrCards));
+            this.selectList = JSON.parse(JSON.stringify(this.attrCards));
+          } else{
+            this.selectedRowKeys = [];
+          }
           this.getQuerySmsxt();
           //如果有专业就带过来
-          this.getQuerySmsxtBy(this.majorId)
-          console.log(this.typeEdit);
-
-
+          if(this.majorId){
+            this.getQuerySmsxtBy(this.majorId)
+          }
           this.getPlazaFloor();
+
         }
     }
 </script>

+ 20 - 0
src/components/edit/left_toolbar.vue

@@ -623,10 +623,30 @@ export default {
             .ant-table-small {
                 border: none !important;
             }
+<<<<<<< HEAD
+=======
+          }
+          .active-li {
+            background: #e1f2ff;
+          }
+>>>>>>> 4409220714b34bc8a4ee05f63e1ff80af76a9f55
         }
     }
     .border-top {
         border-top: 1px solid #c3c7cb;
     }
+<<<<<<< HEAD
+=======
+  }
+  .border-top {
+    /*border-top: 1px solid #c3c7cb;*/
+  }
+  .border-line{
+    width: 48px;
+    height: 2px;
+    background: #C3C7CB ;
+    margin: 0 auto;
+  }
+>>>>>>> 4409220714b34bc8a4ee05f63e1ff80af76a9f55
 }
 </style>

+ 41 - 13
src/components/edit/leftbar_components/itemTree.vue

@@ -2,19 +2,26 @@
   <div class="treeList">
     <div class="tree-body">
       <a-spin :spinning="spinning">
-      <a-tree
-        v-model="checkedKeys"
-        show-checkbox
-        checkable
-        :expanded-keys="expandedKeys"
-        :auto-expand-parent="autoExpandParent"
-        :selected-keys="selectedKeys"
-        :tree-data="treeData"
-        node-key="id"
-        @expand="onExpand"
-        @select="onSelect"
-        @check="onCheck"
-      />
+        <Tree
+                :multiple="true"
+                :notNull="true"
+                :returnParentNode="false"
+                :data="treeData"
+                @change="onChange"
+        />
+<!--      <a-tree-->
+<!--        v-model="checkedKeys"-->
+<!--        show-checkbox-->
+<!--        checkable-->
+<!--        :expanded-keys="expandedKeys"-->
+<!--        :auto-expand-parent="autoExpandParent"-->
+<!--        :selected-keys="selectedKeys"-->
+<!--        :tree-data="treeData"-->
+<!--        node-key="id"-->
+<!--        @expand="onExpand"-->
+<!--        @select="onSelect"-->
+<!--        @check="onCheck"-->
+<!--      />-->
       </a-spin>
     </div>
 
@@ -70,6 +77,10 @@ export default {
       console.log("onSelect", info);
       this.selectedKeys = selectedKeys;
     },
+      onChange(id){
+          console.log(id);
+          this.checkedKeys = id.checkedIds;
+      },
     queryByGroup() {
       this.spinning = true;
       const data = {
@@ -88,23 +99,29 @@ export default {
           const children = this.mapTree(item.Category);
           newTree.push({
             title: item.Name,
+            name: item.Name,
             id: item.Id,
             key:item.Id,
+            checked: 'uncheck',
             children
           });
         } else {
           newTree.push({
             title: item.Name,
+            name: item.Name,
             id: item.Id,
             key:item.Id,
+            checked: 'uncheck',
             children: []
           });
         }
       });
       newTree.push({
         title: '其他分组',
+        name: '其他分组',
         id: '#',
         key:'#',
+          checked: 'uncheck',
         children: []
       })
       return newTree;
@@ -113,9 +130,20 @@ export default {
     getSelectId(data){
       if(data == 'cancel'){
         this.checkedKeys = this.categoryIdS;
+          this.treeData.map(item=>{
+              if(this.categoryIdS.indexOf(item.id)>-1){
+                  item.checked = 'checked'
+              }else{
+                  item.checked = 'uncheck'
+
+              }
+          })
       }else if(data == 'rest'){
         // this.checkedKeys = [this.categoryId];
         this.checkedKeys = [];
+          this.treeData.map(item=>{
+              item.checked = 'uncheck'
+          })
       }else{
         this.checkedKeys =data;
       }

+ 0 - 1
src/components/edit/right_toolbar.vue

@@ -177,7 +177,6 @@ export default {
   watch: {
     focusItemList: function(newVal) {
       this.attrType = newVal.itemType;
-      console.log(' this.attrType',newVal)
       if (newVal.itemList.length !== 1) {
         this.msgList.forEach(item => {
           if (item.name == "X") {

+ 2 - 2
src/components/edit/top_toolbar.vue

@@ -15,8 +15,8 @@
           <a-icon type="edit" />
           <span>撤销</span>
         </li>
-        <li>
-          <a-icon type="edit" />
+        <li @click="redo">
+          <img class="lock" :src="require(`./../../assets/images/redo.png`)" alt />
           <span>重做</span>
                 </li>-->
                 <li class='zoom-window'>

+ 308 - 20
src/components/mapClass/EditScence.ts

@@ -55,7 +55,7 @@ export class EditScence extends SGraphScene {
             // 取消操作
             this.focusItem.cancelOperate();
             this.focusItem = null;
-            // this.selectContainer.
+            // this.selectContainer.clear()
         }
         if (this.view) {
             this.view.update();
@@ -78,7 +78,8 @@ export class EditScence extends SGraphScene {
 
     /** 当前选中焦点Item */
     focusItem: SGraphItem | null = null;
-
+    /** 当前选中焦点ItemList */
+    focusItemList: SGraphItem[] | null = null;
     /**图例节点 */
     Nodes: any = []; // 图例节点,所有与工程信息化相关的图例(图标类型与区域) // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
     /**图例节点 */ Markers: any = [];
@@ -193,6 +194,11 @@ export class EditScence extends SGraphScene {
         item.connect("finishCreated", this, this.finishCreated);
         this.grabItem = item;
         this.focusItem = item;
+        // 起始item点
+        item.startItem = clickItem;
+        if (clickItem) {
+            clickItem.connect('onMove', item, item.changePos);
+        }
         this.scenceUpdate(this);
         // this.undoStack.push(new SGraphAddCommand(this, item));
         // item.connect("onMove", this, this.onItemMove.bind(this));
@@ -211,7 +217,6 @@ export class EditScence extends SGraphScene {
         item.zOrder = ItemOrder.polylineOrder;
         this.addItem(item);
         item.connect("finishCreated", this, this.finishCreated);
-        // this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = item;
         this.focusItem = item;
         return true;
@@ -250,7 +255,6 @@ export class EditScence extends SGraphScene {
         this.addItem(item);
         this.Relations.push(item);
         item.connect("finishCreated", this, this.finishCreated);
-        // this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = item;
         this.focusItem = item;
         // 起始锚点
@@ -469,6 +473,7 @@ export class EditScence extends SGraphScene {
         this.Nodes.push(item);
         this.grabItem = item;
         this.focusItem = item;
+        this.finishCreated(item);
         this.scenceUpdate(this);
     }
 
@@ -483,10 +488,11 @@ export class EditScence extends SGraphScene {
      */
     updatedText(str: string): void {
         if (this.focusItem) {
-            const old = this.focusItem.text;
+            const oldMsg = this.focusItem.text;
+            const newMsg = str;
             this.focusItem.text = str;
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", oldMsg, newMsg));
             this.scenceUpdate(this);
-            // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", old, str));
         }
     }
 
@@ -510,11 +516,10 @@ export class EditScence extends SGraphScene {
      */
     updatedLineWidth(lineWidth: number): void {
         if (this.focusItem) {
-            // let old = new SFont(this.focusItem.font);
-            // let font = new SFont(this.focusItem.font);
-            // font.size = size;
+            const oldMsg = this.focusItem.lineWidth;
+            const newMsg = lineWidth;
             this.focusItem.lineWidth = lineWidth;
-            // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "font", old, font));
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "lineWidth", oldMsg, newMsg));
         }
     }
 
@@ -524,9 +529,11 @@ export class EditScence extends SGraphScene {
      */
     updatedFontColor(color: string): void {
         if (this.focusItem) {
-            let old = this.focusItem.color;
-            this.focusItem.color = new SColor(color);
-            // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
+            const oldMsg = this.focusItem.color;
+            const newMsg = new SColor(color);
+
+            this.focusItem.color = newMsg;
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", oldMsg, newMsg));
         }
     }
 
@@ -557,13 +564,17 @@ export class EditScence extends SGraphScene {
 
     updatedWidth(width: number): void {
         if (this.focusItem) {
-            // let old = this.focusItem.width;
+            let oldMsg = null;
+            const newMsg = width;
             if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
+                oldMsg = this.focusItem.sWidth
                 this.focusItem.sWidth = width;
+                this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "sWidth", oldMsg, newMsg));
             } else {
+                oldMsg = this.focusItem.width
                 this.focusItem.width = width;
+                this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "width", oldMsg, newMsg));
             }
-            // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
         }
     }
 
@@ -573,13 +584,18 @@ export class EditScence extends SGraphScene {
      */
     updatedHeight(height: number): void {
         if (this.focusItem) {
-            // let old = this.focusItem.width;
+            let oldMsg = null;
+            const newMsg = height;
             if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
+                oldMsg = this.focusItem.sHeight;
                 this.focusItem.sHeight = height;
+                this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "sHeight", oldMsg, newMsg));
             } else {
+                oldMsg = this.focusItem.height;
                 this.focusItem.height = height;
+                this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "height", oldMsg, newMsg));
             }
-            // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
+
         }
     }
 
@@ -604,7 +620,10 @@ export class EditScence extends SGraphScene {
      */
     updatedbackColor(color: string): void {
         if (this.focusItem) {
+            const newMsg = new SColor(color);
+            const oldMsg = this.focusItem.backgroundColor;
             this.focusItem.backgroundColor = new SColor(color);
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "backgroundColor", oldMsg, newMsg));
         }
     }
 
@@ -636,7 +655,10 @@ export class EditScence extends SGraphScene {
             } else if (val == "solid") {
                 borderStyle = SLineStyle.Soild;
             }
+            const newMsg = borderStyle;
+            const oldMsg = this.focusItem.lineStyle;
             this.focusItem.lineStyle = borderStyle;
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "lineStyle", oldMsg, newMsg));
         }
     }
 
@@ -646,7 +668,10 @@ export class EditScence extends SGraphScene {
      */
     upadataLengedName(val: string): void {
         if (this.focusItem && this.focusItem.data) {
+            const newMsg = val;
+            const oldMsg = this.focusItem.text;
             this.focusItem.text = val;
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", oldMsg, newMsg));
             this.scenceUpdate(this);
         }
     }
@@ -657,7 +682,10 @@ export class EditScence extends SGraphScene {
      */
     upadatImageNum(num: number): void {
         if (this.focusItem && this.focusItem.num) {
+            const newMsg = num;
+            const oldMsg = this.focusItem.num;
             this.focusItem.num = num;
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "num", oldMsg, newMsg));
         }
     }
 
@@ -667,7 +695,10 @@ export class EditScence extends SGraphScene {
      */
     upadatfillColor(fillColor: string): void {
         if (this.focusItem && this.focusItem.fillColor) {
+            const newMsg = new SColor(fillColor);
+            const oldMsg = this.focusItem.fillColor;
             this.focusItem.fillColor = new SColor(fillColor);
+            this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "num", oldMsg, newMsg));
         }
     }
     /**
@@ -687,6 +718,10 @@ export class EditScence extends SGraphScene {
     upadatAttachObjectIds(AttachObjectIds: []): void {
         if (this.focusItem) {
             this.focusItem.data.AttachObjectIds = AttachObjectIds;
+            // 重新选中focusitem
+            const item = this.focusItem;
+            this.selectContainer.clear();
+            this.selectContainer.toggleItem(item)
         }
     }
 
@@ -706,6 +741,7 @@ export class EditScence extends SGraphScene {
             ) {
                 this.focusItem.deletePoint(this.focusItem.curIndex);
             } else {
+                this.undoStack.push(new SGraphDeleteCommand(this, this.focusItem));
                 this.removeItem(this.focusItem);
                 let a = -1;
                 this.Nodes.forEach((item: any, index: number) => {
@@ -742,6 +778,47 @@ export class EditScence extends SGraphScene {
                 }
                 this.scenceUpdate(this);
             }
+        } else {
+            //批量删除
+            if (!this.focusItemList) {
+                return
+            }
+            this.undoStack.push(new SGraphDeleteListCommand(this,this.focusItemList))
+            this.focusItemList.forEach((focusItem) => {
+                this.removeItem(focusItem);
+                let a = -1
+                this.Nodes.forEach((item: any, index: number) => {
+                    if (item.id == focusItem.id) {
+                        a = index
+                    }
+                });
+                if (a > -1) {
+                    this.Nodes.splice(a, 1);
+                }
+                let b = -1;
+                this.Markers.forEach((item: any, index: number) => {
+                    if (item.id == focusItem.id) {
+                        b = index
+                    }
+                });
+                if (b > -1) {
+                    this.Markers.splice(b, 1);
+                }
+                let c = -1;
+                this.Relations.forEach((item: any, index: number) => {
+                    if (item.id == focusItem.id) {
+                        c = index
+                    }
+                });
+                if (c > -1) {
+                    this.Relations.splice(c, 1);
+                }
+            });
+            this.focusItemList = [];
+            if (this.view) {
+                this.view.update();
+            }
+            this.scenceUpdate(this);
         }
     }
     scenceUpdate(scence: any) {}
@@ -797,14 +874,23 @@ export class EditScence extends SGraphScene {
      * 执行取消操作
      */
     redo(): void {
-        this.undoStack.undo();
+        if (this.grabItem && this.grabItem.redo) {
+            this.grabItem.redo()
+        } else {
+            this.undoStack.redo();
+        }
+
     }
 
     /**
      * 执行重做操作执行
      */
     undo(): void {
-        this.undoStack.redo();
+        if (this.grabItem && this.grabItem.undo) {
+            this.grabItem.undo()
+        } else {
+            this.undoStack.undo();
+        }
     }
     /**
      * 完成事件创建的回调函数
@@ -829,6 +915,9 @@ export class EditScence extends SGraphScene {
             if (this.grabItem instanceof TipelineItem) {
                 this.setTipeEndanchor(event);
                 return true;
+            } else if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Create) {
+                this.setLineItem(event)
+                return true;
             }
             return this.grabItem.onMouseDown(event);
         }
@@ -866,6 +955,9 @@ export class EditScence extends SGraphScene {
     }
 
     onMouseMove(event: SMouseEvent): boolean {
+        if (!this.isEditStatus) {
+            return super.onMouseMove(event);
+        }
         if (this.isAbsorbing) {
             if (!this.highLight) {
                 this.highLight = new HighlightItem(null);
@@ -877,6 +969,20 @@ export class EditScence extends SGraphScene {
         return super.onMouseMove(event);
     }
 
+    onMouseUp(event: SMouseEvent): boolean {
+        if (this.grabItem) {
+            if (this.grabItem instanceof SLineMarkerItem && this.grabItem.status == SItemStatus.Edit) {
+                this.setLineItem(event)
+                return true;
+            } else if (this.grabItem instanceof TipelineItem){
+                this.updateTipeAnc(event);
+                return true;
+            }
+            return this.grabItem.onMouseUp(event);
+        }
+        return super.onMouseUp(event)
+    }
+
     /**
      * 键盘事件
      *
@@ -884,6 +990,9 @@ export class EditScence extends SGraphScene {
      * @return	boolean
      */
     onKeyDown(event: KeyboardEvent): any {
+        if (!this.isEditStatus) {
+            return super.onKeyDown(event);
+        }
         if (this.grabItem) {
             this.grabItem.onKeyDown(event);
             if (event.code == "Escape") {
@@ -902,8 +1011,24 @@ export class EditScence extends SGraphScene {
         return false;
     }
 
+
+    /**
+     * 鼠标双击事件
+     *
+     * @param	event         事件参数
+     * @return	boolean
+     */
+    onDoubleClick(event: SMouseEvent): boolean {
+        if (!this.isEditStatus) {
+            return true
+        } else {
+            return super.onDoubleClick(event);
+        }
+
+    } // Function onDoubleClick()
+
     /**
-     * 设置结束锚点
+     * 设置管线结束锚点
      *
      */
     setTipeEndanchor(event: SMouseEvent): void {
@@ -932,6 +1057,169 @@ export class EditScence extends SGraphScene {
     }
 
     /**
+     * 管线item修改锚点 
+     * 
+    */
+    updateTipeAnc(event: SMouseEvent): void {
+        if (this.grabItem instanceof TipelineItem){
+            const anc = this.clickIsAnchor(event);
+            if (anc) {
+                const p = anc.mapToScene(0, 0)
+                event.x = p.x;
+                event.y = p.y;
+                if (this.grabItem.status == SItemStatus.Edit) {
+                    if (this.grabItem.curIndex == 0) {
+                        if (this.grabItem.startAnchor){
+                            this.grabItem.startAnchor.isConnected = false
+                            this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
+                        }
+                        anc.isConnected = true;
+                        this.grabItem.startAnchor = anc;
+                        this.grabItem.anchor1ID = anc.id
+                        this.grabItem.node1Id = anc.parent.id
+                        anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
+                    }
+                    if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
+                        if (this.grabItem.endAnchor){
+                            this.grabItem.endAnchor.isConnected = false
+                            this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
+                        }
+                        anc.isConnected = true;
+                        this.grabItem.endAnchor = anc;
+                        this.grabItem.anchor2ID = anc.id
+                        this.grabItem.node2Id = anc.parent.id
+                        anc.parent.connect('changePos', this.grabItem, this.grabItem.changePos)
+                    }
+                }
+                this.grabItem.onMouseUp(event)
+                return
+            } else {
+                if (this.grabItem.status == SItemStatus.Edit) {
+                    if (this.grabItem.curIndex == 0) {
+                        if (this.grabItem.startAnchor){
+                            this.grabItem.startAnchor.isConnected = false
+                            this.grabItem.startAnchor.parent.disconnect('changePos',this.grabItem);
+                            this.grabItem.startAnchor = null;
+                            this.grabItem.anchor1ID = ''
+                            this.grabItem.node1Id = ''
+                        }
+                    }
+                    if (this.grabItem.curIndex == this.grabItem.pointList.length-1) {
+                        if (this.grabItem.endAnchor){
+                            this.grabItem.endAnchor.isConnected = false
+                            this.grabItem.endAnchor.parent.disconnect('changePos',this.grabItem);
+                            this.grabItem.endAnchor = null;
+                            this.grabItem.anchor2ID = ''
+                            this.grabItem.node2Id = ''
+                        }
+                    }
+                }
+                this.grabItem.onMouseUp(event)
+                return
+            }
+        }
+    }
+
+    /**
+     * 设置直线结束Item
+     *
+    */
+    setLineItem(event: SMouseEvent): void {
+        if (this.grabItem instanceof SLineMarkerItem) {
+            const item = this.clickIsItem(event);
+            // 鼠标点是否在某个item内
+            if (item) {
+                let scenePoint = item.boundingRect().center();
+                const p = item.mapToScene(scenePoint.x, scenePoint.y);
+                event.x = p.x;
+                event.y = p.y;
+                if (this.grabItem.status == SItemStatus.Create) {
+                    // 点击在item内、创建状态且端点列表不为空时将直线结束端点和item绑定
+                    if (this.grabItem.line.length) {
+                        if (this.grabItem.startItem ?.id == item.id) {
+                            this.grabItem.endItem = null;
+                        } else {
+                            this.grabItem.endItem = item;
+                            this.grabItem.line[1] = new SPoint(event.x, event.y);
+                            item.connect('onMove', this.grabItem, this.grabItem.changePos);
+                        }
+                    }
+                    this.grabItem.onMouseDown(event);
+                    return
+                } else if (this.grabItem.status == SItemStatus.Edit) {
+                    // 点击在item内、编辑状态且点击的为结束端点时
+                    if (this.grabItem.curIndex == 1) {
+                        // 直线关联的起始item是直线结束端点所在的item时,不吸附在点击item中心并将直线关联的结束item置为null
+                        if (this.grabItem.startItem ?.id == item.id) {
+                            this.grabItem.endItem = null;
+                        } else {// 反正吸附,关联
+                            this.grabItem.endItem = item;
+                            this.grabItem.line[1] = new SPoint(event.x, event.y);
+                            item.connect('onMove', this.grabItem, this.grabItem.changePos);
+                        }
+                    } else if (this.grabItem.curIndex == 0) {
+                        if (this.grabItem.endItem ?.id == item.id) {
+                            this.grabItem.startItem = null;
+                        } else {
+                            this.grabItem.startItem = item;
+                            this.grabItem.line[0] = new SPoint(event.x, event.y);
+                            item.connect('onMove', this.grabItem, this.grabItem.changePos);
+                        }
+                    }
+                }
+            } else {
+                // 如果不在item内且点击的是直线的某个端点,将端点的关联item置为null
+                if (this.grabItem.line.length && this.grabItem.curIndex != -1) {
+                    if (this.grabItem.curIndex == 1) {
+                        this.grabItem.endItem = null;
+                    } else if (this.grabItem.curIndex == 0) {
+                        this.grabItem.startItem = null;
+                    }
+                } else {
+                    this.grabItem.onMouseDown(event);
+                    return
+                }
+            }
+
+            // if (this.grabItem.status == SItemStatus.Create) {
+            //     // 鼠标点是否在某个item内
+            //     if (item) {
+            //         let scenePoint = item.boundingRect().center();
+            //         const p = item.mapToScene(scenePoint.x, scenePoint.y);
+            //         event.x = p.x;
+            //         event.y = p.y;
+            //         if (this.grabItem.line.length && this.grabItem.curIndex == -1) {
+            //             this.grabItem.endItem = item;
+            //             this.grabItem.line[1] = new SPoint(event.x, event.y);
+            //             item.connect('onMove', this.grabItem, this.grabItem.changePos);
+            //         }
+            //         this.grabItem.onMouseDown(event);
+            //         return
+            //     } else {
+            //         if (this.grabItem.line.length && this.grabItem.curIndex != -1) {
+            //             if (this.grabItem.curIndex == 1) {
+            //                 this.grabItem.endItem = null;
+            //             } else if (this.grabItem.curIndex == 0) {
+            //                 this.grabItem.startItem = null;
+            //             }
+            //         }
+            //     }
+            // } else if (this.grabItem.status == SItemStatus.Edit) {
+            //             if (this.grabItem.curIndex == 1) {
+            //                 this.grabItem.endItem = item;
+            //                 this.grabItem.line[1] = new SPoint(event.x, event.y);
+            //                 item.connect('onMove', this.grabItem, this.grabItem.changePos);
+            //             } else if (this.grabItem.curIndex == 0) {
+            //                 this.grabItem.startItem = item;
+            //                 this.grabItem.line[0] = new SPoint(event.x, event.y);
+            //                 item.connect('onMove', this.grabItem, this.grabItem.changePos);
+            //             }
+            // }
+            this.grabItem.onMouseUp(event);
+        }
+    }
+
+    /**
      *  划线时点击位置是否是锚点
      *
      *  @param  event   事件

+ 53 - 0
src/components/mapClass/SGraphAddListCommand.ts

@@ -0,0 +1,53 @@
+import { SGraphCommand } from "@saga-web/graph/lib/commands/SGraphCommand";
+import { SGraphItem } from "@saga-web/graph/lib/SGraphItem";
+import { SGraphScene } from "@saga-web/graph/lib/SGraphScene";
+import { SUndoCommand } from "@saga-web/base/lib";
+/**
+ * 添加多个item命令
+ *
+ * @author  han_yao_long
+ * */
+
+export class SGraphAddListCommand extends SGraphCommand {
+    /** 命令item对象    */
+    itemList: SGraphItem[];
+    /** 命令item的父类   */
+    parent: SGraphItem | null;
+    constructor(scene: SGraphScene, itemList: SGraphItem[]) {
+        super(scene);
+        this.itemList = itemList;
+        this.parent = itemList[0].parent;
+    }
+    /**
+   * 合并命令
+   *
+   * @return  boolean 是否已执行合并
+   * */
+    mergeWith(command: SUndoCommand): boolean {
+        return false;
+    } // Function mergeWith()
+
+    /**
+     * 重做
+     *
+     * */
+    redo(): void {
+        this.itemList.map((item) => {
+            item.parent = this.parent;
+        })
+        // @ts-ignore
+        this.parent.update();
+    } // Function redo()
+
+    /**
+     * 撤销
+     *
+     * */
+    undo(): void {
+        this.itemList.map((item) => {
+            item.parent = null;
+        })
+        // @ts-ignore
+        this.parent.update();
+    } // Function undo()
+}

+ 58 - 0
src/components/mapClass/SGraphDeleteCommand.ts

@@ -0,0 +1,58 @@
+
+import { SGraphCommand } from "@saga-web/graph/lib/commands/SGraphCommand";
+import { SGraphItem } from "@saga-web/graph/lib/SGraphItem";
+import { SGraphScene } from "@saga-web/graph/lib/SGraphScene";
+import { SUndoCommand } from "@saga-web/base/lib";
+
+/**
+ * 添加item命令
+ *
+ * @author  hanyaolong
+ * */
+export class SGraphDeleteCommand extends SGraphCommand {
+    /** 命令item对象    */
+    item: SGraphItem;
+    /** 命令item的父类   */
+    parent: SGraphItem | null;
+
+    /**
+     * 构造函数
+     *
+     * @param   scene   item所在场景
+     * @param   item    命令item对象
+     * */
+    constructor(scene: SGraphScene, item: SGraphItem) {
+        super(scene);
+        this.item = item;
+        this.parent = item.parent;
+    } // Constructor
+
+    /**
+     * 合并命令
+     *
+     * @return  boolean 是否已执行合并
+     * */
+    mergeWith(command: SUndoCommand): boolean {
+        return false;
+    } // Function mergeWith()
+
+    /**
+     * 重做
+     *
+     * */
+    undo(): void {
+        this.item.parent = this.parent;
+        // @ts-ignore
+        this.parent.update();
+    } // Function redo()
+
+    /**
+     * 撤销
+     *
+     * */
+    redo(): void {
+        this.item.parent = null;
+        // @ts-ignore
+        this.parent.update();
+    } // Function undo()
+} // Class SGraphAddCommand

+ 53 - 0
src/components/mapClass/SGraphDeleteListCommand.ts

@@ -0,0 +1,53 @@
+import { SGraphCommand } from "@saga-web/graph/lib/commands/SGraphCommand";
+import { SGraphItem } from "@saga-web/graph/lib/SGraphItem";
+import { SGraphScene } from "@saga-web/graph/lib/SGraphScene";
+import { SUndoCommand } from "@saga-web/base/lib";
+/**
+ * 多个item命令
+ *
+ * @author  han_yao_long
+ * */
+
+export class SGraphDeleteListCommand extends SGraphCommand {
+    /** 命令item对象    */
+    itemList: SGraphItem[];
+    /** 命令item的父类   */
+    parent: SGraphItem | null;
+    constructor(scene: SGraphScene, itemList: SGraphItem[]) {
+        super(scene);
+        this.itemList = itemList;
+        this.parent = itemList[0].parent;
+    }
+    /**
+   * 合并命令
+   *
+   * @return  boolean 是否已执行合并
+   * */
+    mergeWith(command: SUndoCommand): boolean {
+        return false;
+    } // Function mergeWith()
+
+    /**
+     * 重做
+     *
+     * */
+    undo(): void {
+        this.itemList.map((item) => {
+            item.parent = this.parent;
+        })
+        // @ts-ignore
+        this.parent.update();
+    } // Function redo()
+
+    /**
+     * 撤销
+     *
+     * */
+    redo(): void {
+        this.itemList.map((item) => {
+            item.parent = null;
+        })
+        // @ts-ignore
+        this.parent.update();
+    } // Function undo()
+}

+ 22 - 0
src/components/urlMsg.js

@@ -0,0 +1,22 @@
+export function getUrlMsg() {
+    const href = window.location.href;
+// 路由
+// const route = href.split("?")[0];
+// 参数处理
+let params = href.split("?")[1];
+if (!params) {
+    // 参数有问题
+    return false;
+}
+params = decodeURIComponent(params);
+// params = "categoryId=NTXT&ProjectID=5&BuildingID=1&FloorID=1"; // mock 参数
+const paramsArr = params.split("&");
+console.log("paramsArr", paramsArr);
+const obj = {};
+paramsArr.map(item => {
+    const arr = item.split("=");
+    obj[arr[0]] = arr[1];
+});
+// this.urlMsg = obj;
+    return  obj
+}

+ 1 - 0
src/lib/items/SFHFQZoneLegendItem.ts

@@ -105,6 +105,7 @@ export class SFHFQZoneLegendItem extends SPolygonItem {
      */
     constructor(parent: SGraphItem | null, data: Legend) {
         super(parent);
+        this.textItem.isTransform = false;
         this.zOrder = ItemOrder.polygonOrder;
         this.data = data;
         this.id = data.ID;

+ 1 - 0
src/lib/items/SImageLegendItem.ts

@@ -38,6 +38,7 @@ export class SImageLegendItem extends SIconTextItem {
      */
     constructor(parent: SGraphItem | null, data: Legend) {
         super(parent, data.AnchorList);
+        this.isTransform = false;
         this.zOrder = ItemOrder.markOrder;
         this.data = data;
         this.id = data.ID;

+ 1 - 0
src/lib/items/SImageMarkerItem.ts

@@ -22,6 +22,7 @@ export class SImageMarkerItem extends SImageItem {
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent);
         this.zOrder = ItemOrder.imageOrder;
+        this.isTransform = false;
         this.data = data;
         this.id = data.ID;
         this.name = data.Name;

+ 18 - 2
src/lib/items/SLineMarkerItem.ts

@@ -18,6 +18,20 @@ export class SLineMarkerItem extends SLineItem {
     /** 标识对象数据 */
     data: Marker;
 
+    /** 是否完成绘制  */
+    get status(): SItemStatus {
+        return this._status;
+    }
+    set status(v: SItemStatus) {
+        this._status = v;
+        if (v == SItemStatus.Edit) {
+            this.zOrder = ItemOrder.markOrder;
+        } else {
+            this.zOrder = ItemOrder.lineOrder;
+        }
+        this.update();
+    }
+
     /** 是否蒙版遮罩  */
     _maskFlag: boolean = false;
     get maskFlag(): boolean {
@@ -67,13 +81,15 @@ export class SLineMarkerItem extends SLineItem {
         if (this.startItem) {
             // 判断删除equip后,不移动
             if (this.startItem.parent) {
-                this.line[0] = this.startItem.mapToScene(0, 0);
+                let scenePoint: SPoint = this.startItem.boundingRect().center();
+                this.line[0] = this.startItem.mapToScene(scenePoint.x, scenePoint.y);
             }
         }
         if (this.endItem) {
             // 删除equip后
             if (this.endItem.parent) {
-                this.line[1] = this.endItem.mapToScene(0, 0);
+                let scenePoint: SPoint = this.endItem.boundingRect().center();
+                this.line[1] = this.endItem.mapToScene(scenePoint.x, scenePoint.y);
             }
         }
     }

+ 1 - 0
src/lib/items/SSCPZZoneLegendItem.ts

@@ -113,6 +113,7 @@ export class SSCPZZoneLegendItem extends SPolygonItem {
      */
     constructor(parent: SGraphItem | null, data: Legend) {
         super(parent);
+        this.textItem.isTransform = false;
         this.zOrder = ItemOrder.polygonOrder;
         this.data = data;
         this.id = data.ID;

+ 1 - 0
src/lib/items/STextMarkerItem.ts

@@ -21,6 +21,7 @@ export class STextMarkerItem extends STextItem {
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent);
         this.zOrder = ItemOrder.textOrder;
+        this.isTransform = false;
         this.data = data;
         this.id = data.ID;
         this.name = data.Name;

+ 1 - 0
src/lib/items/SZoneLegendItem.ts

@@ -105,6 +105,7 @@ export class SZoneLegendItem extends SPolygonItem {
      */
     constructor(parent: SGraphItem | null, data: Legend) {
         super(parent);
+        this.textItem.isTransform = false;
         this.zOrder = ItemOrder.polygonOrder;
         this.data = data;
         this.id = data.ID;

+ 15 - 8
src/lib/parsers/STopologyParser.ts

@@ -15,6 +15,8 @@ import { STextMarkerItem } from '../items/STextMarkerItem';
 import { TipelineItem } from '../items/TipelineItem';
 import { ItemOrder } from "@saga-web/big";
 import { SItemStatus } from "@saga-web/big";
+import { SSCPZZoneLegendItem } from '../items/SSCPZZoneLegendItem';
+import { SFHFQZoneLegendItem } from '../items/SFHFQZoneLegendItem';
 /**
  * 拓扑图信息解析器
  *
@@ -72,10 +74,19 @@ export class STopologyParser extends SParser {
             let item = new SNoneLegendItem(null, t);
             this.noneLegendList.push(item);
         } else if (t.GraphElementType == "Zone") {
-            let item = new SZoneLegendItem(null, t);
-            item.selectable = true;
-            item.zOrder == ItemOrder.polygonOrder;
-            this.zoneLegendList.push(item);
+            if (t.SubType == "SCPZ") {
+                let item = new SSCPZZoneLegendItem(null, t);
+                item.selectable = true;
+                this.zoneLegendList.push(item);
+            } else if (t.SubType == "FHFQ") {
+                let item = new SFHFQZoneLegendItem(null, t);
+                item.selectable = true;
+                this.zoneLegendList.push(item);
+            } else {
+                let item = new SZoneLegendItem(null, t);
+                item.selectable = true;
+                this.zoneLegendList.push(item);
+            }
         } else if (t.GraphElementType == 'Image') {
             let item = new SImageLegendItem(null, t);
             item.selectable = true;
@@ -93,16 +104,13 @@ export class STopologyParser extends SParser {
             let item = new SImageMarkerItem(null, t);
             this.imageMarkerList.push(item);
             item.selectable = true;
-            item.zOrder = ItemOrder.imageOrder;
         } else if (t.Type == "Line") {
             let item = new SLineMarkerItem(null, t);
             item.selectable = true;
-            item.zOrder = ItemOrder.lineOrder;
             this.lineMarkerList.push(item);
         } else if (t.Type == "Text") {
             let item = new STextMarkerItem(null, t);
             item.selectable = true;
-            item.zOrder = ItemOrder.lineOrder;
             this.textMarkerList.push(item);
         }
     } // Function addMarker()
@@ -115,7 +123,6 @@ export class STopologyParser extends SParser {
     private addRelation(t: Relation): void {
         let item = new TipelineItem(null, t);
         item.selectable = true;
-        item.zOrder == ItemOrder.polylineOrder;
         this.relationList.push(item);
     } // Function addRelation()
 } // class STopologyParser

+ 1 - 1
src/lib/types/Legend.ts

@@ -38,7 +38,7 @@ export interface Legend {
     /** 返回工程信息化对象 ID 列表 */
     AttachObjectIds?: string[];
     /** 图标,区域类型  */
-    GraphElementType: SGraphElementType;
+    GraphElementType: string;
     /** 对应的图例ID  */
     GraphElementId: string;
     /** 图例数量  */

+ 204 - 91
src/views/drafts.vue

@@ -1,66 +1,72 @@
 <template>
   <div id="drafts">
-      <div class="tit">草稿箱</div>
-      <div class="conent">
-        <div class="left-nav">
-          <!--        <Tree :data="treeData" @change="change"></Tree>-->
-          <el-tree :data="treeData" :props="defaultProps" @node-click="handleNodeClick"></el-tree>
+    <div class="tit">草稿箱</div>
+    <div class="conent">
+      <div class="left-nav">
+        <Tree :data="treeData" @change="change"></Tree>
+        <!--          <el-tree ref="tree" :data="treeData" :props="defaultProps" @node-click="handleNodeClick"  node-key="id"    :expand-on-click-node="false"-->
+        <!--                   :current-node-key="currentNodekey"-->
+        <!--                   :default-expanded-keys="expandedkeys">-->
+        <!--            <span class="span-ellipsis" slot-scope="{ node, data }">-->
+        <!--		<span :title="node.label">{{ node.label }}</span>-->
+        <!--	</span>-->
+        <!--          </el-tree>-->
+      </div>
+      <div class="conent-right">
+        <div class="conent-tit">
+          <div class="tit-left" v-if="floorName">{{systemName}}-{{floorName}}</div>
+          <div class="tit-right">
+            <a-button @click="deleteBtn" :disabled="!floorName">删除</a-button>
+            <a-button @click="publishBtn" :disabled="!floorName">发布</a-button>
+            <a-button type="primary" @click="goToEditer" :disabled="!floorName">编辑</a-button>
+          </div>
         </div>
-        <div class="conent-right">
-          <div class="conent-tit">
-            <div class="tit-left" v-if="floorName">{{systemName}}-{{floorName}}</div>
-            <div class="tit-right">
-              <a-button @click="deleteBtn" :disabled="!floorName">删除</a-button>
-              <a-button @click="publishBtn" :disabled="!floorName">发布</a-button>
-              <a-button type="primary" @click="goToEditer" :disabled="!floorName">编辑</a-button>
+        <div class="concent-bottom">
+          <div class="map">
+            <div class="canvas-container" ref="draftsCanvas">
+              <div id="fengMap"></div>
+              <canvas
+                id="canvas"
+                :width="canvasWidth"
+                :height="canvasHeight"
+                ref="canvas"
+                tabindex="0"
+              ></canvas>
             </div>
           </div>
-          <div class="concent-bottom">
-            <div class="map">
-              <div class="canvas-container" ref="draftsCanvas">
-                <div id="fengMap"></div>
-                <canvas
-                  id="canvas"
-                  :width="canvasWidth"
-                  :height="canvasHeight"
-                  ref="canvas"
-                  tabindex="0"
-                ></canvas>
+          <div v-show="!legend" class="legend-btn" @click="legend = !legend">
+            <a-icon type="left" style="color: #8D9399;font-size: 10px" />
+          </div>
+          <div v-show="legend" class="legend-btn legend-btn-close" @click="legend = !legend">
+            <a-icon type="right" style="color: #8D9399;font-size: 10px" />
+          </div>
+          <div class="legend" v-if="legend">
+            <div
+              style="font-size:14px;color: #1F2429;padding-left: 12px;height: 40px;line-height: 40px"
+            >可能需要补充的图例</div>
+            <a-table
+              v-loading="legendLoading"
+              :columns="columns"
+              :rowKey="(record,index)=>{return index}"
+              :data-source="legendData"
+              size="middle"
+              :pagination="false"
+            >
+              <div slot="Url" slot-scope="text,record">
+                <img
+                  v-if="record.Url"
+                  style=" width: 20px;height: 22px;"
+                  :src="'/serve/topology-wanda/Picture/query/'+ record.Url"
+                  alt
+                />
+                <span v-else>---</span>
               </div>
-            </div>
-            <div v-show="!legend" class="legend-btn" @click="legend = !legend">
-              <a-icon type="right" style="color: #8D9399;font-size: 10px" />
-            </div>
-            <div v-show="legend" class="legend-btn legend-btn-close" @click="legend = !legend">
-              <a-icon type="right" style="color: #8D9399;font-size: 10px" />
-            </div>
-            <div class="legend" v-if="legend">
-              <div
-                style="font-size:14px;color: #1F2429;padding-left: 12px;height: 40px;line-height: 40px"
-              >可能需要补充的图例</div>
-              <a-table
-                v-loading="legendLoading"
-                :columns="columns"
-                :rowKey="(record,index)=>{return index}"
-                :data-source="legendData"
-                size="middle"
-                :pagination="false"
-              >
-                <div slot="Url" slot-scope="text,record">
-                  <img
-                    v-if="record.Url"
-                    style=" width: 20px;height: 22px;"
-                    :src="'/serve/topology-wanda/Picture/query/'+ record.Url"
-                    alt
-                  />
-                  <span v-else>---</span>
-                </div>
-                <span></span>
-              </a-table>
-            </div>
+              <span></span>
+            </a-table>
           </div>
         </div>
       </div>
+    </div>
   </div>
 </template>
 <script>
@@ -81,7 +87,7 @@ import { STopologyParser } from "./../lib/parsers/STopologyParser";
 import { uuid } from "@/components/mapClass/until";
 import { SImageItem } from "@saga-web/graph/lib";
 import store from "../store";
-import {Loading} from "element-ui";
+import { Loading } from "element-ui";
 let fengmap = null;
 export default {
   components: { Tree },
@@ -122,28 +128,31 @@ export default {
       floorName: "",
       floorId: "", //楼层id
       BuildingID: "1", // 建筑id
-      categoryId: "" //系统类id
+      categoryId: "", //系统类id
+      currentNodekey: "", //默认选中的节点树
+      expandedkeys: [] //默认展开的节点树
     };
   },
   methods: {
-    handleNodeClick(data, node) {
-      this.legendData = [];
-      this.systemName = "";
-      this.floorName = "";
-      if (data.Gname) {
-        this.systemName = node.parent.data.Gcode;
-        this.floorName = data.Gcode;
-        this.floorId = data.Gname;
-        this.categoryId = node.parent.data.Id;
-        this.getLegend();
-        this.checkFloor(data.Gname);
-      }
-    },
+    // handleNodeClick(data, node) {
+    //   this.legendData = [];
+    //   this.systemName = "";
+    //   this.floorName = "";
+    //   if (data.Gname) {
+    //     this.systemName = node.parent.data.Gcode;
+    //     this.floorName = data.Gcode;
+    //     this.floorId = data.Gname;
+    //     this.categoryId = node.parent.data.Id;
+    //     this.getLegend();
+    //     this.checkFloor(data.Gname);
+    //   }
+    // },
+    //初始化获取蜂鸟所有底图数据
     init() {
       // const loadings = this.$loading({type: 'global'});
       document.getElementById(`canvas`).focus();
-      this.clearGraphy();
       this.scene = new EditScence();
+      this.clearGraphy();
       fengmap = new SFengParser(
         "fengMap",
         this.mapServerURL + "/fmap/" + this.fmapID,
@@ -151,6 +160,17 @@ export default {
         this.appName,
         null
       );
+      fengmap.loadMap(this.fmapID, resp => {
+        this.floorList = resp;
+        fengmap
+          .loadTheme(
+            `${this.mapServerURL}/webtheme/${this.fmapID}/${this.fmapID}.theme`
+          )
+          .then(response => {
+            // 获取楼层数据数据
+            this.getTreeData();
+          });
+      });
     },
     clearGraphy() {
       if (this.view) {
@@ -203,11 +223,100 @@ export default {
         }
       }
     },
+    change(id) {
+      const data = this.treeData;
+      (function recursion(newObj) {
+        newObj.map(function(item, index) {
+          item.open = false;
+          item.checked = false;
+          if (item.Category && item.Category.length > 0) {
+            item.children = item.Category;
+            recursion(item.Category);
+          }
+        });
+      })(data);
+      let items = null;
+      data.forEach(ele => {
+        ele.children.forEach(item => {
+          if (item.children) {
+            item.children.forEach(item1 => {
+              if (item1.id == id.id) {
+                items = item;
+                item.open = true;
+                ele.open = true;
+                item1.checked = "checked";
+              }
+            });
+          } else {
+            if (item.id == id.id) {
+              items = ele;
+              ele.open = true;
+              item.checked = "checked";
+            }
+          }
+        });
+      });
+      this.legendData = [];
+      this.systemName = "";
+      this.floorName = "";
+      this.systemName = items.Gcode;
+      this.floorName = id.Gcode;
+      this.floorId = id.Gname;
+      this.categoryId = items.Id;
+      // this.getLegend();
+      this.checkFloor(id.Gname);
+      console.log(items);
+    },
     getTreeData() {
       queryDraftGroup({ projectId: this.projectId }).then(res => {
         console.log(res);
         if (res.Result == "success") {
-          this.treeData = res.Data;
+          const data = res.Data;
+          (function recursion(newObj) {
+            newObj.map(function(item, index) {
+              item.id = item.Id || item.Gname;
+              item.name = item.Gcode;
+
+              item.checked = false;
+              if (item.Category && item.Category.length > 0) {
+                item.children = item.Category;
+                item.open = false;
+                recursion(item.Category);
+              }
+            });
+          })(data);
+          data.forEach(ele => {
+            ele.children.forEach(item => {
+              if (item.children) {
+                item.children.forEach(item1 => {
+                  item1.id = item.Id + item1.Gname;
+                });
+              } else {
+                item.id = ele.Id + item.Gname;
+              }
+            });
+          });
+          this.treeData = data;
+          if (this.treeData[0].children[0].children) {
+            this.treeData[0].open = true;
+            this.treeData[0].children[0].open = true;
+            this.treeData[0].children[0].children[0].checked = "checked";
+            this.systemName = this.treeData[0].children[0].Gcode;
+            this.floorName = this.treeData[0].children[0].children[0].Gcode;
+            this.floorId = this.treeData[0].children[0].Gname;
+            this.categoryId = this.treeData[0].children[0].Id;
+            // this.getLegend();
+            this.checkFloor(this.treeData[0].children[0].children[0].Gname);
+          } else {
+            this.treeData[0].open = true;
+            this.treeData[0].children[0].checked = "checked";
+            this.systemName = this.treeData[0].Gcode;
+            this.floorName = this.treeData[0].children[0].Gcode;
+            this.floorId = this.treeData[0].Gname;
+            this.categoryId = this.treeData[0].Id;
+            // this.getLegend();
+            this.checkFloor(this.treeData[0].children[0].Gname);
+          }
         } else {
           this.treeData = [];
           this.$message.error("获取楼层结构失败");
@@ -221,7 +330,8 @@ export default {
       queryStatistic({
         projectId: this.projectId,
         flag: true,
-        graphId: this.graphId
+        graphId: this.graphId,
+        pub: false
       }).then(res => {
         console.log(res);
         this.legendLoading = false;
@@ -272,13 +382,13 @@ export default {
         FloorID: this.floorId,
         GraphId: this.graphId,
         ProjectID: this.projectId,
-        Pub:false,
+        Pub: false,
         PubUser: ""
       };
       publishGraph(data).then(res => {
         loadings.close();
         if (res.Result == "success") {
-          this.$message.success('发布成功');
+          this.$message.success("发布成功");
           this.getTreeData();
           this.legendData = [];
         } else {
@@ -292,7 +402,8 @@ export default {
         categoryId: this.categoryId,
         projectId: this.projectId,
         BuildingID: this.BuildingID, // 建筑ID
-        FloorID: floorid // 楼层id
+        FloorID: floorid, // 楼层id
+        Pub: false
       };
       return readGroup(data);
     },
@@ -310,22 +421,18 @@ export default {
     },
     // 切换草稿箱楼层
     checkFloor(floorid) {
-      fengmap.loadMap(this.fmapID, resp => {
-        this.floorList = resp;
-        fengmap
-          .loadTheme(
-            `${this.mapServerURL}/webtheme/${this.fmapID}/${this.fmapID}.theme`
-          )
-          .then(response => {
-            console.log("获取rf成功", response);
-            this.parserData(floorid);
-          });
-        this.view.fitSceneToView();
-        // 获取
-        // 获取主题数据
+      const loadings = Loading.service({
+        lock: true,
+        text: "Loading",
+        spinner: "el-icon-loading",
+        background: "rgba(0, 0, 0, 0.7)"
+      });
+      setTimeout(() => {
+        this.parserData(floorid);
         this.readGroup(floorid).then(data => {
           this.graphId = data.Data[0].ID;
           if (data.Data) {
+            loadings.close();
             const parserData = new STopologyParser(null);
             parserData.parseData(data.Data[0].Elements);
             // 多边形
@@ -360,9 +467,10 @@ export default {
               this.scene.Relations.push(t);
             });
             this.view.fitSceneToView();
+            this.getLegend();
           }
         });
-      });
+      },100);
     }
   },
   mounted() {
@@ -386,7 +494,6 @@ export default {
     this.projectId = obj.projectId ? obj.projectId : "1000423";
     this.fmapID = obj.fmapID ? obj.fmapID : "1000423_120";
     this.init();
-    this.getTreeData();
   }
 };
 </script>
@@ -427,6 +534,12 @@ export default {
           color: #0091ff !important;
         }
       }
+      .span-ellipsis {
+        width: 100%;
+        overflow: hidden;
+        white-space: nowrap;
+        text-overflow: ellipsis;
+      }
     }
     .conent-right {
       flex: 1;
@@ -447,7 +560,7 @@ export default {
           color: rgba(31, 35, 41, 1);
         }
         .tit-right {
-          width: 246px;
+          width: 198px;
           display: flex;
           justify-content: space-between;
           margin-left: auto;

+ 3 - 1
vue.config.js

@@ -17,6 +17,7 @@ module.exports = {
             '/serve': {
                 target: 'http://192.168.200.87:8088/',
                 // target: 'http://192.168.200.83:8085/',
+                // target: 'http://60.205.177.43:8080', //阿里云
                 changeOrigin: true,
                 secure: false,
                 pathRewrite: {
@@ -25,10 +26,11 @@ module.exports = {
             },
             '/data': {
                 target: 'http://192.168.200.87:9003',
+                // target: 'http://60.205.177.43:9903', //阿里云
                 changeOrigin: true,
                 secure: false,
                 pathRewrite: {
-                    '^/data': '',
+                    '^/data': '/data',
                 },
             },
         },