Listing 评分列表

默认按可提升分降序,商品 ID 始终作为稳定次级排序键。

@if (currentCursor) { }
@for (dimension of dimensions; track dimension.key) { } @for (item of items; track item.productId) { @for (dimension of dimensions; track dimension.key) { } }
商品分类 / 状态 最弱维度覆盖率 / 版本优先级 评分性质操作
@if (item.imageUrl) { } @else { 无图 }
{{ item.title || '暂无商品标题' }}ID {{ item.productId }}
{{ item.categoryName || '未分类' }}{{ item.categoryPath.length ? item.categoryPath.join(' / ') : item.itemStatusLabel }}{{ item.itemStatusLabel }} {{ overallText(item) }}{{ dimensionText(item, dimension.key) }}{{ rateText(dimensionValue(item,dimension.key)?.rate ?? null) }}{{ item.weakestDimension ? dimensionLabels[item.weakestDimension] : '无法判断' }} {{ item.improvementPotential === null ? '未知' : item.improvementPotential + ' 分' }} {{ item.coveragePercent === null || item.coveragePercent === undefined ? '未知' : item.coveragePercent + '%' }}{{ item.rubricVersion || '未评分版本' }}{{ item.priority || '—' }} {{ item.scoreNatureLabel }}@if (item.scoreNature === 'simulation') { 非正式业务评分 } 同步 {{ item.syncedAt | date:'MM-dd HH:mm' }} 查看详情
@for (item of items; track item.productId) {
{{ item.title || '暂无商品标题' }}ID {{ item.productId }} · {{ item.categoryName || '未分类' }}
{{ overallText(item) }}{{ item.overallScore === null ? '' : ' 分' }}
{{ item.itemStatusLabel }}{{ item.coveragePercent === null || item.coveragePercent === undefined ? '覆盖未知' : '覆盖 ' + item.coveragePercent + '%' }}{{ item.scoreNatureLabel }}{{ item.scoreNature === 'simulation' ? ' · 非正式业务评分' : '' }}{{ item.priority || '无优先级' }}
@for (dimension of dimensions; track dimension.key) { {{ dimension.label }}{{ dimensionText(item, dimension.key) }}{{ rateText(dimensionValue(item,dimension.key)?.rate ?? null) }} }
最弱:{{ item.weakestDimension ? dimensionLabels[item.weakestDimension] : '无法判断' }}可提升:{{ item.improvementPotential === null ? '未知' : item.improvementPotential + ' 分' }}查看详情
}