| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/chat/chat",
- "style": {
- "app-plus": {
- "softinputNavBar": "none",
- "softinputMode": "adjustPan",
- "titleNView": {
- "autoBackButton":false,
- "buttons": [{
- "fontSrc": "/static/iconfont/iconfont.ttf",
- "float": "right",
- "text": "\ue626"
- }
- , {
- "fontSrc": "/static/iconfont/iconfont.ttf",
- "float": "left",
- "text": "\ue6f2",
- "color": "#303133",
- "background": "rgba(255,255,255,0)"
- }
- ]
- }
- }
- }
- },
- {
- "path": "pages/payPage/index",
- "style": {
- "navigationBarTitleText": "缴费",
- "navigationStyle": "custom",
- "app-plus": {
- "titleView": false
- }
- }
- },
- {
- "path": "pages/history/index",
- "style": {
- "navigationBarTitleText": "历史记录",
- "navigationStyle": "custom",
- "app-plus": {
- "titleView": false
- }
- }
- },
- {
- "path": "pages/historyDetail/index",
- "style": {
- "navigationBarTitleText": "历史记录详情",
- "navigationStyle": "custom",
- "app-plus": {
- "titleView": false
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "wechat",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "backgroundTextStyle":"light",
- "pageOrientation":"portrait",
- "app-plus": {
- "bounce": "none"
- }
- },
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|