YaolongHan 4 年之前
父節點
當前提交
47f34b8f6f

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

@@ -127,6 +127,7 @@ export class SBaseArrow extends SBasePolylineEdit {
      * @return 对象储存的相关数据
      */
     toData(): any {
+        if (!this.data) return;
         this.data.style.begin = this.begin;
         this.data.style.end = this.end;
         return super.toData();

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

@@ -1,13 +1,12 @@
-import { SBaseEditScene, SBaseExpainEdit, SBaseEquipment, SBasePipeUninTool, SBasePipe, SBaseArrow } from "./../big-edit";
-import { SBaseRectEdit, SGraphEdit, SBaseArrowEdit, SBaseCircleEdit, SBaseTriangleEdit, SBasePolygonEdit } from "./../edit";
-import { SPersagyImageEdit } from "./"
+import { SBaseEditScene, SBasePipe, } from "./../big-edit";
+import { SGraphEdit, } from "./../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 { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
-import { SColor, SFont } from '@persagy-web/draw/lib';
+import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
 export class PTopoScene extends SBaseEditScene {
     /** 图例数据 */
     legendObj: any = null;
@@ -140,6 +139,8 @@ export class PTopoScene extends SBaseEditScene {
             styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
         } else if (styletype == "lineStyle") {
             styleValue = SLineStyle[changestyle]
+        } else if (styletype == "begin" || styletype == "end") {
+            styleValue = SArrowStyleType[changestyle]
         } else if (styletype == "font") {
             styleValue = new SFont("sans-serif", changestyle)
         } else {

+ 97 - 8
src/components/editview/rightPropertyBar/baseLinePro.vue

@@ -8,13 +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"
+              style="width: 80px"
               v-model="linewidth"
               controls-position="right"
               @change="changeWidth"
@@ -46,7 +51,41 @@
         </div>
       </li>
       <li>
-
+        <div class="property">
+          <div class="line-style">
+            <a-select
+              style="width: 80px; margin-right: 8px"
+              v-model="begin"
+              :default-value="borderLineOption[0].id"
+              @change="changeArrowType('begin')"
+            >
+              <a-select-option
+                v-for="item in arrowType"
+                :key="item.id"
+                :label="item.src"
+                :value="item.id"
+              >
+                {{ item.src }}
+              </a-select-option>
+            </a-select>
+            <a-select
+              style="width: 80px"
+              v-model="end"
+              :default-value="borderLineOption[0].id"
+              @change="changeArrowType('end')"
+            >
+              <a-select-option
+                v-for="item in arrowType"
+                :key="item.id"
+                :label="item.src"
+                :value="item.id"
+              >
+                {{ item.src }}
+              </a-select-option>
+            </a-select>
+            <span class="nametype">线型</span>
+          </div>
+        </div>
       </li>
     </ul>
   </div>
@@ -54,12 +93,14 @@
 <script>
 import bus from "@/bus/bus";
 export default {
-  props: ["strokeColor", "lineStyle", "lineWidth"],
+  props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End"],
   data() {
     return {
       color: "",
       linewidth: "",
       linestyle: "",
+      begin: "None",
+      end: "None",
       borderLineOption: [
         {
           id: "Solid",
@@ -69,9 +110,33 @@ export default {
           id: "Dashed",
           src: require("@/assets/images/dashedLine.png"),
         },
+        {},
+      ],
+      // 箭头
+      arrowType: [
+        {
+          id: "None",
+          src: "无样式",
+        },
+        {
+          id: "Basic",
+          src: "基本箭头",
+        },
+        {
+          id: "Triangle",
+          src: "三角形箭头",
+        },
+        {
+          id: "Diamond",
+          src: "菱形箭头",
+        },
         {
-          id: "Dotted",
-          src: require("@/assets/images/dotLine.png"),
+          id: "Square",
+          src: "方形箭头",
+        },
+        {
+          id: "Circle",
+          src: "圆形箭头",
         },
       ],
     };
@@ -89,6 +154,10 @@ export default {
     changeLineStyle(val) {
       bus.$emit("updateStyle", "lineStyle", val);
     },
+    // 改变箭头样式
+    changeArrowType(dir) {
+      bus.$emit("updateStyle", dir, this[dir]);
+    },
   },
   mounted() {
     // console.log(Select)
@@ -103,6 +172,12 @@ export default {
     lineStyle(val) {
       this.linestyle = val;
     },
+    Begin(val) {
+      this.begin = val;
+    },
+    End(val) {
+      this.end = val;
+    },
   },
 };
 </script>
@@ -116,7 +191,7 @@ li {
 .base-line {
   .title {
     height: 47px;
-    border-bottom: 1px solid #979797;
+    // border-bottom: 1px solid #979797;
     color: #646c73;
     font-size: 16px;
     padding-left: 12px;
@@ -126,7 +201,7 @@ li {
     width: calc(~"100% - 24px");
     margin: -1px 12px 0 12px;
     li {
-      border-top: 1px solid #979797;
+      // border-top: 1px solid #979797;
       .small-title {
         font-size: 12px;
         color: #8d9399;
@@ -163,6 +238,20 @@ li {
           margin-left: 8px;
           position: relative;
         }
+        .line-style {
+          width: 100%;
+          display: flex;
+          align-items: center;
+          justify-content: flex-start;
+          position: relative;
+          margin-top: 4px;
+          .nametype {
+            position: absolute;
+            left: 50%;
+            bottom: -80%;
+            transform: translateX(-140%);
+          }
+        }
         span {
           font-size: 12px;
           color: #1f2429;

+ 17 - 1
src/components/editview/rightPropertyBar/property.vue

@@ -13,6 +13,8 @@
       :strokeColor="strokeColor"
       :lineStyle="lineStyle"
       :lineWidth="lineWidth"
+      :Begin="begin"
+      :End="end"
     ></baseLinePro>
     <BaseGraphy
       :lineStyle="lineStyle"
@@ -54,6 +56,16 @@ const lineStyle = {
   /** 无    */
   3: "None",
 };
+const arrowType = {
+  0: "None",
+  1: "Basic",
+  /** 点线    */
+  2: "Triangle",
+  /** 无    */
+  3: "Diamond",
+  4: "Square",
+  5: "Circle",
+};
 export default {
   components: { baseTextPro, baseLinePro, BaseGraphy, BaseImagePro },
   data() {
@@ -69,6 +81,8 @@ export default {
       Height: 0, //item 高
       Url: "", // 路径
       fillColor: "", //填充色
+      begin: "", //开头样式
+      end: "", //结尾样式
     };
   },
   mounted() {
@@ -94,6 +108,9 @@ export default {
         this.strokeColor = item.strokeColor.toRgba();
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
+        this.begin = arrowType[item.begin];
+        this.end = arrowType[item.end];
+        console.log(this.begin,this.end)
       } else if (
         this.itemType == "BaseText" ||
         this.itemType == "BaseExplain"
@@ -102,7 +119,6 @@ export default {
         this.backgroundColor = item.backgroundColor.toRgba();
         this.textMsg = item.text;
         this.fontSize = item.font.size;
-        console.log("item.font.size", item.font.size);
       } else if (
         this.itemType == "BaseImage" ||
         this.itemType == "BasePipeUninTool"