EDITOR.vue.ftl 693 字节
Newer Older
1
<#ibizinclude>../@MACRO/FUNC/PUBLIC.vue.ftl</#ibizinclude>
KK's avatar
KK committed
2
<app-group-select
3 4 5
  name="${editor.name}"
  :value='data.${editor.name}'
  valueitem="${editor.getValueItemName()}"
6 7 8
  <#if item.getPlaceHolder()??>
  placeholder="${item.getPlaceHolder()}"
  </#if>
9 10 11 12 13 14 15
  <#if editor.getEditorParam("MULTIPLE", false)>:multiple="true"</#if>
  <#if editor.getEditorParam("FILTER", "") != "">filter="${editor.getEditorParam("FILTER", "")}"</#if>
  <#if editor.getEditorParam("FILLMAP", "") != "">:fillmap='${editor.getEditorParam("FILLMAP", "")}'</#if>
  :disabled="detailsModel.${editor.name}.disabled"
  :data="data"
  :context="context"
  @formitemvaluechange="onFormItemValueChange">
KK's avatar
KK committed
16
</app-group-select>