{% for item in item_list %}
{% if item.type not in [ 'hidden'] %} {% endif %}
{% if item.type in ['array', 'text','number','email','hidden'] %} {% elif item.type =='password' %} {% elif item.type == 'radio' %} {% for radio_item in item.radio_list %} {% endfor %} {% elif item.type == 'cascader' %} {% elif item.type == 'checkbox' %} {% for checkbox_item in item.checkbox_list %} {% endfor %} {% elif item.type == 'switch' %} {% if item.switch_item %} {% endif %} {% elif item.type == 'select' %} {% elif item.type == 'textarea' %} {% elif item.type == 'file' %} {% endif %} {% if item.tip %} {{item.tip}} {% endif %}
{% endfor %}