<AppCheckboxList
    {{#if editor.readOnly}}
    :readOnly="{{editor.readOnly}}"
    {{/if}}
    v-bind="{{CustomParams 'editor' editor}}"
{{#if editor.editorParams}}
    {{#if editor.editorParams.mode}}
    mode="{{editor.editorParams.mode}}"
    {{/if}}
    {{#if editor.editorParams.border}}
    :border="{{editor.editorParams.border}}"
    {{/if}}
    {{#if editor.editorParams.button}}
    :button="{{editor.editorParams.button}}"
    {{/if}}
    {{#if editor.editorParams.size}}
    size="{{editor.editorParams.size}}"
    {{/if}}
    {{#if editor.editorParams.valueType}}
    valueType="{{editor.editorParams.valueType}}"
    {{/if}}
{{/if}}
{{#if editor.psAppCodeList}}
    codeListTag="{{editor.psAppCodeList.codeListTag}}"
    codeListType="{{editor.psAppCodeList.codeListType}}"
    :codeItemValueNumber="{{editor.psAppCodeList.codeItemValueNumber}}"
    {{#if editor.psAppCodeList.valueSeparator}}
    valueSeparator="{{editor.psAppCodeList.valueSeparator}}"
    {{/if}}
{{/if}}
    {{#if editor.psNavigateContexts}}
    :localContext="{{> @macro/common/navparam.hbs appNavParams=editor.psNavigateContexts}}"
    {{/if}}
    {{#if editor.psNavigateParams}}
    :localParam="{{> @macro/common/navparam.hbs appNavParams=editor.psNavigateParams}}"
    {{/if}}
    :context="store.context"
    :viewParams="store.viewParams"
    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}}"
    :data="record"
    {{#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}}{{editor.name}}{{/if}}"
    @component-action="(actionParam:any) => { handleComponentAction(controller, actionParam, index) }"
{{/eq}}
{{#eq ctrlType 'panel'}}
    name="{{item.name}}"
    :data="store.layoutData"
    {{#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"
    {{!-- 适配表单重复器 --}}
    {{#if repeaterMode}}
    :data="data"
    :value="data.{{editor.name}}"
    {{else}}
    :data="store.data"
    :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}}
/> 
