YaolongHan 4 jaren geleden
bovenliggende
commit
68b5a33fa9

+ 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>

+ 13 - 0
public/systemConf.js

@@ -0,0 +1,13 @@
+/**
+ * @author 韩耀龙
+ * @description 项目配置文件
+ *
+ */
+
+var __systemConf = {
+    // 图服务下载路径
+    imgServeUri: '/image-service/common/image_get?systemId=dataPlatform&key=',
+    // 图上传路径
+    imgServeUpload:"/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key="
+}
+window.__systemConf = __systemConf

+ 6 - 6
src/api/editer.ts

@@ -19,20 +19,20 @@ export function readPubGroup(postParams: any): any {
 
 //查询楼层
 export function buildiFloor(postParams: any): any {
-    return httputils.postJson(`/equip-componnet2/labsl/building/floor`, postParams)
+    return httputils.postJson(`/equip-componet4/labsl/building/floor`, postParams)
 }
 // 查询设备类型
 export function readCategory(postParams: any): any {
-    return httputils.postJson(`/equip-componnet2/labsl/category`, postParams)
+    return httputils.postJson(`/equip-componet4/labsl/category`, postParams)
 }
 
 // 查询设备
 export function queryEquip(postParams: any): any {
-    return httputils.postJson(`/equip-componnet2/labsl/query/equip`, postParams)
+    return httputils.postJson(`/equip-componet4/labsl/query/equip`, postParams)
 }
 // 根据设备 id 查询设备对应的专业 /labsl/major/category
 export function queryCategory(postParams: any): any {
-    return httputils.postJson(`/equip-componnet2/labsl/major/category`, postParams)
+    return httputils.postJson(`/equip-componet4/labsl/major/category`, postParams)
 }
 // 查询设备图例图片
 export function queryLegend(postParams: any): any {
@@ -40,11 +40,11 @@ export function queryLegend(postParams: any): any {
 }
 // 查询设备的所有信息点数组
 export function queryDict(postParams: any): any {
-    return httputils.postJson(`/datacenter2/dict/query`, postParams)
+    return httputils.postJson(`/datacenter4/dict/query`, postParams)
 }
 // 查询设备某个信息点详情的值 --- (用于点击图中信息点调用)
 export function queryEquipMsg(postParams: any): any {
-    return httputils.postJson(`/datacenter2/object/equip/query`, postParams)
+    return httputils.postJson(`/datacenter4/object/equip/query`, postParams)
 }
 //  管道列表的获取
 export function queryPipeline(postParams: any): any {

+ 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;

+ 10 - 2
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -42,6 +42,9 @@ import { PTopoParser, SBasePipeUninTool } from "./"
 export class PTopoScene extends SBaseEditScene {
     /** 图例数据 */
     legendObj: any = null;
+    // 静态服务器路径
+    public imgServeUrl: string = '';
+
     constructor() {
         super()
         // 选择绑定选额item事件
@@ -210,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)
@@ -221,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"){
+            styletype = this.imgServeUrl + changestyle;
+            // 设置default url
+            List.forEach((item:SGraphEdit)=>{
+                item.defaultUrl = changestyle
+            })
+        }else {
             styleValue = changestyle
         }
 

+ 25 - 6
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,12 @@ import {
 } from "@/api/editer";
 import { publishGraph } from "@/api/home";
 import crypto from "crypto-js/";
+//////////////////////////////////////
+// 常量
+// 图服务路径
+const imgBaseUrl = window.__systemConf.imgServeUri;
+// 图上传路径
+const imgServeUpload = window.__systemConf.imgServeUpload;
 export default {
   components: { topoTooltip },
   data() {
@@ -68,6 +74,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,7 +246,14 @@ 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);
@@ -320,7 +334,7 @@ export default {
               const xhr = new XMLHttpRequest();
               xhr.open(
                 "POST",
-                `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`
+                `${imgServeUpload}${uuid}.${imgType}`
               );
               xhr.send(reader.result);
               xhr.onreadystatechange = function () {
@@ -401,12 +415,16 @@ 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 = imgBaseUrl + item.url;
         let svg2Base = "";
         let EquipHeight = this.canvasHeight - 100;
-
+        // 拼接路径
+        const state = item.state.map((t) => {
+          return Object.assign(t, {
+            pic: imgBaseUrl + t.pic,
+          });
+        });
         let data = {
           nodeId: uuidv1(),
           /** 名称 */
@@ -424,6 +442,7 @@ export default {
             classCode: item.classCode, // 设备类型
             localId: item.localId, // 本地编码
             localName: item.localName, //本地名称
+            state: item.state,
           },
           style: {
             default: {

+ 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;
                 }
               });
             });

+ 7 - 5
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -116,7 +116,10 @@
 <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"],
   data() {
@@ -194,8 +197,7 @@ export default {
               /* method */
               "POST",
               /* target url */
-              "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" +
-                "&key=" +
+               imgServeUpload +
                 uploadKey +
                 "." +
                 imgType
@@ -204,11 +206,11 @@ export default {
             xhr.onreadystatechange = function () {
               if (xhr.readyState == 4) {
                 if (xhr.status == 200) {
-                  that.url = baseUrl + uploadKey + "." + imgType;
+                  that.url = imgBaseUrl + uploadKey + "." + imgType;
                   bus.$emit(
                     "updateStyle",
                     "url",
-                    baseUrl + uploadKey + "." + imgType
+                    imgBaseUrl + 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
                   );
                 }
               }

+ 2 - 1
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: {

+ 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}未绘制`)
       }

+ 6 - 6
vue.config.js

@@ -7,22 +7,22 @@ module.exports = {
         },
         proxy: {
             '/labsl': {
-                target: 'http://60.205.177.43:8080',
+                target: 'http://60.205.177.43:28888',
                 changeOrigin: true,
                 secure: false,
             },
             '/meiku': {
-                target: 'http://60.205.177.43:8080',
+                target: 'http://60.205.177.43:28888',
                 changeOrigin: true,
                 secure: false,
             },
-            '/datacenter2': {
-                target: 'http://60.205.177.43:8080',
+            '/datacenter4': {
+                target: 'http://60.205.177.43:28888',
                 changeOrigin: true,
                 secure: false,
             },
-            '/equip-componnet2': {
-                target: 'http://60.205.177.43:8080',
+            '/equip-componet4': {
+                target: 'http://60.205.177.43:28888',
                 changeOrigin: true,
                 secure: false,
             },