Browse Source

Merge branch 'develop' of http://39.106.8.246:3003/web/persagy_topo_editer into develop

YaolongHan 4 years ago
parent
commit
bbf7290eff

+ 1 - 1
package.json

@@ -19,7 +19,7 @@
     "@persagy-web/big": "2.2.55",
     "@persagy-web/draw": "2.2.14",
     "@persagy-web/graph": "2.2.46",
-    "@persagy-web/big-edit": "2.2.30",
+    "@persagy-web/big-edit": "2.2.32",
     "@persagy-web/edit": "2.2.27",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",

+ 3 - 0
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -395,6 +395,9 @@ export class PTopoScene extends SBaseEditScene {
             })
         } else if (styletype == "rotate") { // 弯头设置旋转角度
             styleValue = changestyle;
+        } else if (styletype == "radius") { // 圆角折线拐角半径
+            styleValue = changestyle;
+            console.log(changestyle, '===========');
         } else {
             styleValue = changestyle
         }

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

@@ -27,8 +27,8 @@
 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 "@persagy-web/big-edit/lib/types/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
+import { Marker } from "@persagy-web/big/lib";
 
 /**
  * 编辑箭头(折线)

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

@@ -48,6 +48,7 @@ export class SBasePipeUninTool extends SBaseImageEdit {
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent, data);
         this.data = data;
+        this._resizeable = false
     } // Constructor
 
     /**

+ 40 - 29
src/components/editview/rightPropertyBar/BasePipe.vue

@@ -8,41 +8,18 @@
         <div class="property">
           <div class="color-box">
             <div class="cololorSelect">
-              <el-color-picker
-                show-alpha
-                @change="changeColor"
-                class="fix-box-1"
-                v-model="color"
-              ></el-color-picker>
+              <el-color-picker show-alpha @change="changeColor" class="fix-box-1" v-model="color"></el-color-picker>
             </div>
             <span>颜色</span>
           </div>
           <div class="line-width">
-            <el-input-number
-              style="width: 80px"
-              v-model="linewidth"
-              controls-position="right"
-              @change="changeWidth"
-              size="mini"
-              :min="1"
-              :max="20"
-              :maxlength="100"
-            ></el-input-number>
+            <el-input-number style="width: 80px" v-model="linewidth" controls-position="right" @change="changeWidth" size="mini" :min="1" :max="20"
+              :maxlength="100"></el-input-number>
             <span>线宽</span>
           </div>
           <div class="line-width">
-            <a-select
-              style="width: 80px"
-              v-model="linestyle"
-              :default-value="borderLineOption[0].id"
-              @change="changeLineStyle"
-            >
-              <a-select-option
-                v-for="item in borderLineOption"
-                :key="item.id"
-                :label="item.src"
-                :value="item.id"
-              >
+            <a-select style="width: 80px" v-model="linestyle" :default-value="borderLineOption[0].id" @change="changeLineStyle">
+              <a-select-option v-for="item in borderLineOption" :key="item.id" :label="item.src" :value="item.id">
                 <img :src="item.src" alt width="60" />
               </a-select-option>
             </a-select>
@@ -50,13 +27,26 @@
           </div>
         </div>
       </li>
+      <li>
+        <div class="small-title">拐角</div>
+        <div>
+          <el-radio-group v-model="corner" @change="changeRadio">
+            <el-radio label="1">直角</el-radio>
+            <el-radio label="2">圆角</el-radio>
+          </el-radio-group>
+        </div>
+        <div style="margin-top: 10px;" v-if="corner=='2'">
+          <label for="radius">设置圆角半径: </label>
+          <el-input-number v-model="radius" controls-position="right" size="mini" @change="changeCornerRaduis" :min="0" :step-strictly="true"></el-input-number>
+        </div>
+      </li>
     </ul>
   </div>
 </template>
 <script>
 import bus from "@/bus/bus";
 export default {
-  props: ["strokeColor", "lineStyle", "lineWidth"],
+  props: ["strokeColor", "lineStyle", "lineWidth", "Radius"],
   data() {
     return {
       color: "",
@@ -73,6 +63,8 @@ export default {
         },
         {},
       ],
+      corner: '1', // 默认直角
+      radius: 0, // 圆角半径
     };
   },
   methods: {
@@ -92,6 +84,17 @@ export default {
     changeArrowType(dir) {
       bus.$emit("updateStyle", dir, this[dir]);
     },
+    // 改变拐角半径
+    changeCornerRaduis(val) {
+      bus.$emit("updateStyle", 'radius', this.radius);
+    },
+    // 拐角类型变化 
+    changeRadio() {
+      if (this.corner == '1') {
+        this.radius = 0;
+      }
+      bus.$emit("updateStyle", 'radius', this.radius);
+    }
   },
   watch: {
     strokeColor(val) {
@@ -103,6 +106,11 @@ export default {
     lineStyle(val) {
       this.linestyle = val;
     },
+    Radius(val) {
+      console.log(val);
+      this.corner = val > 0 ? "2" : "1"
+      this.radius = val;
+    }
   },
 };
 </script>
@@ -183,6 +191,9 @@ li {
           margin-top: 4px;
         }
       }
+      /deep/.el-input-number--mini {
+        width: 100px;
+      }
     }
   }
 }

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

@@ -33,6 +33,7 @@
       :strokeColor="strokeColor"
       :lineStyle="lineStyle"
       :lineWidth="lineWidth"
+      :Radius="Radius"
     ></BasePipe>
 
     <BaseGraphy
@@ -155,6 +156,7 @@ export default {
       isSvg: false, // 是否为svg图
       color:'',
       items:null,
+      Radius: 0, // 管线的圆角半径
     };
   },
   mounted() {
@@ -263,6 +265,7 @@ export default {
         this.strokeColor = item.strokeColor.toRgba();
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
+        this.Radius = item.radius;
       } else if (this.itemType == "baseBtn") {
         this.Width = item.width; //item 宽
         this.Height = item.height; //item 高