GRIDEIDTOR.vue.ftl 496 字节
Newer Older
1 2
<#if editor?? && editor.render??> 
    ${editor.render.code}
3
<#else>
4
 <time-picker :value="row[column.property]" :transfer="true" format="HH" <#if item.getPlaceHolder()??>placeholder="${item.getPlaceHolder()}"</#if> :disabled="getColumnDisabled(row,column.property)" style="${item.getEditorCssStyle()}<#if item.getEditorParam('width','') == 'auto'>width:100%;</#if>" @on-change="(val) => { row[column.property] = val; gridEditItemChange(row, column.property, val, $index)}"></time-picker>
5
 </#if>