修改
This commit is contained in:
parent
cfe0d0b30f
commit
ef3d1f2e63
@ -82,7 +82,7 @@ export default {
|
||||
[{ color: [] }, { background: [] }], // 字体颜色、字体背景颜色
|
||||
[{ align: [] }], // 对齐方式
|
||||
["clean"], // 清除文本格式
|
||||
["link", "image", "video"] // 链接、图片、视频
|
||||
["link", "image"] // 链接、图片、视频
|
||||
],
|
||||
},
|
||||
placeholder: "请输入内容",
|
||||
|
||||
@ -296,6 +296,11 @@
|
||||
query.orderStatus == 'COMPLETE' || query.orderStatus == 'EVALUATED'
|
||||
"
|
||||
>
|
||||
<el-input
|
||||
v-model="query.serviceLocationName"
|
||||
disabled
|
||||
style="width: 250px"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div
|
||||
|
||||
@ -143,7 +143,7 @@ export default {
|
||||
});
|
||||
this.map.add(layer);
|
||||
var labelMarker = new AMap.LabelMarker({
|
||||
name: "",
|
||||
name: query.serviceLocationName,
|
||||
position: [query.serveLocationLongitude, query.serveLocationLatitude],
|
||||
icon: {
|
||||
type: "image",
|
||||
@ -156,15 +156,15 @@ export default {
|
||||
retina: true,
|
||||
},
|
||||
text: {
|
||||
content: "",
|
||||
content: query.serviceLocationName,
|
||||
direction: "top",
|
||||
offset: [0, 0],
|
||||
style: {
|
||||
fontSize: 13,
|
||||
fontWeight: "normal",
|
||||
fillColor: "#fff",
|
||||
fillColor: "black",
|
||||
padding: "2, 5",
|
||||
backgroundColor: "#22884f",
|
||||
backgroundColor: "",
|
||||
},
|
||||
},
|
||||
});
|
||||
@ -415,4 +415,4 @@ export default {
|
||||
);
|
||||
},
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user