{% 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_info(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 }}

物品详情
{{ gift.details }}
{% endblock %} {% block link_css %} {{ css_link('home/css/markdown.css') }} {% endblock %} {% block include_js %} {{ js_include('home/js/point.gift.show.js') }} {% endblock %}