EDITOR.vue.ftl 655 字节
Newer Older
1
<app-span <#t>
2
  name='${editor.name}'
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
  :value="data.${editor.name}" <#t>
<#if item.getPSCodeList?? && item.getPSCodeList()??>
  <#assign codelist=item.getPSCodeList() />
  tag='${codelist.codeName}' <#t>
  codelistType='${codelist.getCodeListType()}' <#t>
  <#if codelist.getOrMode?? && codelist.getOrMode()?has_content>
    renderMode="${codelist.getOrMode()}" <#t>
  </#if>
  <#if codelist.valueSeparator?has_content>
    valueSeparator="${codelist.valueSeparator}" <#t>
  </#if>
  <#if codelist.textSeparator?has_content>
    textSeparator="${codelist.textSeparator}" <#t>
  </#if>
</#if>
  style="${editor.getEditorCssStyle()}"><#t>
</app-span><#lt>