{{if ($v.key neq 'auxiliary-line' and $form_input_mode_type_value neq 'free') or (!in_array($v.key, $form_input_no_free_title_array) and $form_input_mode_type_value eq 'free') }}
{{if in_array($v.key, $form_input_radio_array) and $v.com_data.type eq 'single-text'}}
{{if $v.com_data.is_limit_num == '1' and !empty($v.com_data.max_num)}}
{{:strlen($v.com_data.form_value) }} /{{$v.com_data.max_num }}
{{/if}}
{{elseif $v.key eq 'number'}}
{{if $v.com_data.is_display_money == '1' }}
{{$v.com_data.money_sign }}
{{/if}}
{{if $v.com_data.format == 'percentage'}}
%
{{/if}}
{{elseif $v.key eq 'multi-text'}}
{{if $v.com_data.is_limit_num == '1' and !empty($v.com_data.max_num)}}
{{:strlen($v.com_data.form_value) }} /{{$v.com_data.max_num }}
{{/if}}
{{elseif $v.key eq 'pwd'}}
{{if !empty($v.com_data.icon_name)}}
{{/if}}
{{elseif $v.key eq 'date-group'}}
{{elseif $v.key eq 'date'}}
{{elseif $v.key eq 'position'}}
{{elseif in_array($v.key, $form_input_checkbox_array) and $v.com_data.type eq 'checkbox'}}
{{elseif in_array($v.key, $form_input_radio_array) and $v.com_data.type eq 'radio-btns'}}
{{elseif in_array($v.key, $form_input_radio_array) and $v.com_data.type eq 'select'}}
{{if is_array($v.com_data.option_list)}}
{{foreach :array_values($v.com_data.option_list) as $vol}}
{{if isset($vol.is_other) and $vol.is_other eq '1' and $vol.value eq $v.com_data.form_value }}
{{/if}}
{{/foreach}}
{{/if}}
{{elseif in_array($v.key, $form_input_checkbox_array) and $v.com_data.type eq 'select-multi'}}
{{elseif $v.key eq 'score'}}
{{foreach :array_values(range(1, $v.com_data.total)) as $i => $d}}
{{if $v.com_data.score_type eq 0}}
{{elseif $v.com_data.score_type eq 1}}
{{elseif $v.com_data.score_type eq 2}}
{{$i + 1 }}分
{{/if}}
{{/foreach}}
{{elseif $v.key eq 'text'}}
{{$v.com_data.form_value}}
{{elseif $v.key eq 'img'}}
{{if empty($v.com_data.img_src)}}
{{else/}}
{{/if}}
{{elseif $v.key eq 'video'}}
{{if isset($v.com_data.video) and !empty($v.com_data.video)}}
{{/if}}
{{elseif $v.key eq 'auxiliary-line'}}
{{elseif $v.key eq 'attachments'}}
{{if !empty($v.com_data.file)}}
{{else/}}
暂无文件
{{/if}}
{{elseif $v.key eq 'phone'}}
{{elseif $v.key eq 'address'}}
{{elseif $v.key eq 'upload-img'}}
{{elseif $v.key eq 'upload-video'}}
{{elseif $v.key eq 'upload-attachments'}}
{{elseif $v.key eq 'rich-text'}}
{{elseif $v.key eq 'round' and $form_input_mode_type_value eq 'free'}}
{{elseif $v.key eq 'rect' and $form_input_mode_type_value eq 'free'}}
{{elseif $v.key eq 'subform'}}
{{if isset($v.com_data.children) and count($v.com_data.children) > 0}}
{{else/}}
暂无可用字段
{{/if}}
{{/if}}