Browse Source

img 初步提交

yunxing 4 years ago
parent
commit
a2ac63ce34

File diff suppressed because it is too large
+ 529 - 533
src/components/baseEditer.vue


+ 1 - 1
src/components/edit/attr_select.vue

@@ -515,7 +515,7 @@ export default {
         }
       }
       const  location =[];
-      Item.data.AttachObjectIds.map(item=>{
+      Item.data.AttachObjectIds && Item.data.AttachObjectIds.map(item=>{
         location.push(item.id)
       })
      if(newval.itemType == 'Zone'){

+ 390 - 318
src/components/edit/top_toolbar.vue

@@ -1,50 +1,55 @@
 <template>
-  <div id="top_toolbar">
-    <!-- 顶部编辑器 -->
-    <div class="tit">
-      <!-- <a-icon type="left" /> -->
-      {{this.urlMsg.floorName}}
-    </div>
-    <div class="tool">
-      <ul>
-        <li @click="saveMsg">
-          <img class="lock" :src="require(`./../../assets/images/t-save.png`)" alt />
-          <span>保存</span>
-        </li>
-        <!-- <li>
+    <div id='top_toolbar'>
+        <!-- 顶部编辑器 -->
+        <div class='tit'>
+            <!-- <a-icon type="left" /> -->
+            {{this.urlMsg.floorName}}
+        </div>
+        <div class='tool'>
+            <ul>
+                <li @click='saveMsg'>
+                    <img class='lock' :src='require(`./../../assets/images/t-save.png`)' alt />
+                    <span>保存</span>
+                </li>
+                <!-- <li>
           <a-icon type="edit" />
           <span>撤销</span>
         </li>
         <li>
           <a-icon type="edit" />
           <span>重做</span>
-        </li>-->
-        <li class="zoom-window">
-          <div>
-            <img class="lock" @click="handleScale(-1)" :src="require(`./../../assets/images/缩小.png`)" alt />
-            <span class="percentage">{{scalePercent}}</span>
-            <img class="lock" @click="handleScale(1)" :src="require(`./../../assets/images/放大 amplification.png`)" alt />
-          </div>
-          <span>缩放窗口</span>
-        </li>
-        <li>
-          <a-dropdown :trigger="['click']">
-            <div class="ant-dropdown-link dropdown-flex" @click="e => e.preventDefault()">
-              <div>
-                <img class="lock" :src="require(`./../../assets/images/t-format.png`)" alt />
-                <div>对齐</div>
-              </div>
-              <a-icon type="caret-down" class="down-icon" />
-            </div>
-            <a-menu slot="overlay">
-              <a-menu-item :disabled='item.disable' v-for="item in alignmentOptions" :key="item.value" @click="changeAlignItem(item.value)">
-                <img style="width: 16px;margin-right: 5px;" :src="require(`./../../assets/images/`+item.img+`.png`)" alt />
-                <span>{{item.label}}</span>
-              </a-menu-item>
-            </a-menu>
-          </a-dropdown>
-        </li>
-        <!-- <li>
+                </li>-->
+                <li class='zoom-window'>
+                    <div>
+                        <img class='lock' @click='handleScale(-1)' :src='require(`./../../assets/images/缩小.png`)' alt />
+                        <span class='percentage'>{{scalePercent}}</span>
+                        <img class='lock' @click='handleScale(1)' :src='require(`./../../assets/images/放大 amplification.png`)' alt />
+                    </div>
+                    <span>缩放窗口</span>
+                </li>
+                <li>
+                    <a-dropdown :trigger='[`click`]'>
+                        <div class='ant-dropdown-link dropdown-flex' @click='e => e.preventDefault()'>
+                            <div>
+                                <img class='lock' :src='require(`./../../assets/images/t-format.png`)' alt />
+                                <div>对齐</div>
+                            </div>
+                            <a-icon type='caret-down' class='down-icon' />
+                        </div>
+                        <a-menu slot='overlay'>
+                            <a-menu-item
+                                :disabled='item.disable'
+                                v-for='item in alignmentOptions'
+                                :key='item.value'
+                                @click='changeAlignItem(item.value)'
+                            >
+                                <img style='width: 16px;margin-right: 5px;' :src='require(`./../../assets/images/`+item.img+`.png`)' alt />
+                                <span>{{item.label}}</span>
+                            </a-menu-item>
+                        </a-menu>
+                    </a-dropdown>
+                </li>
+                <!-- <li>
           <a-icon type="edit" />
           <span>图层</span>
         </li>
@@ -55,311 +60,378 @@
         <li>
           <a-icon type="edit" />
           <span>打散</span>
-        </li>-->
-        <li @click="lockItem">
-          <Icon :name="!isLock?'lock':'unlock'" />
-          <span>{{isLock?"解锁":"锁定"}}</span>
-        </li>
-        <li @click="deleteItem">
-          <a-icon type="delete" />
-          <span>删除</span>
-        </li>
-      </ul>
-    </div>
-    <div class="btn-list">
-      <div class="btn-list-item" @click="publishMap">
-        <Icon name="release" />
-        <span>发布</span>
-      </div>
+                </li>-->
+                <li @click='lockItem'>
+                    <Icon :name='!isLock?`lock`:`unlock`' />
+                    <span>{{isLock?"解锁":"锁定"}}</span>
+                </li>
+                <li @click='deleteItem'>
+                    <a-icon type='delete' />
+                    <span>删除</span>
+                </li>
+                <li>
+                    <a-upload
+                        name='avatar'
+                        class='avatar-uploader'
+                        :show-upload-list='false'
+                        :customRequest='customRequest'
+                        action='https://jsonplaceholder.typicode.com/posts/'
+                        :before-upload='beforeUpload'
+                        @change='handleChange'
+                    >
+                        <img v-if='0' :src='imageUrl' alt='avatar' />
+                        <div v-else>
+                            <a-icon :type='loading ? `loading` : `edit`' />
+                            <div class='ant-upload-text'>修改底图</div>
+                        </div>
+                    </a-upload>
+                </li>
+            </ul>
+        </div>
+        <div class='btn-list'>
+            <div class='btn-list-item' @click='publishMap'>
+                <Icon name='release' />
+                <span>发布</span>
+            </div>
+        </div>
     </div>
-  </div>
 </template>
 <script>
-import bus from "@/bus";
-import { SGraphLayoutType } from "@saga-web/graph/lib";
-import systym from "./codeMapSystem.js";
-import { MessageBox } from 'element-ui';
+import bus from '@/bus'
+import { SGraphLayoutType } from '@saga-web/graph/lib'
+import systym from './codeMapSystem.js'
+import { MessageBox } from 'element-ui'
+import { uploadImg } from '@/api/editer.js'
+
+function getBase64(img, callback) {
+    const reader = new FileReader()
+    reader.addEventListener('load', () => callback(reader.result))
+    reader.readAsDataURL(img)
+}
 export default {
-  data() {
-    return {
-      isLock: false, //是否锁定
-      focusItem: null,
-      alignmentOptions: [
-        //对齐数据
-        {
-          value: SGraphLayoutType.Left,
-          label: "左对齐",
-          img: "t-left",
-          disable:true,
+    data() {
+        return {
+            loading: false, //添加图片,是否显示loading
+            imageUrl: '',
+            isLock: false, //是否锁定
+            focusItem: null,
+            alignmentOptions: [
+                //对齐数据
+                {
+                    value: SGraphLayoutType.Left,
+                    label: '左对齐',
+                    img: 't-left',
+                    disable: true
+                },
+                {
+                    value: SGraphLayoutType.Right,
+                    label: '右对齐',
+                    img: 't-right',
+                    disable: true
+                },
+                {
+                    value: SGraphLayoutType.Top,
+                    label: '顶对齐',
+                    img: 't-top',
+                    disable: true
+                },
+                {
+                    value: SGraphLayoutType.Bottom,
+                    label: '底对齐',
+                    img: 't-bottom',
+                    disable: true
+                },
+                {
+                    value: SGraphLayoutType.Center,
+                    label: '水平居中对齐',
+                    img: 't-center',
+                    disable: true
+                },
+                {
+                    value: SGraphLayoutType.Middle,
+                    label: '垂直居中对齐',
+                    img: 't-topandbottm',
+                    disable: true
+                },
+                {
+                    value: SGraphLayoutType.Vertical,
+                    label: '垂直分布',
+                    img: 't-vertical',
+                    disable: true
+                },
+                {
+                    value: SGraphLayoutType.Horizontal,
+                    label: '水平分布',
+                    img: 't-level',
+                    disable: true
+                }
+            ],
+            scale: 0.5, //底图缩放比例
+            initScale: 0.5, //初始 底图缩放比例
+            baseScale: 1.0, //底图基础缩放比例,由底图加载完成后,传入进来
+            scaleStep: 0.05 // +-缩放步进
+        }
+    },
+    computed: {
+        // 缩放比例显示文本
+        scalePercent() {
+            return (this.scale * 100).toFixed(0) + '%'
+        }
+    },
+    methods: {
+        handleChange(info) {
+            if (info.file.status === 'uploading') {
+                this.loading = true
+                return
+            }
+            if (info.file.status === 'done') {
+                // Get this url from response in real world.
+                getBase64(info.file.originFileObj, imageUrl => {
+                    this.imageUrl = imageUrl
+                    this.loading = false
+                    console.log(imageUrl)
+                    bus.$emit('changeImgUrl', imageUrl)
+                })
+            }
+        },
+        beforeUpload(file) {
+            const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png'
+            if (!isJpgOrPng) {
+                this.$message.error('You can only upload JPG file!')
+            }
+            const isLt2M = file.size / 1024 / 1024 < 2
+            if (!isLt2M) {
+                this.$message.error('Image must smaller than 2MB!')
+            }
+            return isJpgOrPng && isLt2M
+        },
+        // TODO: customRequest
+        customRequest(info) {
+            const formData = new FormData()
+            formData.append('file', info.file)
+            const postParams = formData
+            uploadImg({ postParams }).then(res => {
+                this.loading = false
+                if (res.Result == 'success') {
+                    this.$message.success(`${info.file.name} file uploaded successfully.`)
+                    bus.$emit('changeImgUrl', res.EntityList[0])
+                } else {
+                    this.$message.error(`${info.file.name} file upload failed.`)
+                }
+            })
         },
-        {
-          value: SGraphLayoutType.Right,
-          label: "右对齐",
-          img: "t-right",
-           disable:true,
+        /**
+         * @name getInitScale
+         * @description 获取底图加载完成后的,初始化的缩放比例initScale,设置为baseScale
+         */
+        getInitScale() {
+            bus.$on('initScale', baseScale => {
+                this.baseScale = Number(baseScale || 1)
+            })
         },
-        {
-          value: SGraphLayoutType.Top,
-          label: "顶对齐",
-          img: "t-top",
-           disable:true,
+        /**
+         * @name getMouseScale
+         * @description 滚轮滚动,导致的底图缩放比例 逻辑处理
+         */
+        getMouseScale() {
+            //  zoom 为缩放后改变的比例
+            bus.$on('mouseScale', zoom => {
+                this.scale = Number((zoom * this.initScale).toFixed(2))
+            })
         },
-        {
-          value: SGraphLayoutType.Bottom,
-          label: "底对齐",
-          img: "t-bottom",
-           disable:true,
+        /**
+         * @name handleScale
+         * @param { Number } type  -1:点击 - 缩小底图; 1:点击 + 放大底图
+         * @description 点击 -+ 缩放底图
+         */
+        handleScale(type) {
+            // +-按钮禁用处理
+            let flag = true
+            // 设置缩放范围 0.05 ~ 100
+            if ((type < 0 && this.scale <= 0.05) || (type > 0 && this.scale >= 100)) {
+                flag = false
+            } else {
+                flag = true
+            }
+            if (!flag) {
+                return false
+            }
+            // emit 缩放比例 this.scale / oldScale
+            const oldScale = this.scale
+            this.scale = Number((oldScale + type * this.scaleStep).toFixed(2))
+            bus.$emit('changeScale', this.scale / oldScale)
         },
-        {
-          value: SGraphLayoutType.Center,
-          label: "水平居中对齐",
-          img: "t-center",
-           disable:true,
+        FocusItemChanged(itemMsg) {
+            this.focusItem = null
+            this.alignmentOptions.forEach(el => {
+                el.disable = true
+            })
+            if (itemMsg.itemList.length == 1) {
+                this.isLock = itemMsg.itemList[0].moveable
+                this.focusItem = itemMsg.itemList[0]
+            } else if (itemMsg.itemList.length > 1) {
+                this.alignmentOptions.forEach(el => {
+                    el.disable = false
+                })
+            }
         },
-        {
-          value: SGraphLayoutType.Middle,
-          label: "垂直居中对齐",
-          img: "t-topandbottm",
-           disable:true,
+        lockItem() {
+            if (this.focusItem) {
+                this.isLock = !this.isLock
+                this.focusItem.moveable = this.isLock
+            } else {
+                this.$message.error('请选择指定对象!', 1)
+            }
         },
-        {
-          value: SGraphLayoutType.Vertical,
-          label: "垂直分布",
-          img: "t-vertical",
-           disable:true,
+        saveMsg() {
+            // this.$message.success("保存成功!", 1);
+            bus.$emit('saveMsgItem')
         },
-        {
-          value: SGraphLayoutType.Horizontal,
-          label: "水平分布",
-          img: "t-level",
-           disable:true,
+        // 删除item
+        deleteItem() {
+            console.log(this.focusItem)
+            if (this.focusItem) {
+                bus.$emit('deleiteItem')
+                // this.focusItem = null;
+                this.$message.success('删除成功', 1)
+            } else {
+                this.$message.error('请选择指定对象!', 1)
+            }
+        },
+        // 发布图例
+        publishMap() {
+            MessageBox.confirm('确认后即发布到平台?', '提示', {
+                confirmButtonText: '确认',
+                cancelButtonText: '取消',
+                type: 'warning'
+            })
+                .then(() => {
+                    bus.$emit('publishMap')
+                })
+                .catch(() => {})
+        },
+        // 对齐item
+        changeAlignItem(val) {
+            bus.$emit('changeAlignItem', val)
         }
-      ],
-      scale: 0.5, //底图缩放比例
-      initScale: 0.5,  //初始 底图缩放比例
-      baseScale: 1.0,  //底图基础缩放比例,由底图加载完成后,传入进来
-      scaleStep: 0.05, // +-缩放步进
-    };
-  },
-  computed: {
-    // 缩放比例显示文本
-    scalePercent() {
-      return (this.scale * 100).toFixed(0) + '%'
-    }
-  },
-  methods: {
-    /**
-     * @name getInitScale
-     * @description 获取底图加载完成后的,初始化的缩放比例initScale,设置为baseScale
-     */
-    getInitScale() {
-      bus.$on('initScale', baseScale => {
-        this.baseScale = Number(baseScale || 1)
-      })
-    },
-    /**
-     * @name getMouseScale
-     * @description 滚轮滚动,导致的底图缩放比例 逻辑处理
-     */
-    getMouseScale() {
-      //  zoom 为缩放后改变的比例
-      bus.$on('mouseScale', zoom => {
-        this.scale = Number((zoom * this.initScale).toFixed(2))
-      })
-    },
-    /**
-     * @name handleScale
-     * @param { Number } type  -1:点击 - 缩小底图; 1:点击 + 放大底图
-     * @description 点击 -+ 缩放底图
-     */
-    handleScale(type) {
-      // +-按钮禁用处理
-      let flag = true
-      // 设置缩放范围 0.05 ~ 100
-      if ((type < 0 && this.scale <= 0.05) || (type > 0 && this.scale >= 100)) {
-        flag = false
-      } else {
-        flag = true
-      }
-      if (!flag) {
-        return false
-      }
-      // emit 缩放比例 this.scale / oldScale
-      const oldScale = this.scale
-      this.scale = Number((oldScale + type * this.scaleStep).toFixed(2))
-      bus.$emit('changeScale', this.scale / oldScale)
     },
-    FocusItemChanged(itemMsg) {
-      this.focusItem = null; 
-      this.alignmentOptions.forEach(el=>{
-            el.disable = true
+    async mounted() {
+        bus.$on('FocusItemChanged', itemMsg => {
+            console.log('itemMsg', itemMsg)
+            this.FocusItemChanged(itemMsg)
         })
-      if (itemMsg.itemList.length == 1) {
-        this.isLock = itemMsg.itemList[0].moveable;
-        this.focusItem = itemMsg.itemList[0];
-      }else if (itemMsg.itemList.length > 1) {
-          this.alignmentOptions.forEach(el=>{
-              el.disable = false
-          })
-      }
+        // 获取底图加载完成后的初始sacle
+        await this.getInitScale()
+        // 监听滚轮 底图缩放比例
+        this.getMouseScale()
     },
-    lockItem() {
-      if (this.focusItem) {
-        this.isLock = !this.isLock;
-        this.focusItem.moveable = this.isLock;
-      } else {
-        this.$message.error("请选择指定对象!", 1);
-      }
-    },
-    saveMsg() {
-      // this.$message.success("保存成功!", 1);
-      bus.$emit("saveMsgItem");
-    },
-    // 删除item
-    deleteItem() {
-      console.log(this.focusItem);
-      if (this.focusItem) {
-        bus.$emit("deleiteItem");
-        // this.focusItem = null;
-        this.$message.success("删除成功", 1);
-      } else {
-        this.$message.error("请选择指定对象!", 1);
-      }
-    },
-    // 发布图例
-    publishMap(){
-      MessageBox.confirm('确认后即发布到平台?', '提示', {
-        confirmButtonText: '确认',
-        cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        bus.$emit("publishMap");
-      }).catch(() => {
-      });
-
-    },
-    // 对齐item
-    changeAlignItem(val) {
-      bus.$emit("changeAlignItem", val);
-    }
-  },
-  async mounted() {
-    bus.$on("FocusItemChanged", itemMsg => {
-      console.log("itemMsg", itemMsg);
-      this.FocusItemChanged(itemMsg);
-    });
-    // 获取底图加载完成后的初始sacle
-    await this.getInitScale()
-    // 监听滚轮 底图缩放比例
-    this.getMouseScale()
-  },
-  created() {
-    const href = window.location.href;
-    // 路由
-    // const route = href.split("?")[0];
-    // 参数处理
-    let params = href.split("?")[1];
-    if (!params) {
-      // 参数有问题
-      return false;
+    created() {
+        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
+        const FloorName = this.urlMsg.FloorName ? this.urlMsg.FloorName : ''
+        this.urlMsg.floorName = systym[this.urlMsg.categoryId] + '-' + FloorName
     }
-    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;
-    const FloorName =  this.urlMsg.FloorName ? this.urlMsg.FloorName:'';
-    this.urlMsg.floorName = systym[this.urlMsg.categoryId] + '-' + FloorName;
-  }
-};
+}
 </script>
 <style lang="less" scoped>
 ul,
 li {
-  /*margin: 0;*/
-  /*padding: 0;*/
-  list-style: none;
+    /*margin: 0;*/
+    /*padding: 0;*/
+    list-style: none;
 }
 #top_toolbar {
-  width: 100%;
-  height: 60px;
-  background: rgba(255, 255, 255, 1);
-  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
-  display: flex;
-  align-items: center;
-  justify-content: space-between;
-  padding: 0 24px 0 24px;
-  .tit {
-    // flex: 1;
-    font-size: 18px;
-    font-weight: bold;
-    color: #1f2429;
-  }
-  .tool {
-    ul {
-      display: flex;
-      li {
+    width: 100%;
+    height: 60px;
+    background: rgba(255, 255, 255, 1);
+    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+    padding: 0 24px 0 24px;
+    .tit {
+        // flex: 1;
+        font-size: 18px;
+        font-weight: bold;
+        color: #1f2429;
+    }
+    .tool {
+        ul {
+            display: flex;
+            li {
+                display: flex;
+                justify-content: center;
+                flex-direction: column;
+                /*width: 62px;*/
+                padding: 0 7px;
+                margin-left: 7px;
+                font-size: 12px;
+                align-items: center;
+                text-align: center;
+                cursor: pointer;
+                img {
+                    width: 16px;
+                    height: 16px;
+                }
+                .percentage {
+                    display: inline-block;
+                    width: 35px;
+                    border-bottom: 1px solid #c3c7cb;
+                    margin: 0 13px;
+                    font-size: 14px;
+                }
+                .dropdown-flex {
+                    display: flex;
+                    align-items: center;
+                    .down-icon {
+                        margin-left: 12px;
+                    }
+                }
+            }
+            li:hover {
+                background: #f5f6f7;
+            }
+            .zoom-window {
+                border-left: 1px solid #8d9399;
+                border-right: 1px solid #8d9399;
+            }
+        }
+    }
+    .btn-list {
         display: flex;
-        justify-content: center;
-        flex-direction: column;
-        /*width: 62px;*/
-        padding: 0 7px;
-        margin-left: 7px;
-        font-size: 12px;
         align-items: center;
-        text-align: center;
-        cursor: pointer;
-        img {
-          width: 16px;
-          height: 16px;
-        }
-        .percentage {
-          display: inline-block;
-          width: 35px;
-          border-bottom: 1px solid #c3c7cb;
-          margin: 0 13px;
-          font-size: 14px;
-        }
-        .dropdown-flex {
-          display: flex;
-          align-items: center;
-          .down-icon {
-            margin-left: 12px;
-          }
+        justify-content: center;
+        width: 72px;
+        .btn-list-item {
+            display: flex;
+            justify-content: center;
+            flex-direction: column;
+            span {
+                font-size: 12px;
+            }
+            cursor: pointer;
         }
-      }
-      li:hover {
-        background: #f5f6f7;
-      }
-      .zoom-window {
-        border-left: 1px solid #8d9399;
-        border-right: 1px solid #8d9399;
-      }
     }
-  }
-  .btn-list {
-    display: flex;
-    align-items: center;
-    justify-content: center;
-    width: 72px;
-    .btn-list-item {
-      display: flex;
-      justify-content: center;
-      flex-direction: column;
-      span {
-        font-size: 12px;
-      }
-      cursor: pointer;
-    }
-  }
 }
 /deep/ .ant-dropdown-menu-item {
-  display: flex;
-  align-items: center;
+    display: flex;
+    align-items: center;
 }
 </style>

File diff suppressed because it is too large
+ 388 - 433
src/components/mapClass/EditScence.ts


+ 19 - 17
src/router/index.ts

@@ -5,26 +5,28 @@ const Drafts = () => import('../views/drafts.vue')
 Vue.use(VueRouter)
 
 const routes: Array<RouteConfig> = [
-  {
-    path: '/',
-    redirect: '/editer'
-  },
-  {
-    path: '/editer',
-    name: 'editer',
-    component: Editer
-  },
-  {
-    path: '/drafts',
-    name: 'drafts',
-    component: Drafts
-  }
+    {
+        path: '/',
+        // redirect: '/editer'
+        name: 'systemMap',
+        component: () => import('../views/systemMap.vue'),
+    },
+    {
+        path: '/editer',
+        name: 'editer',
+        component: Editer,
+    },
+    {
+        path: '/drafts',
+        name: 'drafts',
+        component: Drafts,
+    },
 ]
 // 使用histroy模式
 const router = new VueRouter({
-  mode: 'history',
-  base: process.env.BASE_URL,
-  routes
+    mode: 'history',
+    base: process.env.BASE_URL,
+    routes,
 })
 
 export default router

+ 94 - 0
src/views/system.json

@@ -0,0 +1,94 @@
+//整体数据格式
+{
+    "Data": [
+        {
+            "Elements": {
+                // 系统图展示所需数据
+                "Nodes": [], // 图例节点,所有与工程信息化相关的图例(图标类型与区域)
+                "Markers": [], // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
+                "Relations": [] // 管线对象
+            },
+            "ID": "", // 图ID
+            "Name": "", // 名称
+            "CategoryID": "", // 图分类ID
+            "ProjectID": "", // 项目ID
+            "BuildingID": "", // 建筑ID
+            "FloorID": "", // 楼层id
+            "Note": "", // 图说明
+            "Log": {
+                //图操作日志
+                "Mark": "", //图的存盘标记
+                "CommandList": [
+                    {
+                        "Command": "", //命令
+                        "Desc": "", //描述
+                        "Detail": "" //详情
+                    }
+                ]
+            }
+        }
+    ],
+    "Message": "",
+    "Result": ""
+},
+//  图例节点
+
+Nodes:[
+        {   
+            ID: '',                             // ID
+            Name: '',                           // 名称
+            AttachObjectIds:[],                 // 返回工程信息化对象 ID 列表
+            GraphElementType: '',               // 图例类型 None/Line/Zone/Image:非图例/线条/区域类型/图标
+            GraphElementId: '',                 // 对应的图元ID
+            Num: 1                              //图例数量
+            Pos: {X: 0, Y: 0},                  // 位置
+            Scale: {X: 1, Y: 1, Z: 1},          // 缩放
+            Rolate: {X: 0, Y: 0, Z: 0},         // 旋转
+            Size: {Width:0, Height: 0},         // 大小
+            AnchorList:[
+                    {
+                        ID: '',                 // 锚点ID
+                        Pos: '',                // 锚点的坐标
+                    },
+                    ...
+                ],
+            OutLine: [
+                [{X:0,Y:0,Z:0},...],            // 外轮廓 
+                ...                             // 内轮廓
+            ],                                  // 轮廓线
+            Properties: {}                      // 由应用自己定义
+        },
+        ...
+    ]
+//  标识对象
+    Markers:[
+        {
+            ID: '',                             // ID
+            Name: '',                           // 名称
+            Type: '',                           // 图标(Image),线类型(Line),文本(Text)
+            Pos: {X: 0, y: 0},                  // 位置
+            Scale: {X: 1, Y: 1, Z: 1},          // 缩放
+            Rolate: {X: 0, Y: 0, Z: 0},         // 旋转
+            Size: {Width:0, Height: 0},         // 大小
+            Properties: {}                      // 由应用自己定义
+        },
+        ...
+    ]
+    // 对象关系
+
+        Relations: [
+        {
+            ID: '',                             // ID
+            Name: '',                           // 名称
+            GraphElementId: '',                 // 对应的图例ID
+            Node1ID: '',                        // 关联节点1_id
+            Node2ID: '',                        // 关联节点2_id
+            Anchor1ID: '',                      // 关联锚点1_id
+            Anchor2ID: '',                      // 关联锚点2_id
+            Dir: 0,                             // 方向(0:无向,1:节点1到节点2,2:节点2到节点1)
+            LineType: '',                       // 直线(Line),水平垂直
+            PointList: [],                      // 线的顶点坐标
+            Style: ''                           // 线的绘图样式
+        },
+        ...
+    ]

+ 130 - 0
src/views/systemMap.vue

@@ -0,0 +1,130 @@
+/**
+ * @description 系统图(拓扑图)
+ */
+<template>
+    <div class='systemMap'>
+        <div class='top_toolbar'>
+            <topToolbar></topToolbar>
+        </div>
+        <div class='content'>
+            <!-- 左侧工具栏 -->
+            <div class='left_toolbar'>
+                <leftToolbar @setCmdType='setCmdType' :cmdType='cmdType' @toolActionClick='toolActionClick'></leftToolbar>
+            </div>
+            <!-- 绘制界面 -->
+            <div class='baseEdit'>
+                <baseEditer ref='graphy' :cmdType='cmdType' @setCmdType='setCmdType' @changeFocusItem='changeFocusItem'></baseEditer>
+            </div>
+            <!-- <div class='canvas-container'>
+                <canvas id='drawPolyline1' width='600' height='300'></canvas>
+            </div>-->
+            <!-- 右侧工具栏 -->
+            <div class='right_toolbar'>
+                <rightToolbar :focusItemList='focusItemList'></rightToolbar>
+            </div>
+        </div>
+        <!-- <div class='canvas-container'>
+            <canvas id='drawPolyline1' width='600' height='300'></canvas>
+        </div>-->
+    </div>
+</template>
+<script lang='ts'>
+/* import { SCanvasView, SColor, SPainter, SPoint } from '@saga-web/draw/lib'
+class TView extends SCanvasView {
+    arr: SPoint[] = [new SPoint(10, 10), new SPoint(10, 40), new SPoint(30, 30)]
+    constructor() {
+        super('drawPolyline1')
+    }
+    onDraw(canvas: SPainter): void {
+        canvas.drawPolyline(this.arr)
+    }
+} */
+
+// import { STopologyParser } from '../lib/parsers/STopologyParser'
+import { SImageItem } from '@saga-web/graph/lib'
+import { SPainter, SColor, SFont, SPoint } from '@saga-web/draw'
+import { uuid } from '../components/mapClass/until'
+import { EditScence } from '../components/mapClass/EditScence'
+import bus from '../bus'
+import store from '../store'
+
+import baseEditer from '../components/baseEditer.vue'
+import leftToolbar from '../components/edit/left_toolbar.vue'
+import topToolbar from '../components/edit/top_toolbar.vue'
+import rightToolbar from '../components/edit/right_toolbar.vue'
+export default {
+    name: 'systemMap',
+    props: {},
+    components: { baseEditer, leftToolbar, topToolbar, rightToolbar },
+    data() {
+        return {
+            id: `canvas_${new Date().getTime()}`,
+            cmdType: 'choice',
+            focusItemList: null
+        }
+    },
+
+    beforeMount() {},
+    mounted() {
+        // new TView()
+    },
+    methods: {
+        // 左侧工具栏 点击事件
+        toolActionClick(item) {
+            this.cmdType = item.Type
+            bus.$emit('setLenged', item)
+        },
+        setCmdType(cmdType) {
+            this.cmdType = cmdType
+        },
+        changeFocusItem(item) {
+            this.focusItemList = item
+        }
+    }
+}
+</script>
+<style lang='less' scoped>
+// 顶层标签
+.systemMap {
+    width: 100%;
+    height: 100%;
+    .top_toolbar {
+        width: 100%;
+        height: 60px;
+        background: rgba(255, 255, 255, 1);
+        box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.1);
+    }
+    .content {
+        width: 100%;
+        height: calc(100% - 60px);
+        display: flex;
+        position: relative;
+        .baseEdit,
+        .canvas-container {
+            flex: 1;
+            background-color: rgba(178, 177, 241, 0.082);
+        }
+        .right_toolbar {
+            height: 100%;
+            background: #fff;
+        }
+        .left_toolbar {
+            position: absolute;
+            height: 100%;
+            /*z-index: 1001;*/
+            /*left: 12px;*/
+            /*top: 12px;*/
+        }
+    }
+    // canvas容器
+    // .canvas-container {
+    //     margin: 0 auto;
+    //     width: 50%;
+    //     height: 300px;
+    //     canvas {
+    //         // width: 100%;
+    //         // height: 100%;
+    //     }
+    // }
+}
+</style>