赞
踩
这个用于储存 导航栏列表
/* 首页的底部导航栏列表 */
export const homePage = [
{
"pagePath":"../home/home",
"text": "首页",
"iconPath": "../images/ic_home.png",
"selectedIconPath": "../images/ic_home_active.png"
},
{
"pagePath": "../user/user",
"text": "个人中心",
"iconPath": "../images/ic_user.png",
"selectedIconPath": "../images/ic_user_active.png"
}
]
/* 商城的底部导航栏列表 */
export const shoppingPage = [
{
"pagePath":"../store/store",
"text": "商城",
"iconPath": "../images/4180-L.png",
"selectedIconPath": "../images/4000-L.png"
},
{
"pagePath": "../shopping/shopping",
"text": "购物车",
"iconPath": "../images/AA10-L.png",
"selectedIconPath": "../images/6020-L.png"
},
{
"pagePath": "../mine/mine",
"text": "我的",
"iconPath": "../images/5260-L.png",
"selectedIconPath": "../images/9140-L.png"
}
]
页面为首页的 js文件,两个引入只需要一个就可以了,需要那个列表就引入那个列表
import {homePage} from '../../utils/tabbar.js';
import {shoppingPage} from '../../utils/tabbar.js';
注:每个用到的页面都要写这段代码,同一个列表的页面只需要修改一下下标。
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
this.getTabBar().setData({
selected: 0, // 首页 显示下标
list: homePage // homePage 为引入的列表
})
}
注:每个用到的页面都要写这段代码,同一个列表的页面只需要修改一下下标。
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
this.getTabBar().setData({
selected: 0, // 首页 显示下标
list: shoppingPage// shoppingPage为引入的列表
})
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。