Tab切換
"tabBar": {
"color": "black", //默認(rèn)顏色
"borderStyle": "#000", //邊框
"selectedColor": "red", //替換時(shí)小圖標(biāo)下方更換的顏色
"list": [
{
"pagePath":"pages/index/index", //要跳轉(zhuǎn)的目標(biāo)組件的路徑
"text": "首頁", //tab文字
"iconPath":"static/home.png", //默認(rèn)小圖標(biāo)路徑
"selectedIconPath": "static/home-1.png" //點(diǎn)擊替換的小圖標(biāo)路徑
},
{
"pagePath":"pages/classify/classify",
"text": "分類",
"iconPath": "static/list.png",
"selectedIconPath": "static/list-1.png"
},
{
"pagePath": "pages/shopcar/shopcar",
"text": "購物車",
"iconPath": "static/shopCar.png",
"selectedIconPath":"static/shopCar-1.png"
},
{
"pagePath": "pages/people/people",
"text": "個(gè)人",
"iconPath": "static/user.png",
"selectedIconPath":"static/user-1.png"
}
]
}
//新建static文件放圖片(阿里圖標(biāo)可下載)
//下載路徑:// http://www.iconfont.cn/
跳轉(zhuǎn)新的頁面
HTML
<view class="classify" bindtap='todetail'>點(diǎn)我跳轉(zhuǎn)</view>
js
todetail:function(e){
//新頁面路由跳轉(zhuǎn)
wx.navigateTo({
url: '../detail/detail' //實(shí)際路徑要寫全
})
},
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者