YaolongHan 4 سال پیش
والد
کامیت
512f43bd00

+ 0 - 9
src/api/editer.ts

@@ -11,12 +11,3 @@ export function saveGroup(postParams: any): any {
 export function readGroup(postParams: any): any {
     return httputils.postJson(`/labsl${baseApi}read`, postParams)
 }
-
-// 上传图片
-export function uploadGroup(postParams: any): any {
-    return httputils.postJson(`/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true`, postParams)
-}
-// 上传图片
-export function getImageGroup(params: any): any {
-    return httputils.getJson(`/image-service/common/image_get?systemId=dataPlatform`, params)
-}

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 21 - 16
src/components/editClass/big-edit/items/SBaseImageEdit.ts


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

@@ -86,7 +86,8 @@ export class SBaseLineEdit extends SLineEdit {
         const Line = [{ X: this.line[0].x, Y: this.line[0].y }, { X: this.line[1].x, Y: this.line[1].y }];
         this.data.Style.Default.Line = Line;
         this.data.Style.Default.LineWidth = this.lineWidth;
-        this.data.Style.Default.LineStyle = this.lineStyle
+        this.data.Style.Default.LineStyle = this.lineStyle;
+        this.data.Style.Default.StrokeColor = this.strokeColor;
         return this.data
     }
 }

+ 22 - 1
src/components/editClass/edit/items/SImageEdit.ts

@@ -26,7 +26,7 @@
 
 import { SPainter, SRect, SSize, SColor, SPoint } from "@persagy-web/draw";
 import { SImageShowType, STextOrigin } from "@persagy-web/graph";
-import { SGraphItem, SAnchorItem } from "@persagy-web/graph";
+import { SGraphItem, SAnchorItem,SLineStyle } from "@persagy-web/graph";
 import { SItemStatus } from "@persagy-web/big";
 import { SGraphEdit } from "./../"
 
@@ -78,6 +78,16 @@ export class SImageEdit extends SGraphEdit {
         this._originPosition = v;
         this.update();
     }
+
+    /** 线条样式    */
+    private _lineStyle: SLineStyle = SLineStyle.Solid;
+    get lineStyle(): SLineStyle {
+        return this._lineStyle;
+    }
+    set lineStyle(v: SLineStyle) {
+        this._lineStyle = v;
+        this.update();
+    }
     /** 图片加载是否完成 */
     isLoadOver: boolean = false;
 
@@ -321,6 +331,17 @@ export class SImageEdit extends SGraphEdit {
         } else {
             painter.shadow.shadowColor = SColor.Transparent;
         }
+        if (this.lineStyle == SLineStyle.Dashed) {
+            painter.pen.lineDash = [
+                painter.toPx(this.lineWidth * 3),
+                painter.toPx(this.lineWidth * 7)
+            ];
+        } else if (this.lineStyle == SLineStyle.Dotted) {
+            painter.pen.lineDash = [
+                painter.toPx(2 * this.lineWidth),
+                painter.toPx(2 * this.lineWidth)
+            ];
+        }
         painter.pen.lineWidth = this.lineWidth;
         painter.pen.color = this.strokeColor;
         painter.brush.color = SColor.Transparent;

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

@@ -208,8 +208,6 @@ export class PTopoScene extends SBaseEditScene {
      */
     addImageItem(event: SMouseEvent): void {
         const data = {
-            /** ID */
-            ID: uuid(),
             /** 名称  */
             Name: '基础图片',
             Num: 1,

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 17 - 29
src/components/editClass/persagy-edit/item/SPersagyImageEdit.ts


+ 92 - 37
src/components/editview/rightPropertyBar/BaseImagePro.vue

@@ -26,13 +26,15 @@
               placeholder="请输入内容"
             ></el-input>
           </div>
-          <i class="el-icon-link"></i>
           <el-upload
-            action="/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true/"
+            class="avatar-uploader"
+            action="https://jsonplaceholder.typicode.com/posts/"
             :show-file-list="false"
             :on-success="handleAvatarSuccess"
             :before-upload="beforeAvatarUpload"
-          >12</el-upload>
+          >
+            <i class="el-icon-link" @click="updataImage"></i>
+          </el-upload>
         </div>
       </li>
       <li>
@@ -82,6 +84,7 @@
 </template>
 <script>
 import bus from "@/bus/bus";
+const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
 import { uploadGroup, getImageGroup } from "@/api/editer";
 export default {
   props: ["strokeColor", "lineStyle", "lineWidth", "Width", "Height"],
@@ -106,6 +109,7 @@ export default {
         },
       ],
       linestyle: "solid",
+      url: "",
     };
   },
   methods: {
@@ -117,44 +121,92 @@ export default {
     },
     handleChange() {},
     changeLineStyle() {},
-    updataImage() {
-      let dom = document.createElement("input");
-      dom.type = "file";
-      dom.name = "file";
-      dom.accept = "image/*";
-      dom.click();
-      dom.onchange = function (a) {
-        //继续使用上文的fileList
-        let file = a.path[0].files[0];
-        var reads = new FileReader();
-        reads.readAsDataURL(file);
-        reads.onload = function (e) {
-          const myform = new FormData();
-          console.log(file);
-          myform.append("xxx", file);
-          console.log(myform);
-          let data = { data: myform };
-          uploadGroup(data).then((res) => {
-            console.log("resresres", res);
-          });
-        };
-      };
-    },
     beforeAvatarUpload(file) {
-      const isJPG = file.type === "image/jpeg";
-      const isLt2M = file.size / 1024 / 1024 < 2;
+      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
 
-      if (!isJPG) {
-        this.$message.error("上传头像图片只能是 JPG 格式!");
-      }
-      if (!isLt2M) {
-        this.$message.error("上传头像图片大小不能超过 2MB!");
+        // 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 isJPG && isLt2M;
+      return new Blob([new Uint8Array(array)], { type: type });
     },
-    handleAvatarSuccess(res, file) {
-      console.log("res, file", res, file);
-      this.imageUrl = URL.createObjectURL(file.raw);
+    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)
+      );
     },
   },
 
@@ -174,6 +226,9 @@ export default {
     Height(val) {
       this.height = val;
     },
+    Url(val) {
+      this.url = val;
+    },
   },
 };
 </script>