{% extends 'templates/main.volt' %} {% block content %} {%- macro type_info(value) %} {% if value == 'course' %} {% elseif value == 'chat' %} {% endif %} {%- endmacro %} {% set joined_url = url({'for':'web.my.groups'},{'type':'joined'}) %} {% set owned_url = url({'for':'web.my.groups'},{'type':'owned'}) %} {% set joined_class = type == 'joined' ? 'layui-btn layui-btn-xs' : 'none' %} {% set owned_class = type == 'owned' ? 'layui-btn layui-btn-xs' : 'none' %}
{{ partial('my/menu') }}
我的群组 参加的 管理的
{% if type == 'owned' %} {{ partial('my/im_groups_owned') }} {% else %} {{ partial('my/im_groups_joined') }} {% endif %}
{% endblock %} {% block include_js %} {{ js_include('web/js/my.js') }} {% endblock %}