手機(jī)也能上課
1/4
app.json-tabBar
如果小程序是一個(gè)多 tab 應(yīng)用(客戶(hù)端窗口的底部或頂部有 tab 欄可以切換頁(yè)面),可以通過(guò) tabBar 配置項(xiàng)指定 tab 欄的表現(xiàn),以及 tab 切換時(shí)顯示的對(duì)應(yīng)頁(yè)面。
Tip:當(dāng)設(shè)置 position 為 top 時(shí),將不會(huì)顯示 icon。tabBar 中的 list 是一個(gè)數(shù)組,只能配置最少2個(gè),最多5個(gè) tab。tab 按數(shù)組的順序排序。
屬性說(shuō)明:
屬性 | 類(lèi)型 | 必填 | 默認(rèn)值 | 描述 |
---|---|---|---|---|
color | HexColor | 是 | tab 上的文字默認(rèn)顏色 | |
selectedColor | HexColor | 是 | tab 上的文字選中時(shí)的顏色 | |
backgroundColor | HexColor | 是 | tab 的背景色 | |
borderStyle | String | 否 | black | tabbar上邊框的顏色, 僅支持 black/white |
list | Array | 是 | tab 的列表,詳見(jiàn) list 屬性說(shuō)明,最少2個(gè)、最多5個(gè) tab | |
position | String | 否 | bottom | 可選值 bottom、top |
其中 list 接受一個(gè)數(shù)組,數(shù)組中的每個(gè)項(xiàng)都是一個(gè)對(duì)象,其屬性值如下:
屬性 | 類(lèi)型 | 必填 | 說(shuō)明 |
---|---|---|---|
pagePath | String | 是 | 頁(yè)面路徑,必須在 pages 中先定義 |
text | String | 是 | tab 上按鈕文字 |
iconPath | String | 否 | 圖片路徑,icon 大小限制為40kb,建議尺寸為 81px * 81px,當(dāng) postion 為 top 時(shí),此參數(shù)無(wú)效,不支持網(wǎng)絡(luò)圖片 |
selectedIconPath | String | 否 | 選中時(shí)的圖片路徑,icon 大小限制為40kb,建議尺寸為 81px * 81px ,當(dāng) postion 為 top 時(shí),此參數(shù)無(wú)效 |
執(zhí)行結(jié)果: