mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
13 lines
250 B
Plaintext
13 lines
250 B
Plaintext
{%- macro client_type(value) %}
|
|
{% if value == 1 %}
|
|
PC
|
|
{% elseif value == 2 %}
|
|
H5
|
|
{% elseif value == 3 %}
|
|
APP
|
|
{% elseif value == 4 %}
|
|
小程序
|
|
{% else %}
|
|
N/A
|
|
{% endif %}
|
|
{%- endmacro %} |