Showing
1 changed file
with
2 additions
and
1 deletions
| @@ -269,7 +269,6 @@ export struct BottomNavigationComponent { | @@ -269,7 +269,6 @@ export struct BottomNavigationComponent { | ||
| 269 | 269 | ||
| 270 | // 底导切换函数 | 270 | // 底导切换函数 |
| 271 | async onBottomNavigationIndexChange(navItem: BottomNavDTO, index: number) { | 271 | async onBottomNavigationIndexChange(navItem: BottomNavDTO, index: number) { |
| 272 | - // Logger.info(TAG, `onBottomNavigationIndexChange to Index:${index},this.currentNavIndex: ${this.currentNavIndex}`); | ||
| 273 | 272 | ||
| 274 | if (navItem.name === '我的') { | 273 | if (navItem.name === '我的') { |
| 275 | this.barBackgroundColor = Color.White | 274 | this.barBackgroundColor = Color.White |
| @@ -306,10 +305,12 @@ export struct BottomNavigationComponent { | @@ -306,10 +305,12 @@ export struct BottomNavigationComponent { | ||
| 306 | } | 305 | } |
| 307 | } | 306 | } |
| 308 | if (index >= 0 && index != this.currentNavIndex) { | 307 | if (index >= 0 && index != this.currentNavIndex) { |
| 308 | + this.onBottomNavigationIndexChange(this.bottomNavList[index], index) | ||
| 309 | // 切底导 | 309 | // 切底导 |
| 310 | this.currentNavIndex = index | 310 | this.currentNavIndex = index |
| 311 | } | 311 | } |
| 312 | 312 | ||
| 313 | + | ||
| 313 | setTimeout(() => { | 314 | setTimeout(() => { |
| 314 | // 底导切换后,触发顶导切换 | 315 | // 底导切换后,触发顶导切换 |
| 315 | this.assignChannel = new AssignChannelParam() | 316 | this.assignChannel = new AssignChannelParam() |
-
Please register or login to post a comment