123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- {
- // "leftWindow": {
- // "path": "windows/left-window.vue",
- // "style": {
- // "width": "350px"
- // }
- // },
- // "topWindow": {
- // "path": "windows/top-window.vue",
- // "style": {
- // "height": "60px"
- // }
- // },
- "pages": [
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "subPackages": [{
- "root": "pages/home",
- "pages": [{
- "path": "inStock/index",
- "style": {
- "app-plus": {
- "titleNView": false,
- "enablePullDownRefresh": true
- }
- }
- }, {
- "path": "inStock/detail",
- "style": {
- "app-plus": {
- "titleNView": false
- }
- }
- }, {
- "path": "outStock/index",
- "style": {
- "app-plus": {
- "titleNView": false,
- "enablePullDownRefresh": true
- }
- }
- }, {
- "path": "outStock/detail",
- "style": {
- "app-plus": {
- "titleNView": false
- }
- }
- }, {
- "path": "tagQuery/index",
- "style": {
- "app-plus": {
- "titleNView": false,
- "enablePullDownRefresh": true
- }
- }
- },
- {
- "path": "addTags",
- "style": {
- "app-plus": {
- "titleNView": false
- }
- }
- }, {
- "path": "tagsDetail",
- "style": {
- "app-plus": {
- "titleNView": false
- }
- }
- }
- ]
- },
- {
- "root": "pages/login",
- "pages": [{
- "path": "index",
- "style": {
- "app-plus": {
- "titleNView": false
- }
- }
- }]
- }
- ],
- "globalStyle": {
- "pageOrientation": "portrait",
- "navigationBarTitleText": "Hello uniapp",
- "navigationBarTextStyle": "white",
- "navigationBarBackgroundColor": "#007AFF",
- "backgroundColor": "#F8F8F8",
- "backgroundColorTop": "#F4F5F6",
- "backgroundColorBottom": "#F4F5F6",
- "mp-360": {
- "navigationStyle": "custom"
- },
- "h5": {
- "maxWidth": 1190,
- "navigationBarTextStyle": "black",
- "navigationBarBackgroundColor": "#F1F1F1"
- }
- },
- "tabBar": {
- "color": "#6A6A6A",
- "selectedColor": "#0095FF",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/home/index",
- "iconPath": "static/image/home.png",
- "selectedIconPath": "static/image/homefill.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/me/index",
- "iconPath": "static/image/my.png",
- "selectedIconPath": "static/image/myfill.png",
- "text": "我的"
- }
- ]
- },
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|