功能开关
发送【开关功能名】切换状态
{% for key, value in funcs_status.items() %}
{{ funcs_name[key][0] }}
{% if funcs_name[key] | length > 1 %}
{{ funcs_name[key][1:] | join('、') }}
{% endif %}
{% if value %}
开启
{% else %}
关闭
{% endif %}
{% endfor %}