{% extends 'templates/main.volt' %} {% block content %} {{ partial('macros/point_gift') }} {% set gift_redeem_url = url({'for':'home.point_gift.redeem','id':gift.id}) %} {% set gift_list_url = url({'for':'home.point_gift.list'}) %}
物品信息
{{ gift_type(gift.type) }} {{ gift.name }}
{% if gift.type == 1 %} {% set course_url = url({'for':'home.course.show','id':gift.attrs.id}) %}

{{ gift.name }}

{% else %}

{{ gift.name }}

{% endif %}

兑换人次 {{ gift.redeem_count }} 兑换限额 {{ gift.redeem_limit }}

兑换价格 {{ gift.point }} 积分

库存数量 {{ gift.stock }}

物品详情
{% if gift.type == 1 %} {% set course_url = url({'for':'home.course.show','id':gift.attrs.id}) %}

{{ gift.name }} 查看

{% elseif gift.type == 3 %} {% set vip_url = url({'for':'home.vip.index'}) %}

{{ gift.name }} 查看

{% else %} {{ gift.details }} {% endif %}
{% endblock %} {% block link_css %} {{ css_link('home/css/content.css') }} {% endblock %} {% block include_js %} {{ js_include('home/js/point.gift.show.js') }} {% endblock %}