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