@if (loading) {
} @else if (error) {
} @else if (dataset && summary && reviewScope) { @if (section === 'definition' || section === 'lifecycle') {
} @if (section === 'trend') {
@for (item of categories.slice(0, 6); track item.category) { }
@for (product of topProducts; track product.productId) { }
商品类目成交金额成交件数转化率
{{ product.category2 || product.category1 }} {{ currency(product.summary.gmv) }} {{ number(product.summary.soldUnits) }} {{ percent(product.summary.conversionRate) }}
} @if (section === 'requirement') {
@for (topic of competitorReference.topics; track topic.id) {
{{ topic.label }} {{ topic.description }} @if (topic.sample) {

“{{ topic.sample.content }}”

}
{{ topic.count }} 条
} @empty { }
@for (review of competitorReference.negative.slice(0, 8); track review.reviewId) { }
竞品商品评分评价日期原始评价证据下钻
{{ review.productId }} {{ review.rating }} 星 {{ date(review.reviewDate) }} {{ review.content }} 竞品详情
} @if (section === 'benchmark') {
@for (group of benchmarkGroups; track group.ownProductId) { }
本品型号本品商品ID对标类目竞品品牌竞品数
{{ group.model || '—' }} {{ group.ownProductId }} {{ group.category }} {{ relationBrands(group) }} {{ group.competitors.length }}
} @if (section === 'definition' && selectedProduct) {
品牌产品归属
{{ selectedProduct.brand }}
二级类目产品线
{{ selectedProduct.category2 || '-' }}
三级类目细分类目
{{ selectedProduct.category3 || '-' }}
竞品关系当前对标覆盖
{{ selectedProduct.relationCount }} 条
@for (competitor of selectedCompetitors; track competitor.productKey) { } @empty { }
竞品商品关系来源当前价销量信号评论覆盖下钻
{{ competitorRelationSource(competitor) }} {{ competitor.market?.currentPrice ? currency(competitor.market?.currentPrice || 0) : '待采集' }} {{ competitor.market?.monthSalesText || competitor.market?.salesText || '待采集' }} {{ reviewCount(competitor.productId) }} 条 竞品详情
} @if (section === 'lifecycle' && selectedProduct) {
@for (row of selectedProduct.trend; track row.date) { }
日期成交金额成交件数成交订单件单价
{{ date(row.date) }}{{ currency(row.gmv) }}{{ number(row.soldUnits) }}{{ number(row.transactionOrders) }}{{ currency(averageSoldPrice(row.gmv, row.soldUnits)) }}
} }