1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-13 11:59:11 +08:00
koogua 83a39e5648 1.增加积分兑换会员
2.优化课程和套餐发货
3.增加isp和电子执照配置
2022-06-07 21:55:36 +08:00

33 lines
778 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 == 3 %}
{{ partial('point_gift/edit_vip') }}
{% elseif gift.type == 2 %}
{{ partial('point_gift/edit_goods') }}
{% endif %}
{% endblock %}
{% block link_css %}
{% if gift.type == 2 %}
{{ css_link('lib/vditor/dist/index.css') }}
{% endif %}
{% endblock %}
{% block include_js %}
{% if gift.type == 2 %}
{{ js_include('lib/vditor/dist/index.min.js') }}
{{ js_include('admin/js/cover.upload.js') }}
{{ js_include('admin/js/vditor.js') }}
{% endif %}
{% endblock %}