1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-13 03:49:11 +08:00
2022-01-18 18:03:48 +08:00

31 lines
765 B
Plaintext

{% extends 'templates/main.volt' %}
{% block content %}
{% set update_url = url({'for':'admin.point_gift.update','id':gift.id}) %}
{% if gift.type == 1 %}
{{ partial('point_gift/edit_course') }}
{% elseif gift.type == 2 %}
{{ partial('point_gift/edit_goods') }}
{% endif %}
{% endblock %}
{% block link_css %}
{% if gift.type == 2 %}
{{ css_link('https://cdn.jsdelivr.net/npm/vditor/dist/index.css', false) }}
{% endif %}
{% endblock %}
{% block include_js %}
{% if gift.type == 2 %}
{{ js_include('https://cdn.jsdelivr.net/npm/vditor/dist/index.min.js', false) }}
{{ js_include('admin/js/cover.upload.js') }}
{{ js_include('admin/js/vditor.js') }}
{% endif %}
{% endblock %}