EDITOR.vue.ftl 687 字节
<app-map-position 
    name="${editor.name}"
    v-model="data.${editor.name}" 
    :data="data" 
    :formState="formState"
    mode="<#if item.getEditorParam("mode","") != ''>${item.getEditorParam("mode","")}<#else>address</#if>"
    <#if item.getEditorParam("address","") != ''>
    address="${item.getEditorParam("address","")}"
    </#if><#t>
    <#if item.getEditorParam("longitude","") != ''>
    longitude="${item.getEditorParam("longitude","")}"
    </#if><#t>
    <#if item.getEditorParam("latitude","") != ''>
    latitude="${item.getEditorParam("latitude","")}"
    </#if><#t>
    @itemChange="(val1, val2) => { onFormItemValueChange(val1); onFormItemValueChange(val2); }"
/>