{% for column in table.columns %}
{% if column.is_query %}
{% if column.html_type == 'input' %}
{% elif column.html_type == 'select' and column.dict_type != '' %}
{% elif column.html_type == 'datetime' %}
{% endif %}
{% endif %}
{% endfor %}
搜索
重置
新增
展开/折叠
{% set index = 0 %}
{% for column in table.columns %}
{% if column.is_list %}
{% if column.is_pk %}
{% elif column.html_type == 'datetime' %}
{{ parseTime(scope.row.{{ underscore(column.java_field) }}, '{y}-{m}-{d}') }}
{% elif column.html_type == 'imageUpload' %}
{% elif column.dict_type != '' %}
{% if column.html_type == 'checkbox' %}
{% else %}
{% endif %}
{% else %}
{% endif %}
{% set index = index + 1 %}
{% endif %}
{% endfor %}
修改
新增
删除
{% for column in table.columns %}
{% if column.is_insert and not column.is_pk %}
{% if table.tree_parent_code != '' and column.java_field == table.tree_parent_code %}
{% elif column.html_type == 'input' %}
{% elif column.html_type == 'textarea' %}
{% elif column.html_type == 'select' %}
{% elif column.html_type == 'radio' %}
{{ dict.label }}
{% elif column.html_type == 'checkbox' %}
{{ dict.label }}
{% elif column.html_type == 'datetime' %}
{% elif column.html_type == 'imageUpload' %}
{% elif column.html_type == 'fileUpload' %}
{% endif %}
{% endif %}
{% endfor %}