1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- let tab1 = [
- {
- pagePath: "/pages/index/index",
- iconPath: "/static/home.png",
- selectedIconPath: "/static/home-active.png",
- text: "首页"
- },
- {
- pagePath: "/pages/menu/index",
- iconPath: "/static/news.png",
- selectedIconPath: "/static/news-active.png",
- text: "消息"
- },
- {
- pagePath: "/pages/soldier/user/index",
- iconPath: "/static/user.png",
- selectedIconPath: "/static/user-active.png",
- text: "我的"
- }
- ]
- let tab2 = [
- {
- pagePath: "/pages/index/index",
- iconPath: "/static/home.png",
- selectedIconPath: "/static/home-active.png",
- text: "首页"
- },
- {
- pagePath: "/pages/menu/index",
- iconPath: "/static/news.png",
- selectedIconPath: "/static/news-active.png",
- text: "消息"
- },
- {
- pagePath: "/pages/merchant/goods/goods",
- iconPath: "/static/shop.png",
- selectedIconPath: "/static/shop-active.png",
- text: "商品管理"
- }
- ]
- let tab3 = [
- {
- pagePath: "/pages/index/index",
- iconPath: "/static/home.png",
- selectedIconPath: "/static/home-active.png",
- text: "店铺审核"
- },
- {
- pagePath: "/pages/menu/index",
- iconPath: "/static/news.png",
- selectedIconPath: "/static/news-active.png",
- text: "商品审核"
- },
- {
- pagePath: "/pages/manage/account/accountExamine",
- iconPath: "/static/shop.png",
- selectedIconPath: "/static/shop-active.png",
- text: "账户审核"
- },
- ]
- export default {
- tab1,
- tab2,
- tab3
- }
|