{# 狀態指示器組件 ============== 參數: - 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 "⏳" %}