| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": ""
- }
- }
- ],
- "subpackages": [
- {
- "root": "src",
- "pages": [
- {
- "path": "roomkit/pages/home",
- "style": {
- "navigationBarTitleText": "home"
- }
- },
- {
- "path": "roomkit/pages/room",
- "style": {
- "navigationBarTitleText": "room",
- "navigationStyle": "custom",
- "app-plus": {
- "titleView": false
- }
- }
- },
- {
- "path": "roomkit/TUIKit/components/TUIChat/index",
- "style": {
- "navigationBarTitleText": "聊天"
- }
- },
- {
- "path": "roomkit/TUIKit/components/TUIChat/video-play",
- "style": {
- "navigationBarTitleText": "腾讯云 IM"
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "app-plus": {
- "titleView": false
- }
- }
- }
|