1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "pages": [
- "pages/index/index",
- "pages/success/success",
- "pages/interview-notice/interview-notice",
- "pages/identity-verify/identity-verify",
- "pages/face-photo/face-photo",
- "pages/camera/camera",
- "pages/my/my"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "面试系统",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#007AFF",
- "borderStyle": "black",
- "backgroundColor": "#FFFFFF",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/home_active.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/my/my",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/my_active.png",
- "text": "我的"
- }
- ]
- },
- "usingComponents": {}
- }
|