@if (open()) {
一级 · 城市
-
@if (menuDepth() >= 2) {
二级 · 行政区
@for (d of districts; track d) {
-
}
@if (districts.length === 0) {
- 暂无分区
}
}
@if (menuDepth() >= 3 && activeDistrict()) {
三级 · {{ activeDistrict() }}
@for (s of storesInActiveDistrict(); track s.id) {
-
}
@if (storesInActiveDistrict().length === 0) {
- 暂无门店
}
}
@if (menuDepth() >= 4 && activeDistrict() && activeStore()) {
四级 · 客户群
@for (g of groupsInActiveStore(); track g.roomId) {
-
}
@if (groupsInActiveStore().length === 0) {
- 暂无客户群
}
}
}