单个SKU的完整生命周期分析,包含趋势、指标和阶段详情
SKU编码
{{ selectedSku }}
生命周期完整性
{{ detail && detail.is_complete ? '完整' : '不完整' }} (得分: {{ detail.completeness_score }}/100)
总销售额
{{ formatCurrency(totalRevenue) }}
总销量
{{ totalQty }}
峰值销售额
{{ formatCurrency(detail && detail.peak_revenue) }}
{{ formatDate(detail && detail.peak_revenue_date) }}
峰值销量
{{ detail && detail.peak_quantity != null ? detail.peak_quantity : '-' }}
{{ formatDate(detail && detail.peak_quantity_date) }}
当前阶段说明
处于 {{ currentStage }},已持续 {{ currentStageDurationDays }} 天。
{{ detail && detail.details ? detail.details : '-' }}
下一阶段预测:{{ detail.next_stage_prediction }}
| 阶段 | 总销售额 | 销售额占比 | 总销量 | 销量占比 | 日均销售额 | 日均销量 | 持续天数 | 起止日期 |
|---|---|---|---|---|---|---|---|---|
| {{ stage }} | {{ formatCurrency(stats.totalRevenue) }} | {{ formatPercent(stats.revenuePercentage) }} | {{ stats.totalQuantity != null ? stats.totalQuantity : '-' }} | {{ formatPercent(stats.quantityPercentage) }} | {{ formatCurrency(stats.avgDailyRevenue) }} | {{ stats.avgDailyQuantity != null ? stats.avgDailyQuantity : '-' }} | {{ stats.durationDays }} | {{ formatDate(stats.startDate) }} ~ {{ formatDate(stats.endDate) }} |