28 lines
813 B
JavaScript
28 lines
813 B
JavaScript
let tab1 = [{
|
|
"text": "寄存",
|
|
"pagePath": "pages/home/index",
|
|
"iconPath": "../../static/tabbar/home.png",
|
|
"selectedIconPath": "../../static/tabbar/home-active.png"
|
|
},
|
|
{
|
|
"text": "订单",
|
|
"pagePath": "pages/order-goods/index",
|
|
"iconPath": "../../static/tabbar/home.png",
|
|
"selectedIconPath": "../../static/tabbar/home-active.png"
|
|
},
|
|
{
|
|
"text": "合同",
|
|
"pagePath": "pages/contract/index",
|
|
"iconPath": "../../static/tabbar/home.png",
|
|
"selectedIconPath": "../../static/tabbar/home-active.png"
|
|
}
|
|
,
|
|
{
|
|
"text": "我的",
|
|
"pagePath": "pages/mine/index",
|
|
"iconPath": "../../static/tabbar/home.png",
|
|
"selectedIconPath": "../../static/tabbar/home-active.png"
|
|
}
|
|
]
|
|
export default tab1
|