| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "pages": [
- "pages/index/index",
- "pages/my/my",
- "pages/personal/personal"
- ],
- "window": {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#fff",
- "navigationBarTitleText": "首页",
- "navigationBarTextStyle": "black"
- },
- "sitemapLocation": "sitemap.json",
- "usingComponents": {
- "t-tab-bar": "tdesign-miniprogram/tab-bar/tab-bar",
- "t-tab-bar-item": "tdesign-miniprogram/tab-bar/tab-bar-item",
- "t-icon": "tdesign-miniprogram/icon/icon"
- },
- "tabBar": {
- "custom": true,
- "color": "#000000",
- "selectedColor": "#000000",
- "backgroundColor": "#000000",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的"
- }
- ]
- }
- }
|