开始

未登陆的状态。
image.png
登陆后的状态
image.png

配置按钮

image.png

image.png
为了好看,隐藏滚动条
image.png
回弹效果 取消。
image.png

  1. "app-plus": {
  2. "scrollIndicator": "none",
  3. "bounce": "none",
  4. "titleNView": {
  5. "buttons": [
  6. {
  7. "type": "menu"
  8. }
  9. ]
  10. }
  11. }

image.png
测试按钮的索引号
image.png

  1. onNavigationBarButtonTap(index) {
  2. if(e.index) {
  3. console.log('点击了menu图标');
  4. }
  5. }

image.png

  1. onNavigationBarButtonTap(e) {
  2. if(e.index==0) {
  3. console.log('跳转设置页');
  4. }
  5. },

image.png

image.png

结束