开始

话题详情页
image.png
点击每一个话题进入话题详情页
image.png
新建页面 topic-details
image.png

image.png

添加事件跳转到详情页

话题的组件内,添加事件要跳转到话题的详情页
image.png

  1. @tap="opendetail"

输入unav
image.png
image.png

  1. methods:{
  2. opendetail(){
  3. uni.navigateTo({
  4. url:'/pages/topic-detail/topic-detail'
  5. })
  6. }
  7. }

image.png
打开了详情页

image.png

配置参数

首先头部的导航是渐变的,隐藏页面的滚动条。右上角有个按钮。
image.png

image.png
先来配置导航栏
https://uniapp.dcloud.io/collocation/pages.html#style
image.png

image.png

  1. "app-plus": {
  2. "titleNView": {
  3. "type": "transparent"
  4. }
  5. }

官方给我们预设了menu的样式
image.png

  1. "buttons": [
  2. {
  3. "type": "menu"
  4. }
  5. ]

image.png

image.png

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

image.png

结束