<AppArrayBox 
{{#if (or (eq editor.dataType 'NUMBER') (eq editor.dataType 'INTEGER'))}}
    type="number"
{{else}}
    type="text"
{{/if}}
    v-bind="{{CustomParams 'editor' editor}}"
{{#if editor.editorParams}}
    {{#if editor.editorParams.editorStyle}}
    editorStyle="{{editor.editorParams.editorStyle}}"
    {{/if}}
    {{#if editor.editorParams.size}}
    size="{{editor.editorParams.size}}"
    {{/if}}
    {{#if editor.editorParams.limit}}
    :limit="{{editor.editorParams.limit}}"
    {{/if}}
    {{#if editor.editorParams.maxlength}}
    :maxLength="{{editor.editorParams.maxlength}}"
    {{/if}}
    {{#if editor.editorParams.showWordLimit}}
    :showWordLimit="{{editor.editorParams.showWordLimit}}"
    {{/if}}
    {{#if editor.editorParams.prepend}}
    prepend="{{editor.editorParams.prepend}}"
    {{/if}}
    {{#if editor.editorParams.append}}
    append="{{editor.editorParams.append}}"
    {{/if}}
    {{#if editor.editorParams.target}}
    target="{{editor.editorParams.target}}"
    {{/if}}
{{/if}}
    {{#if editor.readOnly}}
    :readonly="{{editor.readOnly}}"
    {{/if}}
    {{#if editor.placeHolder}}
    placeholder="{{editor.placeHolder}}"
    {{/if}}
    style="{{#if editor.editorWidth}}width: {{editor.editorWidth}}px;{{/if}}{{#if editor.editorHeight}}height: {{editor.editorHeight}}px{{/if}}"
{{#eq ctrlType 'grid'}}
    name="{{#if dataItemName}}{{dataItemName}}{{else}}{{item.codeName}}{{/if}}"
    {{#if (eq item.enableCond 0)}}
    :disabled="true"
    {{else if (eq item.enableCond 1)}}
    :disabled="!Object.is(record.srfuf,0)"
    {{else if (eq item.enableCond 2)}}
    :disabled="!Object.is(record.srfuf,1)"
    {{/if}}
    :value="record.{{#if dataItemName}}{{dataItemName}}{{else}}{{item.name}}{{/if}}"
    @component-action="(actionParam:any) => { handleComponentAction(controller, actionParam, index) }"
{{/eq}}
{{#eq ctrlType 'panel'}}
    name="{{item.name}}"
    {{#if isMultiData}}
    :disabled="store.layoutModelDetails?.[`{{item.name}}_${data.index}`]?.disabled ? true : false"
    :value="store.layoutData[`{{item.name}}_${data.index}`]"
    @component-action="(actionParam: IEvent<string>) => { handleComponentAction(controller, actionParam, data.index) }"
    {{else}}
    :disabled="store.layoutModelDetails?.{{item.name}}?.disabled ? true : false"
    :value="store.layoutData.{{item.name}}"
    @component-action="(actionParam: IEvent<string>) => { handleComponentAction(controller, actionParam) }"
    {{/if}}
{{/eq}}
{{#eq ctrlType 'form'}}
    name="{{item.codeName}}"
    :disabled="store.detailModel.{{item.codeName}}.disabled"
    :rules="store.detailModel.{{item.codeName}}.valueRule"
    {{!-- 适配表单重复器 --}}
    {{#if repeaterMode}}
    :value="data.{{editor.name}}"
    {{else}}
    :value="store.data.{{editor.name}}"
    {{/if}}
    @component-action="(actionParam: IEvent<string>) => { handleComponentAction(controller, actionParam) }"
{{/eq}}
{{#eq ctrlType 'gridColumnFilter'}}
    name="{{editor.name}}"
    :value="value"
    @component-action="handleComponentAction"
{{/eq}}
/>