当前范围:
{{ dashboardScopeSelection.label }}
@if (dashboardScopeSelection.level === 'district') {
· {{ (dashboardStoresByDistrict[dashboardScopeSelection.district!] || []).length }} 家门店
· {{ stats.totalGroups }} 个客户群
}
@if (dashboardScopeSelection.level === 'store') {
· {{ stats.totalGroups }} 个客户群
}
@if (dashboardScopeSelection.level === 'district') {
@for (s of dashboardStoresByDistrict[dashboardScopeSelection.district!] || []; track s.id) {
{{ s.name }}
}
@if ((dashboardStoresByDistrict[dashboardScopeSelection.district!] || []).length === 0) {
暂无门店
}
}
@if (dashboardScopeSelection.level === 'store' || dashboardScopeSelection.level === 'group') {
@for (g of topGroups; track g.id) {
{{ g.name }}
}
@if (topGroups.length === 0) {
暂无客户群
}
}
}