123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- {
- "pages": [{
- "path": "pages/conversations",
- "style": {
- "navigationBarTitleText": "会话",
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTextStyle": "black",
- "app-plus": {
- "titleNView": true
- }
- }
- },
- {
- "path": "pages/login",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTextStyle": "white",
- "app-plus": {
- "titleNView": true
- }
- }
- },
- {
- "path": "pages/contacts",
- "style": {
- "navigationBarTitleText": "通讯录",
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "pages/mine",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "pages/privateChat",
- "style": {
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F1F1F1",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/qunfa",
- "style": {
- "navigationBarTitleText": "群发",
- "navigationBarBackgroundColor": "#F1F1F1",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/inquiry",
- "style": {
- /* "navigationBarTitleText": "询价",
- "navigationBarBackgroundColor": "#F1F1F1", */
- "navigationStyle": "custom",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/ck",
- "style": {
- "navigationBarTitleText": "供应商",
- "navigationBarBackgroundColor": "#F1F1F1",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/groupChat",
- "style": {
- "navigationBarTitleText": "群",
- "navigationBarBackgroundColor": "#F1F1F1",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/member",
- "style": {
- "navigationBarTitleText": "群成员",
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "pages/rtc/private/ring",
- "style": {
- "disableSwipeBack": true,
- "navigationBarTitleText": "",
- "disableScroll": true,
- "navigationStyle": "custom",
- "app-plus": {
- "backgroundColorTop": "transparent",
- "background": "transparent",
- "scrollIndicator": false
- }
- }
- },
- {
- "path": "pages/rtc/private/call",
- "style": {
- "disableSwipeBack": true,
- "navigationBarTitleText": "",
- "disableScroll": true,
- "navigationStyle": "custom",
- "app-plus": {
- "backgroundColorTop": "transparent",
- "background": "transparent",
- "scrollIndicator": false
- }
- }
- },
- {
- "path": "pages/rtc/private/dial",
- "style": {
- "disableSwipeBack": true,
- "navigationBarTitleText": "",
- "disableScroll": true,
- "navigationStyle": "custom",
- "app-plus": {
- "backgroundColorTop": "transparent",
- "background": "transparent",
- "scrollIndicator": false
- }
- }
- },
- {
- "path": "pages/rtc/group/ring",
- "style": {
- "disableSwipeBack": true,
- "navigationBarTitleText": "",
- "disableScroll": true,
- "navigationStyle": "custom",
- "app-plus": {
- "backgroundColorTop": "transparent",
- "background": "transparent",
- "scrollIndicator": false
- }
- }
- },
- {
- "path": "pages/rtc/group/call",
- "style": {
- "disableSwipeBack": true,
- "navigationBarTitleText": "",
- "disableScroll": true,
- "navigationStyle": "custom",
- "app-plus": {
- "backgroundColorTop": "transparent",
- "background": "transparent",
- "scrollIndicator": false
- }
- }
- },
- {
- "path": "pages/rtc/group/dial",
- "style": {
- "disableSwipeBack": true,
- "navigationBarTitleText": "",
- "disableScroll": true,
- "navigationStyle": "custom",
- "app-plus": {
- "backgroundColorTop": "transparent",
- "background": "transparent",
- "scrollIndicator": false
- }
- }
- },
- {
- "path" : "pages/rtc/group/chooseCallee",
- "style": {
- "navigationBarTitleText": "",
- "disableScroll": true,
- "navigationStyle": "custom",
- "app-plus": {
- "backgroundColorTop": "transparent",
- "background": "transparent",
- "scrollIndicator": false
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#F3F4F7",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#454750",
- "selectedColor": "#618DFF",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "height": "60px",
- "list": [{
- "pagePath": "pages/conversations",
- "iconPath": "static/images/msg.png",
- "selectedIconPath": "static/images/msg-active.png"
- },
- /* {
- "pagePath": "pages/contacts",
- "iconPath": "static/images/contacts.png",
- "selectedIconPath": "static/images/contacts-active.png"
- }, */
- {
- "pagePath": "pages/mine",
- "iconPath": "static/images/mine.png",
- "selectedIconPath": "static/images/mine-active.png"
- }
- ]
- },
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|