Jelajahi Sumber

新增默认图片

YaolongHan 4 tahun lalu
induk
melakukan
14ed292d0d

+ 4 - 4
package.json

@@ -16,11 +16,11 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.19",
+    "@persagy-web/big": "2.2.33",
     "@persagy-web/draw": "2.2.8",
-    "@persagy-web/graph": "2.2.23",
-    "@persagy-web/big-edit": "2.2.1",
-    "@persagy-web/edit": "2.2.2",
+    "@persagy-web/graph": "2.2.34",
+    "@persagy-web/big-edit": "2.2.5",
+    "@persagy-web/edit": "2.2.4",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 1 - 0
public/index.html

@@ -14,4 +14,5 @@
     <div id="app"></div>
     <!-- built files will be auto injected -->
   </body>
+  <script src="<%= BASE_URL %>systemConf.js"></script>
 </html>

+ 15 - 0
public/systemConf.js

@@ -0,0 +1,15 @@
+/**
+ * @author 韩耀龙
+ * @description 项目配置文件
+ *
+ */
+
+var __systemConf = {
+    // 图服务下载路径
+    imgServeUri: '/dp-auxiliary/image-service/common/image_get?systemId=dataPlatform&key=',
+    // 图上传路径
+    imgServeUpload: "/dp-auxiliary/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=",
+    // 默认通用设备图标
+    default_Eq: '1607752841478.svg',
+}
+window.__systemConf = __systemConf

+ 45 - 90
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -30,7 +30,7 @@ import { SArrowStyleType, SPoint, SRect } from '@persagy-web/draw';
 import { SItemStatus, SRectSelectItem } from '@persagy-web/big/lib';
 import { SGraphItem, SGraphSelectContainer, SOrderSetType } from "@persagy-web/graph/lib/";
 import { uuid } from "./until";
-import { SBaseArrow, SBaseEquipment, SBaseExpainEdit, SBasePipeUninTool, SBasePipe } from "./"
+import { SBaseArrow, SBaseEquipment, SBaseExpainEdit, SBasePipe } from "./"
 import { SBaseArrowPolyEdit } from './items/SBaseArrowPolyEdit';
 import { SGraphAddListCommand } from '@persagy-web/edit/lib/commands/SGraphAddListCommand';
 
@@ -169,50 +169,50 @@ export class SBaseEditScene extends SGraphEditScene {
         }
     }
 
-    /**
-     * 添加基本设备 item
-     *
-     * @param event     鼠标事件
-     * @param legendObj 图例样式
-     */
-    addEuqipment(event: SMouseEvent, legendObj: any): void {
-        const data = {
-            nodeId: uuid(),
-            /** 名称 */
-            name: '基础设备',
-            /** 返回物理世界对象 ID 列表 */
-            attachObjectIds: [],
-            size: { width: 50, height: 50 },
-            /** 图标 (Image),线类型 (Line) */
-            type: "Image",
-            /** 位置 */
-            pos: { x: event.x, y: event.y },
-            /** 由应用自己定义 */
-            properties: {
-                type: "BaseEquipment",
-                infoMsgList: [{
-
-                }]
-            },
-            style: {
-                default: {
-                    strokecolor: "#c0ccda",
-                    url: require('./../../../assets/images/equip/' + legendObj.url),
-                }
-            }
-        }
-        const item = new SBaseEquipment(null, data);
-        item.status = SItemStatus.Create;
-        this.addItem(item);
-        item.selectable = true;
-        item.moveable = true;
-        this.grabItem = item;
-        this.finishCreated(item)
-        item.connect("onContextMenu", this, this.getItem);
-        if (this.view) {
-            this.view.update();
-        }
-    }
+    // /**
+    //  * 添加基本设备 item
+    //  *
+    //  * @param event     鼠标事件
+    //  * @param legendObj 图例样式
+    //  */
+    // addEuqipment(event: SMouseEvent, legendObj: any): void {
+    //     const data = {
+    //         nodeId: uuid(),
+    //         /** 名称 */
+    //         name: '基础设备',
+    //         /** 返回物理世界对象 ID 列表 */
+    //         attachObjectIds: [],
+    //         size: { width: 50, height: 50 },
+    //         /** 图标 (Image),线类型 (Line) */
+    //         type: "Image",
+    //         /** 位置 */
+    //         pos: { x: event.x, y: event.y },
+    //         /** 由应用自己定义 */
+    //         properties: {
+    //             type: "BaseEquipment",
+    //             infoMsgList: [{
+
+    //             }]
+    //         },
+    //         style: {
+    //             default: {
+    //                 strokecolor: "#c0ccda",
+    //                 url: require('./../../../assets/images/equip/' + legendObj.url),
+    //             }
+    //         }
+    //     }
+    //     const item = new SBaseEquipment(null, data);
+    //     item.status = SItemStatus.Create;
+    //     this.addItem(item);
+    //     item.selectable = true;
+    //     item.moveable = true;
+    //     this.grabItem = item;
+    //     this.finishCreated(item)
+    //     item.connect("onContextMenu", this, this.getItem);
+    //     if (this.view) {
+    //         this.view.update();
+    //     }
+    // }
 
     /**
      * 新增管道
@@ -268,51 +268,6 @@ export class SBaseEditScene extends SGraphEditScene {
     }
 
     /**
-     * 添加基本管道联通器
-     *
-     * @param event     鼠标事件
-     * @param cmd       命令
-     */
-    addPipeUninTool(event: SMouseEvent, cmd: string): void {
-        const cmdList = {
-            'wantou': 2,
-            'santong': 3,
-            'sitong': 4,
-        }
-
-        const data = {
-            /** 名称 */
-            name: '基础管道接头',
-            /** 图标 (Image),线类型 (Line) */
-            type: "Image",
-            /** 位置 */
-            pos: { x: event.x, y: event.y },
-            /** 由应用自己定义 */
-            properties: {
-                type: "BasePipeUninTool",
-            },
-            style: {
-                uninToolType: cmdList[cmd] ? cmdList[cmd] : 2,  //2,3,4 分别分二头连接器、三头连接器、四头连接器
-                default: {
-                    strokecolor: "#c0ccda",
-                }
-            }
-        };
-
-        const item = new SBasePipeUninTool(null, data);
-        item.status = SItemStatus.Create;
-        item.selectable = true;
-        item.moveable = true;
-        this.addItem(item);
-        this.grabItem = item;
-        this.finishCreated(item)
-        item.connect("onContextMenu", this, this.getItem);
-        if (this.view) {
-            this.view.update();
-        }
-    }
-
-    /**
      * 重做
      */
     redo(): void {

+ 1 - 2
src/components/editClass/big-edit/index.ts

@@ -1,6 +1,5 @@
 import { SBaseEditScene } from "./SBaseEditScene"
 import { SBaseExpainEdit } from "./items/SBaseExpainEdit"
-import { SBasePipeUninTool } from "./items/SBasePipeUninTool"
 import { SBasePipe } from "./items/SBasePipe"
 import { SBaseArrow } from "./items/SBaseArrow"
 import { Anchor } from "./types/Anchor"
@@ -11,4 +10,4 @@ import { Relation } from "./types/Relation"
 import { BigEditFactory } from "./BigEditFactory"
 import { SBaseEquipment } from "./items/SBaseEquipment"
 import { SBaseArrowPolyEdit } from './items/SBaseArrowPolyEdit'
-export { SBaseArrow, SBasePipe, SBasePipeUninTool, SBaseEquipment, BigEditFactory, Anchor, Legend, Marker, Relation, ElementData, SBaseEditScene, SBaseExpainEdit, SBaseArrowPolyEdit }
+export { SBaseArrow, SBasePipe, SBaseEquipment, BigEditFactory, Anchor, Legend, Marker, Relation, ElementData, SBaseEditScene, SBaseExpainEdit, SBaseArrowPolyEdit }

+ 5 - 4
src/components/editClass/edit/items/SBaseImageEdit.ts

@@ -52,9 +52,10 @@ export class SBaseImageEdit extends SGraphEdit {
             this.inData(v);
             this.update();
         }
-
-
     } // Set data
+
+    // 存储原始没有路径的 png key
+    private _defaultUrl:string = ''
     /** 起始锚点 */
     startItem: SGraphItem | null = null;
     /** 结束锚点 */
@@ -254,7 +255,7 @@ export class SBaseImageEdit extends SGraphEdit {
 
             // 图片url
             if (data.style.default.url) {
-                this.url = data.style.default.url;
+                this._defaultUrl = data.style.default.url;
             }
 
             // 线宽
@@ -300,7 +301,7 @@ export class SBaseImageEdit extends SGraphEdit {
         this.data.pos.x = this.pos.x;
         this.data.pos.y = this.pos.y;
         this.data.style.default.zorder = this.zOrder;
-        this.data.style.default.url = this.url;
+        this.data.style.default.url = this._defaultUrl;
         this.data.style.default.lineWidth = this.lineWidth;
         this.data.style.default.strokeColor = this.strokeColor.value;
         this.data.style.default.lineStyle = this.lineStyle;

+ 3 - 3
src/components/editClass/edit/items/SBaseLineEdit.ts

@@ -69,7 +69,7 @@ export class SBaseLineEdit extends SGraphEdit {
         this._line = arr;
         this.update();
     } // Set line
-    
+
     /** 是否垂直水平绘制 */
     private _verAndLeve: Boolean = false;
     get verAndLeve(): Boolean {
@@ -184,7 +184,7 @@ export class SBaseLineEdit extends SGraphEdit {
                 if (data.style.default.lineWidth) {
                     this.lineWidth = data.style.default.lineWidth
                 }
-    
+
                 // 线样式
                 if (data.style.default.lineStyle) {
                     this.lineStyle = data.style.default.lineStyle
@@ -439,7 +439,7 @@ export class SBaseLineEdit extends SGraphEdit {
      */
     contains(x: number, y: number): boolean {
         if (this.line.length == 2) {
-            let p = new SPoint(x, y);            
+            let p = new SPoint(x, y);
             if (
                 SMathUtil.pointToLine(p, new SLine(this.line[0], this.line[1]))
                     .MinDis < this.sceneDis

+ 7 - 1
src/components/editClass/edit/items/SBaseTextEdit.ts

@@ -372,10 +372,16 @@ export class SBaseTextEdit extends SGraphEdit {
      * @return 对象储存的相关数据
      */
     toData(): any {
-        if(!this.data) return;
+        if (!this.data) return;
+
         if (this.data.size) {
             this.data.size.width = this.width;
             this.data.size.height = this.height;
+        } else {
+            this.data.size = {
+                width: this.width,
+                height: this.height
+            }
         }
 
         this.data.pos.x = this.pos.x;

+ 1 - 1
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -24,7 +24,7 @@
  * ****/
 
 import { SParser } from '@persagy-web/big/lib';
-import { BigEditFactory, Legend, Marker, Relation, ElementData } from "./../big-edit"
+import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
 
 /**
  * 拓扑图解析器

+ 58 - 5
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -23,16 +23,16 @@
  *
  * ****/
 
-import { SBaseEditScene, SBasePipe, SBaseEquipment } from "./../big-edit";
+import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
 import { SGraphEdit, SGraphPropertyCommand, } from "@persagy-web/edit";
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
-import { rgbaNum } from "./../big-edit/until";
+import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 // 引入命令
 import { SGraphAddCommand } from "@persagy-web/edit/lib/commands/SGraphAddCommand"
 import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
-import { PTopoParser } from "./"
+import { PTopoParser, SBasePipeUninTool } from "./"
 
 /**
  * 拓扑图场景类
@@ -42,6 +42,9 @@ import { PTopoParser } from "./"
 export class PTopoScene extends SBaseEditScene {
     /** 图例数据 */
     legendObj: any = null;
+    // 静态服务器路径
+    public imgServeUrl: string = '';
+
     constructor() {
         super()
         // 选择绑定选额item事件
@@ -137,6 +140,51 @@ export class PTopoScene extends SBaseEditScene {
     }
 
     /**
+     * 添加基本管道联通器
+     *
+     * @param event     鼠标事件
+     * @param cmd       命令
+     */
+    addPipeUninTool(event: SMouseEvent, cmd: string): void {
+        const cmdList = {
+            'wantou': 2,
+            'santong': 3,
+            'sitong': 4,
+        }
+
+        const data = {
+            /** 名称 */
+            name: '基础管道接头',
+            /** 图标 (Image),线类型 (Line) */
+            type: "Image",
+            /** 位置 */
+            pos: { x: event.x, y: event.y },
+            /** 由应用自己定义 */
+            properties: {
+                type: "BasePipeUninTool",
+            },
+            style: {
+                uninToolType: cmdList[cmd] ? cmdList[cmd] : 2,  //2,3,4 分别分二头连接器、三头连接器、四头连接器
+                default: {
+                    strokecolor: "#c0ccda",
+                }
+            }
+        };
+
+        const item = new SBasePipeUninTool(null, data);
+        item.status = SItemStatus.Create;
+        item.selectable = true;
+        item.moveable = true;
+        this.addItem(item);
+        this.grabItem = item;
+        this.finishCreated(item)
+        item.connect("onContextMenu", this, this.getItem);
+        if (this.view) {
+            this.view.update();
+        }
+    }
+
+    /**
      * 鼠标右键事件
      *
      * @param   event   鼠标事件参数
@@ -165,7 +213,6 @@ export class PTopoScene extends SBaseEditScene {
         } else {
             List = this.selectContainer.itemList;
         };
-
         let styleValue: any
         if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
             const colorlist = rgbaNum(changestyle)
@@ -176,7 +223,13 @@ export class PTopoScene extends SBaseEditScene {
             styleValue = SArrowStyleType[changestyle]
         } else if (styletype == "font") {
             styleValue = new SFont("sans-serif", changestyle)
-        } else {
+        } else if(styletype == "url"){
+            styleValue = this.imgServeUrl + changestyle;
+            // 设置default url
+            List.forEach((item:SGraphEdit)=>{
+                item.defaultUrl = changestyle
+            })
+        }else {
             styleValue = changestyle
         }
 

+ 2 - 1
src/components/editClass/persagy-edit/index.ts

@@ -1,5 +1,6 @@
 import { PTopoScene } from "./PTopoScene";
 import { PTopoParser } from "./PTopoParser";
 import { SPersagyImageEdit } from "./item/SPersagyImageEdit"
+import { SBasePipeUninTool } from "./items/SBasePipeUninTool"
 import { PTopoView } from './PTopoView';
-export { PTopoParser, PTopoScene, SPersagyImageEdit, PTopoView }
+export { PTopoParser, PTopoScene, SPersagyImageEdit, PTopoView, SBasePipeUninTool }

+ 1 - 1
src/components/editClass/persagy-edit/item/SPersagyImageEdit.ts

@@ -26,7 +26,7 @@
 
 import { SBaseImageEdit } from '@persagy-web/edit';
 import { SGraphItem } from "@persagy-web/graph";
-import { Marker } from "./../../big-edit/types/Marker";
+import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 
 /**

+ 1 - 1
src/components/editClass/persagy-edit/items/SBaseArrow.ts

@@ -27,7 +27,7 @@
 import { SColor, SFont, SPainter, SArrowStyleType } from "@persagy-web/draw/";
 import { SBasePolylineEdit } from '@persagy-web/edit';
 import { SGraphItem, SLineStyle } from "@persagy-web/graph/lib";
-import { Marker } from "./../../big-edit/types/Marker";
+import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 
 /**

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

@@ -26,7 +26,7 @@
 
 import { SBaseImageEdit } from "@persagy-web/edit";
 import { SGraphItem } from "@persagy-web/graph/lib";
-import { Marker } from "./../types/Marker";
+import { Marker } from "@persagy-web/edit/lib/type/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 
 /**
@@ -45,22 +45,22 @@ export class SBasePipeUninTool extends SBaseImageEdit {
      */
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent, data);
-        // if (data && data.style) {
-        //     switch (data.style.uninToolType) {
-        //         case 2:
-        //             this.url = require('./../../../../assets/images/leftImgs/wantou.png');
-        //             break;
-        //         case 3:
-        //             this.url = require('./../../../../assets/images/leftImgs/santong.png');
-        //             break;
-        //         case 4:
-        //             this.url = require('./../../../../assets/images/leftImgs/sitong.png');
-        //             break;
-        //         default:
-        //             this.url = require('./../../../../assets/images/leftImgs/wantou.png');
-        //             break;
-        //     }
-        // }
+        if (data && data.style) {
+            switch (data.style.uninToolType) {
+                case 2:
+                    this.url = require('./../../../../assets/images/leftImgs/wantou.png');
+                    break;
+                case 3:
+                    this.url = require('./../../../../assets/images/leftImgs/santong.png');
+                    break;
+                case 4:
+                    this.url = require('./../../../../assets/images/leftImgs/sitong.png');
+                    break;
+                default:
+                    this.url = require('./../../../../assets/images/leftImgs/wantou.png');
+                    break;
+            }
+        }
     } // Constructor
 
     /**

+ 36 - 12
src/components/editview/baseTopoEditer.vue

@@ -8,7 +8,7 @@
       :havItem="havItem"
     ></topoTooltip>
     <canvas
-      style="border:none;outline:medium;"
+      style="border: none; outline: medium"
       id="persagy_topo"
       :width="canvasWidth"
       :height="canvasHeight"
@@ -38,6 +38,14 @@ import {
 } from "@/api/editer";
 import { publishGraph } from "@/api/home";
 import crypto from "crypto-js/";
+//////////////////////////////////////
+// 常量
+// 图服务路径
+const imgBaseUrl = window.__systemConf.imgServeUri;
+// 图上传路径
+const imgServeUpload = window.__systemConf.imgServeUpload;
+// 默认通用图标
+const default_Eq = window.__systemConf.default_Eq;
 export default {
   components: { topoTooltip },
   data() {
@@ -68,6 +76,7 @@ export default {
     this.canvasWidth = this.$refs.baseTopo.offsetWidth;
     this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
     this.scene = new PTopoScene();
+    this.scene.imgServeUrl = imgBaseUrl; //获取图服务路径
     this.view = new PTopoView("persagy_topo");
     this.view.scene = this.scene;
     this.scene.clearCmdStatus = this.clearCmdStatus;
@@ -239,14 +248,26 @@ export default {
         item.moveable = true;
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
+        // 判断如果是图,需要拼接路径
+        if (item.data.properties.type == "BaseImage") {
+          if (item.data.style.default.url) {
+            item.url = imgBaseUrl + item.data.style.default.url;
+          }
+        }
         this.scene.addItem(item);
       });
       parse.nodes.forEach((item) => {
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
         this.scene.addItem(item);
+        // 设置url
+        if (item.legendData.style.default.url) {
+          item.url = imgBaseUrl + item.legendData.style.default.url;
+        } else {
+          item.url = imgBaseUrl + default_Eq;
+        }
         // 如果为设备则存于vuex中便于联动
-        if (item instanceof SBaseEquipment) {
+        if (item.legendData.properties.type == "BaseEquipment") {
           anchorList = anchorList.concat(item.anchorList);
           this.ADDEQUIPITEM(item);
         }
@@ -265,7 +286,6 @@ export default {
             startAnc.isConnected = true;
             startAnc.parent?.connect("changePos", t, t.changePos);
             t.startAnchor = startAnc || null;
-            console.log("startAnc", startAnc);
           }
         }
         if (t.anchor12d) {
@@ -318,10 +338,7 @@ export default {
             } else {
               // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
               const xhr = new XMLHttpRequest();
-              xhr.open(
-                "POST",
-                `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`
-              );
+              xhr.open("POST", `${imgServeUpload}${uuid}.${imgType}`);
               xhr.send(reader.result);
               xhr.onreadystatechange = function () {
                 if (xhr.readyState == 4) {
@@ -401,12 +418,12 @@ export default {
       const parse = new PTopoParser();
       list.forEach((item, i) => {
         const x = (i + 1) * 100 + 300;
-        const baseUrl =
-          "/image-service/common/image_get?systemId=dataPlatform&key=";
-        const url = baseUrl + item.url;
+
+        const url = item.url;
+
         let svg2Base = "";
         let EquipHeight = this.canvasHeight - 100;
-
+        // 拼接路径
         let data = {
           nodeId: uuidv1(),
           /** 名称 */
@@ -424,6 +441,7 @@ export default {
             classCode: item.classCode, // 设备类型
             localId: item.localId, // 本地编码
             localName: item.localName, //本地名称
+            state: item.state,
           },
           style: {
             default: {
@@ -439,9 +457,15 @@ export default {
       parse.nodes.forEach((item) => {
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
+        if (item.legendData.style.default.url) {
+          item.url = imgBaseUrl + item.legendData.style.default.url;
+          item.defaultUrl = item.legendData.style.default.url;
+        } else {
+          item.url = imgBaseUrl + default_Eq;
+        }
         this.scene.addItem(item);
         // 如果为设备则存于vuex中便于联动
-        if (item instanceof SBaseEquipment) {
+        if (item.legendData.properties.type == "BaseEquipment") {
           this.ADDEQUIPITEM(item);
         }
       });

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

@@ -329,6 +329,7 @@ export default {
               list.forEach((item) => {
                 if (item.classCode == contentType.category) {
                   item.url = contentType.state[0].pic;
+                  item.state = contentType.state;
                 }
               });
             });

+ 22 - 14
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -54,7 +54,13 @@
           <div class="imgUpdate">
             <div class="img-tit">附加数据</div>
             <div class="textarea">
-              <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容">
+              <el-input
+                type="textarea"
+                @input="changeAnotherMsg"
+                v-model="anotherMsg"
+                :rows="2"
+                placeholder="请输入内容"
+              >
               </el-input>
             </div>
           </div>
@@ -116,9 +122,19 @@
 <script>
 import { queryEquipMsg, queryDict } from "@/api/editer";
 import bus from "@/bus/bus";
-const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
+
+const imgBaseUrl = window.__systemConf.imgServeUri;
+// 图上传路径
+const imgServeUpload = window.__systemConf.imgServeUpload;
 export default {
-  props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height","AnotherMsg"],
+  props: [
+    "InfoPointList",
+    "EquipData",
+    "equipHeight",
+    "Width",
+    "Height",
+    "AnotherMsg",
+  ],
   data() {
     return {
       width: 0,
@@ -194,22 +210,14 @@ export default {
               /* method */
               "POST",
               /* target url */
-              "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" +
-                "&key=" +
-                uploadKey +
-                "." +
-                imgType
+              imgServeUpload + 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
-                  );
+                  that.url = imgBaseUrl + uploadKey + "." + imgType;
+                  bus.$emit("updateStyle", "url", uploadKey + "." + imgType);
                 }
               }
             };

+ 9 - 5
src/components/editview/rightPropertyBar/BaseImagePro.vue

@@ -83,7 +83,12 @@
 </template>
 <script>
 import bus from "@/bus/bus";
-const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
+//////////////////////////////////////
+// 常量
+// 图服务路径
+const imgBaseUrl = window.__systemConf.imgServeUri;
+// 图上传路径
+const imgServeUpload = window.__systemConf.imgServeUpload;
 import { uploadGroup, getImageGroup } from "@/api/editer";
 export default {
   props: ["strokeColor", "lineStyle", "lineWidth", "Width", "Height"],
@@ -163,8 +168,7 @@ export default {
               /* method */
               "POST",
               /* target url */
-              "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" +
-                "&key=" +
+                imgServeUpload +
                 uploadKey +
                 "." +
                 imgType
@@ -173,11 +177,11 @@ export default {
             xhr.onreadystatechange = function () {
               if (xhr.readyState == 4) {
                 if (xhr.status == 200) {
-                  that.url = baseUrl + uploadKey + "." + imgType;
+                  that.url = uploadKey + "." + imgType;
                   bus.$emit(
                     "updateStyle",
                     "url",
-                    baseUrl + uploadKey + "." + imgType
+                     uploadKey + "." + imgType
                   );
                 }
               }

+ 1 - 1
src/components/homeView/createGraphDialog.vue

@@ -19,7 +19,7 @@
               {{tag}}
             </el-tag>
             <el-input class="input-new-tag" v-if="inputVisible" v-model="inputValue" ref="saveTagInput" size="small"
-              @keyup.enter.native="handleInputConfirm" @blur="handleInputConfirm" :maxlength="10">
+              @keyup.enter.native="handleInputConfirm" @blur="handleInputConfirm" >
             </el-input>
             <el-button v-else class="button-new-tag" size="small" @click="showInput">+ 添加</el-button>
           </div>

+ 4 - 2
src/components/homeView/topoImageCard.vue

@@ -4,7 +4,7 @@
     <div class="image" v-if="!data.pic" style="line-height: 120px;text-align: center;">
       <img :src="require('@/assets/images/noImg.png')" style="height:60px;">
     </div>
-    <img class="image" v-else :src="`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`">
+    <img class="image" v-else :src="`${imgBaseUrl}${data.pic}`">
     <div class="shadow image" v-if="!isRecycle" @click.stop="toEdit">
       <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
     </div>
@@ -37,6 +37,7 @@
   </el-card>
 </template>
 <script>
+const imgBaseUrl = window.__systemConf.imgServeUri
 import { publishGraph } from "@/api/home"
 export default {
   props: {
@@ -67,7 +68,8 @@ export default {
         { name: 'recover', label: '恢复', show: 'isRecycle' },  // 类型为 回收站 时出现
         { name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
       ],
-      checked: false
+      checked: false,
+      imgBaseUrl,
     };
   },
   methods: {

+ 5 - 2
src/views/home.vue

@@ -162,6 +162,10 @@ import recycle from "@/components/homeView/recycle";
 import createGraphDialog from "@/components/homeView/createGraphDialog";
 import { SNetUtil } from "@persagy-web/base";
 import { mapMutations, mapState } from "vuex";
+////////////////////////////////
+// 常量
+// 图服务路径
+const imgBaseUrl = window.__systemConf.imgServeUri;
 export default {
   name: "home",
   data() {
@@ -189,7 +193,6 @@ export default {
       noTreeFlag: true, // 左侧树是否有数据-默认有
       popVisible: false,
       categoryName: "", // 跳转编辑页面时分类名称
-      imgUrl: "/image-service/common/image_get?systemId=dataPlatform&key=",
       cardLoading: false,
       sprojectId: "",
     };
@@ -244,7 +247,7 @@ export default {
     // 单独下载
     download(data) {
       if (data.pic) {
-        SNetUtil.downLoad(data.name + ".png", this.imgUrl + data.pic);
+        SNetUtil.downLoad(data.name + ".png", imgBaseUrl + data.pic);
       } else {
         // this.$message.warning(`${data.name}未绘制`)
       }

+ 2 - 2
vue.config.js

@@ -27,8 +27,8 @@ module.exports = {
                 secure: false,
             },
             // 图片服务器
-            '/image-service': {
-                target: 'http://api.sagacloud.cn/dp-auxiliary',
+            '/dp-auxiliary': {
+                target: 'http://api.sagacloud.cn',
                 changeOrigin: true,
                 secure: false,
             },