|
@@ -25,13 +25,13 @@
|
|
|
placeholder="请输入内容"
|
|
|
></el-input>
|
|
|
</div>
|
|
|
- <el-upload
|
|
|
+ <!-- <el-upload
|
|
|
class="avatar-uploader"
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
:show-file-list="false"
|
|
|
>
|
|
|
<i class="el-icon-link"></i>
|
|
|
- </el-upload>
|
|
|
+ </el-upload> -->
|
|
|
</div>
|
|
|
<div class="base-property base-property-left">
|
|
|
<div>
|
|
@@ -39,7 +39,7 @@
|
|
|
<el-input
|
|
|
style="width: 74px; margin-left: 6px"
|
|
|
size="mini"
|
|
|
- v-model="width"
|
|
|
+ disabled
|
|
|
@input="changeWidth"
|
|
|
placeholder="请输入内容"
|
|
|
></el-input>
|
|
@@ -48,13 +48,20 @@
|
|
|
<div class="imgUpdate">
|
|
|
<div class="img-tit">设计图</div>
|
|
|
<div class="btn-list">
|
|
|
- <Button type="default">上传文件</Button>
|
|
|
+ <el-upload
|
|
|
+ class="avatar-uploader"
|
|
|
+ action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
+ :show-file-list="false"
|
|
|
+ :before-upload="beforeAvatarUpload"
|
|
|
+ >
|
|
|
+ <Button type="default">上传文件</Button>
|
|
|
+ </el-upload>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="imgUpdate">
|
|
|
<div class="img-tit">附加数据</div>
|
|
|
<div class="textarea">
|
|
|
- <el-input type="textarea" :rows="2" placeholder="请输入内容">
|
|
|
+ <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容">
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -116,10 +123,13 @@
|
|
|
<script>
|
|
|
import { queryEquipMsg, queryDict } from "@/api/editer";
|
|
|
import bus from "@/bus/bus";
|
|
|
+const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
|
|
|
export default {
|
|
|
- props: ["InfoPointList", "EquipData", "equipHeight"],
|
|
|
+ props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height","AnotherMsg"],
|
|
|
data() {
|
|
|
return {
|
|
|
+ width: 0,
|
|
|
+ height: 0,
|
|
|
activeName: "first",
|
|
|
width: "",
|
|
|
height: "",
|
|
@@ -127,6 +137,7 @@ export default {
|
|
|
pressMsgData: [], // 搜索后得信息点数组
|
|
|
getPressMsg: "", //输入信息
|
|
|
local: "", //局部加载
|
|
|
+ anotherMsg: "", // 附加信息
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -134,6 +145,7 @@ export default {
|
|
|
clips(item) {
|
|
|
item.showChildren = !item.showChildren;
|
|
|
},
|
|
|
+ // 点击切换
|
|
|
handleClick(tab, event) {
|
|
|
// 设置高度
|
|
|
if (tab.paneName == "second") {
|
|
@@ -143,9 +155,105 @@ export default {
|
|
|
box2.style.height = this.equipHeight;
|
|
|
}
|
|
|
},
|
|
|
- changeWidth() {},
|
|
|
- changeHeight() {},
|
|
|
- eforeAvatarUpload() {},
|
|
|
+ // 设置宽
|
|
|
+ changeWidth(val) {
|
|
|
+ bus.$emit("updateStyle", "sWidth", val);
|
|
|
+ },
|
|
|
+ // 设置高
|
|
|
+ changeHeight(val) {
|
|
|
+ bus.$emit("updateStyle", "sHeight", val);
|
|
|
+ },
|
|
|
+ // 设置附加信息
|
|
|
+ changeAnotherMsg(val) {
|
|
|
+ bus.$emit("updateStyle", "anotherMsg", val);
|
|
|
+ },
|
|
|
+ beforeAvatarUpload(file) {
|
|
|
+ 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
|
|
|
+
|
|
|
+ // 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 new Blob([new Uint8Array(array)], { type: type });
|
|
|
+ },
|
|
|
+ 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)
|
|
|
+ );
|
|
|
+ },
|
|
|
// 切换选中选项
|
|
|
changeCheck(item) {
|
|
|
item.checked = !item.checked;
|
|
@@ -278,6 +386,15 @@ export default {
|
|
|
this.$loading.close(this.local);
|
|
|
});
|
|
|
},
|
|
|
+ Width(val) {
|
|
|
+ this.width = val;
|
|
|
+ },
|
|
|
+ Height(val) {
|
|
|
+ this.height = val;
|
|
|
+ },
|
|
|
+ AnotherMsg(val) {
|
|
|
+ this.anotherMsg = val;
|
|
|
+ },
|
|
|
},
|
|
|
mounted() {},
|
|
|
};
|