| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- export const tabbar = [
- {
- pagePath: "/pages/index/index",
- iconPath: require('@/static/tabBar/tab-home.png'),
- selectedIconPath: require("@/static/tabBar/tab-home-current.png"),
- text: "商城"
- },
- {
- pagePath: "/pages/purchase/purchase",
- iconPath: require('@/static/tabBar/tab-home.png'),
- selectedIconPath: require("@/static/tabBar/tab-home-current.png"),
- text: "买入"
- },
- {
- pagePath: "/pages/sellout/sellout",
- iconPath: require("@/static/tabBar/tab-cate.png"),
- selectedIconPath: require("@/static/tabBar/tab-cate-current.png"),
- text: "卖出"
- },
- {
- pagePath: "/pages/appointment/appointment",
- iconPath: require("@/static/tabBar/tab-cart.png"),
- selectedIconPath: require("@/static/tabBar/tab-cart-current.png"),
- text: "我的预约"
- },
- {
- pagePath: "/pages/user/user",
- iconPath: require('@/static/tabBar/tab-home.png'),
- selectedIconPath: require("@/static/tabBar/tab-home-current.png"),
- text: "我的"
- },
- ]
- export const tabbar1 = [
- {
- pagePath: "/pages/index/index",
- iconPath: require('@/static/tabBar/tab-home.png'),
- selectedIconPath: require("@/static/tabBar/tab-home-current.png"),
- text: "商城"
- },
- {
- pagePath: "/pages/category/category",
- iconPath: require('@/static/tabBar/tab-home.png'),
- selectedIconPath: require("@/static/tabBar/tab-home-current.png"),
- text: "分类"
- },
- {
- pagePath: "/pages/user/user",
- iconPath: require('@/static/tabBar/tab-home.png'),
- selectedIconPath: require("@/static/tabBar/tab-home-current.png"),
- text: "我的"
- },
- ]
|