|
@@ -54,7 +54,13 @@
|
|
|
<div class="imgUpdate">
|
|
|
<div class="img-tit">附加数据</div>
|
|
|
<div class="textarea">
|
|
|
- <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容">
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ @input="changeAnotherMsg"
|
|
|
+ v-model="anotherMsg"
|
|
|
+ :rows="2"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ >
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -121,7 +127,14 @@ const imgBaseUrl = window.__systemConf.imgServeUri;
|
|
|
// 图上传路径
|
|
|
const imgServeUpload = window.__systemConf.imgServeUpload;
|
|
|
export default {
|
|
|
- props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height","AnotherMsg"],
|
|
|
+ props: [
|
|
|
+ "InfoPointList",
|
|
|
+ "EquipData",
|
|
|
+ "equipHeight",
|
|
|
+ "Width",
|
|
|
+ "Height",
|
|
|
+ "AnotherMsg",
|
|
|
+ ],
|
|
|
data() {
|
|
|
return {
|
|
|
width: 0,
|
|
@@ -197,21 +210,14 @@ export default {
|
|
|
/* method */
|
|
|
"POST",
|
|
|
/* target url */
|
|
|
- imgServeUpload +
|
|
|
- uploadKey +
|
|
|
- "." +
|
|
|
- imgType
|
|
|
+ imgServeUpload + uploadKey + "." + imgType
|
|
|
);
|
|
|
xhr.send(reader.result);
|
|
|
xhr.onreadystatechange = function () {
|
|
|
if (xhr.readyState == 4) {
|
|
|
if (xhr.status == 200) {
|
|
|
that.url = imgBaseUrl + uploadKey + "." + imgType;
|
|
|
- bus.$emit(
|
|
|
- "updateStyle",
|
|
|
- "url",
|
|
|
- imgBaseUrl + uploadKey + "." + imgType
|
|
|
- );
|
|
|
+ bus.$emit("updateStyle", "url", uploadKey + "." + imgType);
|
|
|
}
|
|
|
}
|
|
|
};
|