mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
17 lines
361 B
Plaintext
17 lines
361 B
Plaintext
{%- macro publish_status(type) %}
|
|
{% if type == 1 %}
|
|
审核中
|
|
{% elseif type == 2 %}
|
|
已发布
|
|
{% elseif type == 3 %}
|
|
未通过
|
|
{% else %}
|
|
N/A
|
|
{% endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro private_info(value) %}
|
|
{% if value == 1 %}
|
|
<span class="layui-badge">私密</span>
|
|
{% endif %}
|
|
{%- endmacro %} |