{# 状态指示器组件 ============== 参数: - id: 指示器 ID - status: 状态类型 ("waiting", "processing", "submitted") - icon: 状态图标 - title: 状态标题 - message: 状态讯息 - visible: 是否显示 (预设: false) 使用方式: {% include 'components/status-indicator.html' with id="feedbackStatusIndicator", status="waiting", icon="⏳", title="等待您的回馈", message="请提供您对 AI 工作成果的意见和建议" %} #} {% set visible = visible or false %} {% set status = status or "waiting" %} {% set icon = icon or "⏳" %}