1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "pages": [
- "pages/home/home",
- "pages/message/message",
- "pages/contact/contact"
- ],
- "window": {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#13A7A0",
- "navigationBarTitleText": "WeChat",
- "navigationBarTextStyle": "black"
- },
- "tabBar": {
- "list": [
- {
- "pagePath": "pages/home/home",
- "text": "首页",
- "iconPath": "/images/tabs/home.png",
- "selectedIconPath": "/images/tabs/home-active.png"
- },
- {
- "pagePath": "pages/message/message",
- "text": "消息",
- "iconPath": "/images/tabs/message.png",
- "selectedIconPath": "/images/tabs/message-active.png"
- },
- {
- "pagePath": "pages/contact/contact",
- "text": "联系我们",
- "iconPath": "/images/tabs/contact.png",
- "selectedIconPath": "/images/tabs/contact-active.png"
- }
- ]
- },
- "style": "v2",
- "sitemapLocation": "sitemap.json",
- "usingComponents": {
- "my-test1": "/components/test/test",
- "my-test2": "/components/test2/test2",
- "my-test3": "/components/test3/test3",
- "my-test4": "/components/test4/test4",
- "my-test5": "/components/test5/test5"
- }
- }
|