1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-15 12:52:21 +08:00
koogua af65adaf94 1.补充话题列表课程数据结构
2.调整发送验证码相关样式
3.优化套餐和话题下拉课程数据显示
4.去除礼物详情中多出来的"}}"标签
5.修正关闭秒杀订单时没有回填库存的问题
6.vditor编辑器切换为七牛cdn加速
2022-04-30 11:23:33 +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.staticfile.org/vditor/3.8.13/index.css', false) }}
{% endif %}
{% endblock %}
{% block include_js %}
{% if gift.type == 2 %}
{{ js_include('https://cdn.staticfile.org/vditor/3.8.13/index.min.js', false) }}
{{ js_include('admin/js/cover.upload.js') }}
{{ js_include('admin/js/vditor.js') }}
{% endif %}
{% endblock %}