Explorar el Código

edit:fix> 完成设备图上传修改和保存

YaolongHan hace 4 años
padre
commit
1e8a10c573

+ 3 - 1
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -179,6 +179,7 @@ export class SBaseEditScene extends SGraphEditScene {
     addEuqipment(event: SMouseEvent, legendObj: any): void {
 
         const data = {
+            nodeId: uuid(),
             /** 名称 */
             name: '基础设备',
             /** 返回物理世界对象 ID 列表 */
@@ -257,8 +258,9 @@ export class SBaseEditScene extends SGraphEditScene {
         if (anc) {
             anc.parent?.connect('changePos', item, item.changePos)
             item.anchor1Id = anc.id;
-            item.node1Id = anc.parent ? anc.parent.id : '';
+            item.node1Id = anc.parent ? anc.parent.nodeId : '';
         }
+        console.log('anc',anc)
         item.connect("finishCreated", this, this.finishCreated);
         item.connect("onContextMenu", this, this.getItem);
         if (this.view) {

+ 36 - 17
src/components/editClass/big-edit/items/SBaseEquipment.ts

@@ -28,13 +28,15 @@ import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
 import { Legend } from "./../types/Legend";
 import { SBaseIconTextEdit, SBaseTextEdit } from './../../edit/';
 import { SColor } from '@persagy-web/draw/lib';
-import { svgTobase64 } from "./../until"
+import { svgTobase64, uuid } from "./../until"
 /**
  * 编辑基础设备类
  *
  * @author 韩耀龙 <han_yao_long@163.com>
  */
 export class SBaseEquipment extends SBaseIconTextEdit {
+    /** 图例节点 id */
+    nodeId: string | null = null;
     /** 设备图例 */
     _legendData: Legend | null = null;
     set legendData(val) {
@@ -54,6 +56,19 @@ export class SBaseEquipment extends SBaseIconTextEdit {
         return this._infoPointList
     } // get infoPointList()
 
+    /** 图得url */
+    _url: string = '';
+    set url(val) {
+        this._url = val;
+        this.initUrl()
+    } // set infoPointList()
+    get url(): string {
+        return this._url
+    } // get infoPointList()
+
+    //  设备附加数据
+    anotherMsg: string = ''
+
     /**
      * 构造函数
      *
@@ -70,6 +85,7 @@ export class SBaseEquipment extends SBaseIconTextEdit {
      */
     initData() {
         if (!this.legendData) return;
+        this.nodeId = this.legendData?.nodeId
         if (this.legendData.size) {
             this.sWidth = this.legendData.size.width;
             this.sHeight = this.legendData.size.height;
@@ -78,20 +94,20 @@ export class SBaseEquipment extends SBaseIconTextEdit {
         if (this.legendData.anchorList && this.legendData.anchorList.length) {
             this.anchorList = this.legendData.anchorList.map(t => {
                 let item = new SAnchorItem(this);
-                if (t.id) {
-                    item.id = t.id;
+                if (t.anchorId) {
+                    item.id = t.anchorId;
                 }
                 item.moveTo(t.pos.x, t.pos.y);
                 return item;
             });
         } else {
             const anchorPoint = [
-                { x: this.img.x, y: this.img.y, id: "" },
+                { x: this.img.x, y: this.img.y, anchorId: uuid() },
             ];
             this.anchorList = anchorPoint.map(t => {
                 let item = new SAnchorItem(this);
-                if (t.id) {
-                    item.id = t.id;
+                if (t.anchorId) {
+                    item.id = t.anchorId;
                 }
                 item.moveTo(t.x, t.y);
                 return item;
@@ -114,19 +130,21 @@ export class SBaseEquipment extends SBaseIconTextEdit {
 
 
         this.showAnchor = false;
-        const url = this.legendData.style.default.base64Url ? this.legendData.style.default.base64Url : this.legendData.style.default.url
-        svgTobase64(url).then((res) => {
-            this.img.url = res ? res : '';
-        }).catch((res) => {
-            this.img.url = res;
-        })
-
+        this.url = this.legendData.style.default.base64Url ? this.legendData.style.default.base64Url : this.legendData.style.default.url
+        this.anotherMsg = this.legendData.properties.anotherMsg ? this.legendData.properties.anotherMsg : '';
         this.x = this.legendData.pos.x;
         this.y = this.legendData.pos.y;
         this.moveable = true;
         this.selectable = true;
     }// Function initData()
 
+    initUrl() {
+        svgTobase64(this.url).then((res) => {
+            this.img.url = res ? res : '';
+        }).catch((res) => {
+            this.img.url = res;
+        })
+    }
 
     /**
      * 设置信息点
@@ -192,10 +210,10 @@ export class SBaseEquipment extends SBaseIconTextEdit {
         if (this.legendData) {
             const list = this.anchorList.map((item) => {
                 return {
-                    id: item.id,
+                    anchorId: item.id,
                     pos: {
-                        x: this.x,
-                        y: this.y
+                        x: item.x,
+                        y: item.y
                     }
                 }
             })
@@ -227,8 +245,9 @@ export class SBaseEquipment extends SBaseIconTextEdit {
                 infoPoinList.push(obj)
             });
             this.legendData.properties.infoPointList = infoPoinList;
+            this.legendData.properties.anotherMsg = this.anotherMsg;
             this.legendData.style.default.base64Url = "";
-            this.legendData;
+            this.legendData.style.default.url = this.url;
             return this.legendData
         }
     } // Function toData

+ 16 - 2
src/components/editClass/big-edit/items/SBasePipe.ts

@@ -117,7 +117,6 @@ export class SBasePipe extends SBasePolylineEdit {
      */
     initData() {
         const data = this.relationData;
-        console.log('12313131',data)
         if (!data) return;
         // 名称
         this.name = data.name;
@@ -131,6 +130,21 @@ export class SBasePipe extends SBasePolylineEdit {
             });
             this.pointList = setPointList;
         }
+
+        //锚点
+        if (data.node1Id) {
+            this._node1Id = data.node1Id
+        }
+        if (data.node2Id) {
+            this._node2Id = data.node2Id
+        }
+        if (data.anchor1Id) {
+            this._anchor1Id = data.anchor1Id
+        }
+        if (data.anchor2Id) {
+            this._anchor2Id = data.anchor2Id
+        }
+
         // 样式
         if (data.style && data.style.default) {
             // 颜色
@@ -186,7 +200,7 @@ export class SBasePipe extends SBasePolylineEdit {
     toData(): any {
         this.moveToOrigin();
         const data = this.relationData;
-        console.log('todata',data)
+        console.log('todata', data)
         if (!data) return;
         if (this.pointList.length) {
             const Line = this.pointList.map(pos => {

+ 1 - 1
src/components/editClass/big-edit/types/Anchor.ts

@@ -33,7 +33,7 @@ import { Point } from "./../../edit/type/Point";
  */
 export interface Anchor {
     /** 锚点 ID */
-    id: string;
+    anchorId: string;
     /** 锚点的坐标 */
     pos: Point;
 } // Interface Anchor

+ 4 - 0
src/components/editClass/big-edit/types/Legend.ts

@@ -37,6 +37,10 @@ import { SPoint } from '@persagy-web/draw/';
 export interface Legend {
     /** ID */
     id?: string;
+    /** 图 id */
+    graphId?: string;
+    /** 图例实例 id */
+    nodeId?: string;
     /** 名称 */
     name: string;
     /** 返回物理世界对象 ID 列表 */

+ 4 - 0
src/components/editClass/big-edit/types/Marker.ts

@@ -35,6 +35,10 @@ import { Size } from "@persagy-web/big/lib/types/Size";
 export interface Marker {
     /** ID */
     id?: string;
+    /** 图 id */
+    graphId?: string;
+    /** 图例实例 id */
+    markerId?: string;
     /** 名称 */
     name: string;
     /** 图标 (Image),线类型 (Line) */

+ 5 - 1
src/components/editClass/big-edit/types/Relation.ts

@@ -33,8 +33,12 @@ import { Point } from "./../../edit/type/Point";
  * @author 韩耀龙 <han_yao_long@163.com>
  */
 export interface Relation {
-    /** ID */
+    /** 图 id */
     id?: string;
+    /** 图 id */
+    graphId?: string;
+    /** 图例实例 id */
+    relationId?: string;
     /** 名称 */
     name: string;
     /** 对应的图例 ID */

+ 1 - 1
src/components/editClass/edit/SGraphEditScene.ts

@@ -517,7 +517,7 @@ export class SGraphEditScene extends SGraphScene {
                         anc.parent?.connect('changePos', this.grabItem, this.grabItem.changePos)
                     }
                     this.grabItem.anchor2Id = anc.id
-                    this.grabItem.node2Id = anc.parent.id
+                    this.grabItem.node2Id = anc.parent.nodeId
                     this.grabItem.onMouseDown(event)
                     this.grabItem.status = SItemStatus.Normal;
                     this.finishCreated(this.grabItem)

+ 1 - 1
src/components/editClass/edit/items/SBaseIconTextEdit.ts

@@ -221,7 +221,7 @@ export class SBaseIconTextEdit extends SGraphEdit {
     } // Set sHeight
 
     /** 是否显示锚点 */
-    private _showAnchor: boolean = false;
+    private _showAnchor: boolean = true;
     get showAnchor(): boolean {
         return this._showAnchor;
     } // Get showAnchor

+ 1 - 1
src/components/editClass/edit/type/Anchor.ts

@@ -33,7 +33,7 @@ import { Point } from "./Point";
  */
 export interface Anchor {
     /** 锚点 ID */
-    ID: string;
+    anchorId: string;
     /** 锚点的坐标 */
     Pos: Point;
 } // Interface Anchor

+ 7 - 3
src/components/editClass/edit/type/Legend.ts

@@ -36,7 +36,11 @@ import { SPoint } from '@persagy-web/draw/lib';
  */
 export interface Legend {
     /** ID */
-    id: string;
+    id?: string;
+    /** 图 id */
+    graphId?: string;
+    /** 图例实例 id */
+    nodeId?: string;
     /** 名称 */
     name: string;
     /** 返回工程信息化对象 ID 列表 */
@@ -63,6 +67,6 @@ export interface Legend {
     outLine?: Point[] | SPoint[];
     /** 由应用自己定义 */
     properties?: any;
-     /** zone 区分防火分区和石材铺装 */
-    subType?:string
+    /** zone 区分防火分区和石材铺装 */
+    subType?: string
 } // Interface Legend

+ 5 - 1
src/components/editClass/edit/type/Marker.ts

@@ -35,6 +35,10 @@ import { Size } from "@persagy-web/big/lib/types/Size";
 export interface Marker {
     /** ID */
     id?: string;
+    /** 图 id */
+    graphId?: string;
+    /** 图例实例 id */
+    markerId?: string;
     /** 名称 */
     name: string;
     /** 图标(Image),线类型 (Line) */
@@ -48,7 +52,7 @@ export interface Marker {
     /** 大小 */
     size?: Size;
     /** 绘制时得数据以及样式 */
-    style:any;
+    style: any;
     /** 由应用自己定义 */
     properties?: any;
 } // Interface Marker

+ 6 - 2
src/components/editClass/edit/type/Relation.ts

@@ -33,8 +33,12 @@ import { Point } from "./Point";
  * @author 韩耀龙 <han_yao_long@163.com>
  */
 export interface Relation {
-    /** ID */
-    id: string;
+    /** 图 id */
+    id?: string;
+    /** 图 id */
+    graphId?: string;
+    /** 图例实例 id */
+    relationId?: string;
     /** 名称 */
     name: string;
     /** 对应的图例 ID */

+ 42 - 19
src/components/editview/baseTopoEditer.vue

@@ -176,7 +176,12 @@ export default {
       bus.$on("saveTopoImg", () => {
         // 隐藏选择器
         this.scene.selectContainer.clear();
-        this.view.saveImageSize(`${this.topoContent.name}.png`, "png", this.canvasWidth, this.canvasHeight);
+        this.view.saveImageSize(
+          `${this.topoContent.name}.png`,
+          "png",
+          this.canvasWidth,
+          this.canvasHeight
+        );
       });
       // 发布图片
       bus.$off("issueTopo");
@@ -220,6 +225,7 @@ export default {
     },
     // 读图成功回调
     getDataSuc(res) {
+      let anchorList = []; //保存锚点对象
       if (res.result == "failure") return;
       this.SETCATEGROY(res.content);
       this.topoContent = res.content;
@@ -238,14 +244,43 @@ export default {
         this.scene.addItem(item);
         // 如果为设备则存于vuex中便于联动
         if (item instanceof SBaseEquipment) {
+          anchorList = anchorList.concat(item.anchorList);
           this.ADDEQUIPITEM(item);
         }
       });
-      parse.relations.forEach((item) => {
-        console.log('iiiitem',item)
-        item.connect("finishCreated", this.scene, this.scene.finishCreated);
-        item.connect("onContextMenu", this, this.scene.getItem);
-        this.scene.addItem(item);
+      parse.relations.forEach((t) => {
+        // 设置锚点
+        if (t.anchor1Id) {
+          let startAnc = null;
+          anchorList.forEach((aItem) => {
+            if (aItem.id == t.anchor1Id) {
+              startAnc = aItem;
+            }
+          });
+
+          if (startAnc) {
+            startAnc.isConnected = true;
+            startAnc.parent?.connect("changePos", t, t.changePos);
+            t.startAnchor = startAnc || null;
+            console.log('startAnc',startAnc)
+          }
+        }
+        if (t.anchor12d) {
+          let endAnc = null;
+          anchorList.forEach((aItem) => {
+            if (aItem.id == t.anchor12d) {
+              endAnc = aItem;
+            }
+          });
+          if (endAnc) {
+            endAnc.isConnected = true;
+            endAnc.parent?.connect("changePos", t, t.changePos);
+            t.endAnchor = endAnc || null;
+          }
+        }
+        t.connect("finishCreated", this.scene, this.scene.finishCreated);
+        t.connect("onContextMenu", this, this.scene.getItem);
+        this.scene.addItem(t);
       });
     },
     // 生成快照并保存草稿
@@ -299,7 +334,6 @@ export default {
     // 保存草稿
     saveDraft(uuid) {
       const elements = this.scene.save();
-      console.log("elements", elements);
       const obj = {
         elements,
         name: this.topoContent.name, // 名称
@@ -312,19 +346,7 @@ export default {
         pic: `${uuid}.png`,
         graphId: this.graphId,
         id: this.id,
-        log: {
-          // 图操作日志
-          mark: "1", // 图的存盘标记
-          commandList: [
-            {
-              command: "1", // 命令
-              desc: "1", // 描述
-              detail: "1", // 详情
-            },
-          ],
-        },
       };
-      console.log("elements", obj);
       return new Promise((resolve, reject) => {
         saveGroup(obj).then((res) => {
           // 如果是从已发布跳转过来
@@ -381,6 +403,7 @@ export default {
         let EquipHeight = this.canvasHeight - 100;
 
         let data = {
+          nodeId: uuidv1(),
           /** 名称 */
           name: "基础设备",
           /** 返回物理世界对象 ID 列表 */

+ 2 - 1
src/components/editview/leftToolBar/addItemModel.vue

@@ -335,7 +335,6 @@ export default {
             this.choiceEquipList = list;
           }
           // // 将选中的设备类存到vuex中
-          console.log("this.choiceEquipList", this.choiceEquipList);
           bus.$emit("addEquipment", this.choiceEquipList);
           this.$loading.close(this.local2);
           this.modalClose();
@@ -419,7 +418,9 @@ export default {
     // 选中table回调
     handleSelectionChange(list) {
       let arr = [];
+      // let newList = this.choiceEquipList.concat(list);
       this.choiceEquipList = list;
+      // newList = this._.uniqBy(newList, "id");
       list.forEach((item) => {
         if (arr.length) {
           let index = -1;

+ 126 - 9
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -25,13 +25,13 @@
                 placeholder="请输入内容"
               ></el-input>
             </div>
-            <el-upload
+            <!-- <el-upload
               class="avatar-uploader"
               action="https://jsonplaceholder.typicode.com/posts/"
               :show-file-list="false"
             >
               <i class="el-icon-link"></i>
-            </el-upload>
+            </el-upload> -->
           </div>
           <div class="base-property base-property-left">
             <div>
@@ -39,7 +39,7 @@
               <el-input
                 style="width: 74px; margin-left: 6px"
                 size="mini"
-                v-model="width"
+                disabled
                 @input="changeWidth"
                 placeholder="请输入内容"
               ></el-input>
@@ -48,13 +48,20 @@
           <div class="imgUpdate">
             <div class="img-tit">设计图</div>
             <div class="btn-list">
-              <Button type="default">上传文件</Button>
+              <el-upload
+                class="avatar-uploader"
+                action="https://jsonplaceholder.typicode.com/posts/"
+                :show-file-list="false"
+                :before-upload="beforeAvatarUpload"
+              >
+                <Button type="default">上传文件</Button>
+              </el-upload>
             </div>
           </div>
           <div class="imgUpdate">
             <div class="img-tit">附加数据</div>
             <div class="textarea">
-              <el-input type="textarea" :rows="2" placeholder="请输入内容">
+              <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容">
               </el-input>
             </div>
           </div>
@@ -116,10 +123,13 @@
 <script>
 import { queryEquipMsg, queryDict } from "@/api/editer";
 import bus from "@/bus/bus";
+const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
 export default {
-  props: ["InfoPointList", "EquipData", "equipHeight"],
+  props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height","AnotherMsg"],
   data() {
     return {
+      width: 0,
+      height: 0,
       activeName: "first",
       width: "",
       height: "",
@@ -127,6 +137,7 @@ export default {
       pressMsgData: [], // 搜索后得信息点数组
       getPressMsg: "", //输入信息
       local: "", //局部加载
+      anotherMsg: "", // 附加信息
     };
   },
   methods: {
@@ -134,6 +145,7 @@ export default {
     clips(item) {
       item.showChildren = !item.showChildren;
     },
+    // 点击切换
     handleClick(tab, event) {
       // 设置高度
       if (tab.paneName == "second") {
@@ -143,9 +155,105 @@ export default {
         box2.style.height = this.equipHeight;
       }
     },
-    changeWidth() {},
-    changeHeight() {},
-    eforeAvatarUpload() {},
+    // 设置宽
+    changeWidth(val) {
+      bus.$emit("updateStyle", "sWidth", val);
+    },
+    // 设置高
+    changeHeight(val) {
+      bus.$emit("updateStyle", "sHeight", val);
+    },
+    // 设置附加信息
+    changeAnotherMsg(val) {
+      bus.$emit("updateStyle", "anotherMsg", val);
+    },
+    beforeAvatarUpload(file) {
+      let that = this;
+      const fileReader = new FileReader();
+      fileReader.readAsDataURL(file); //读取图片
+      const ftype = file.type;
+      const fname = file.name;
+      const uploadKey = file.uid;
+      const imgType = ftype.split(".")[ftype.length - 1];
+      fileReader.addEventListener("load", function () {
+        // 读取完成
+        let res = fileReader.result;
+        //将canvas的base64位图片转换成图片png的file
+        var blob = that.dataURLtoBlob(res, ftype);
+        //将其转换成file对象
+        let file = new File([blob], fname, {
+          type: ftype,
+          lastModified: Date.now(),
+        }); //blob转file
+
+        // try sending
+        let reader = new FileReader();
+        let fileType = file.name.split(".");
+        let imgType = fileType[fileType.length - 1];
+        let CreateTime = that.formatDate(new Date(file.lastModified));
+        reader.onloadend = function () {
+          // 这个事件在读取结束后,无论成功或者失败都会触发
+          if (reader.error) {
+          } else {
+            // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
+            var xhr = new XMLHttpRequest();
+            xhr.open(
+              /* method */
+              "POST",
+              /* target url */
+              "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" +
+                "&key=" +
+                uploadKey +
+                "." +
+                imgType
+            );
+            xhr.send(reader.result);
+            xhr.onreadystatechange = function () {
+              if (xhr.readyState == 4) {
+                if (xhr.status == 200) {
+                  that.url = baseUrl + uploadKey + "." + imgType;
+                  bus.$emit(
+                    "updateStyle",
+                    "url",
+                    baseUrl + uploadKey + "." + imgType
+                  );
+                }
+              }
+            };
+          }
+        };
+        reader.readAsArrayBuffer(file);
+      });
+    },
+    dataURLtoBlob(dataURI, type) {
+      var binary = atob(dataURI.split(",")[1]);
+      var array = [];
+      for (var i = 0; i < binary.length; i++) {
+        array.push(binary.charCodeAt(i));
+      }
+      return new Blob([new Uint8Array(array)], { type: type });
+    },
+    formatDate(now) {
+      let year = now.getFullYear();
+      let month = now.getMonth() + 1;
+      let date = now.getDate();
+      let hour = now.getHours();
+      let minute = now.getMinutes();
+      let second = now.getSeconds();
+      return (
+        year +
+        "-" +
+        month +
+        "-" +
+        (date > 10 ? date : "0" + date) +
+        " " +
+        hour +
+        ":" +
+        (minute > 10 ? minute : "0" + minute) +
+        ":" +
+        (second > 10 ? second : "0" + second)
+      );
+    },
     // 切换选中选项
     changeCheck(item) {
       item.checked = !item.checked;
@@ -278,6 +386,15 @@ export default {
           this.$loading.close(this.local);
         });
     },
+    Width(val) {
+      this.width = val;
+    },
+    Height(val) {
+      this.height = val;
+    },
+    AnotherMsg(val) {
+      this.anotherMsg = val;
+    },
   },
   mounted() {},
 };

+ 7 - 0
src/components/editview/rightPropertyBar/property.vue

@@ -42,6 +42,9 @@
       v-show="itemType == 'BaseImage'"
     ></BaseImagePro>
     <BaseEquipment
+      :Width="Width"
+      :Height="Height"
+      :AnotherMsg="AnotherMsg"
       :InfoPointList="infoPointList"
       :EquipData="EquipData"
       v-show="itemType == 'BaseEquipment'"
@@ -109,6 +112,7 @@ export default {
       equipHeight: "", // 设备属性栏得高度
       EquipMsgData: {}, //设备信息点详情数据
       EquipMsgItem: null, //设备信息点实例
+      AnotherMsg: "", // 附加信息 (只用与设备图例)
     };
   },
   mounted() {
@@ -182,6 +186,9 @@ export default {
         this.fillColor = item.fillColor.toRgba();
         // 填充色
       } else if (this.itemType == "BaseEquipment") {
+        this.Width = item.sWidth; //item 宽
+        this.Height = item.sHeight; //item 高
+        this.AnotherMsg = item.anotherMsg;
         if (item.infoPointList && item.infoPointList.length) {
           this.infoPointList = item.infoPointList;
         } else {

+ 4 - 2
src/main.ts

@@ -5,8 +5,10 @@ import store from './store'
 import './assets/font/iconfont.css';
 import ElementUI from 'element-ui';
 import 'element-ui/lib/theme-chalk/index.css';
+import _ from 'lodash';
+
 Vue.use(ElementUI);
-import { Input, Modal, Cascader, Popover, Icon, Pagination, Loading,Checkbox,Button  } from 'meri-design';
+import { Input, Modal, Cascader, Popover, Icon, Pagination, Loading, Checkbox, Button } from 'meri-design';
 import { Select } from 'ant-design-vue';
 // 按需引入公共组件
 Vue.use(Input)
@@ -19,7 +21,7 @@ Vue.use(Pagination)
 Vue.use(Checkbox)
 Vue.use(Button)
 Vue.prototype.$loading = Loading;
-
+Vue.prototype._ = _
 Vue.config.productionTip = false;
 new Vue({
   router,