提交 f9069169 编写于 作者: Shine-zwj's avatar Shine-zwj

update:新增地图是否回填信息

上级 54ca01ff
...@@ -32,6 +32,14 @@ export default class AppMobMapPosition extends Vue { ...@@ -32,6 +32,14 @@ export default class AppMobMapPosition extends Vue {
*/ */
@Prop() viewparams: any; @Prop() viewparams: any;
/**
* 是否回填信息
*
* @type {*}
* @memberof AppMobMapPosition
*/
@Prop({default: true}) backinfo!: boolean;
/** /**
* 视图参数 * 视图参数
* *
...@@ -121,7 +129,7 @@ export default class AppMobMapPosition extends Vue { ...@@ -121,7 +129,7 @@ export default class AppMobMapPosition extends Vue {
*/ */
public closeMap(data: any) { public closeMap(data: any) {
document.getElementById('app')?.removeChild(this.map.$el); document.getElementById('app')?.removeChild(this.map.$el);
if (data) { if (data && this.backinfo) {
if (this.address) { if (this.address) {
this.$emit('change', {name: this.address, value: data.address}); this.$emit('change', {name: this.address, value: data.address});
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册