123456789101112131415161718192021222324252627282930313233343536373839404142 |
- export const tabbar = {
- color: "#9A9A9A",
- selectedColor: "#323C5B",
- borderStyle: "black",
- backgroundColor: "#ffffff",
- list: [{
- pagePath: "/pages/index/index",
- iconPath: "../static/tabbar/tab-home.png",
- selectedIconPath: "../static/tabbar/tab-home-current.png",
- text: "在线评价",
- }, {
- pagePath: "/pages/user/user",
- iconPath: "../static/tabbar/tab-my.png",
- selectedIconPath: "../static/tabbar/tab-my-current.png",
- text: "个人中心"
- }]
- }
- export const tabbar1 = {
- color: "#9A9A9A",
- selectedColor: "#323C5B",
- borderStyle: "black",
- backgroundColor: "#ffffff",
- list: [{
- pagePath: "/pages/index/index",
- iconPath: "../static/tabbar/tab-home.png",
- selectedIconPath: "../static/tabbar/tab-home-current.png",
- text: "在线评价",
- },
- {
- pagePath: "/pages/user/grade",
- iconPath: "../static/tabbar/tab-grade.png",
- selectedIconPath: "../static/tabbar/tab-grade-current.png",
- text: "我的得分"
- }, {
- pagePath: "/pages/user/user",
- iconPath: "../static/tabbar/tab-my.png",
- selectedIconPath: "../static/tabbar/tab-my-current.png",
- text: "个人中心"
- }
- ]
- }
|