配置更新
parent
25696efd13
commit
aa8b994082
|
|
@ -61,7 +61,18 @@
|
|||
"desc" : "你的位置将用于小程序中相应业务位置服务使用"
|
||||
}
|
||||
},
|
||||
"plugins" : {}
|
||||
"plugins" : {
|
||||
// 直播(需要开通权限 https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/liveplayer/live-player-plugin.html)
|
||||
"live-player-plugin": {
|
||||
"version": "1.3.0",
|
||||
"provider": "wx2b03c6e691cd7370"
|
||||
},
|
||||
// 好物推荐(需要开通权限 https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx56c8f077de74b07c&token=1011820682&lang=zh_CN)
|
||||
"goodsSharePlugin": {
|
||||
"version": "4.0.1",
|
||||
"provider": "wx56c8f077de74b07c"
|
||||
}
|
||||
}
|
||||
},
|
||||
"mp-alipay" : {
|
||||
"usingComponents" : true
|
||||
|
|
|
|||
91
pages.json
91
pages.json
|
|
@ -72,7 +72,12 @@
|
|||
"style": {
|
||||
"enablePullDownRefresh": true,
|
||||
"navigationBarTitleText": "商品详情",
|
||||
"navigationStyle": "custom"
|
||||
"navigationStyle": "custom",
|
||||
// #ifdef MP-WEIXIN
|
||||
"usingComponents": {
|
||||
"share-button": "plugin://goodsSharePlugin/share-button"
|
||||
}
|
||||
// #endif
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
@ -622,61 +627,43 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"permission": {
|
||||
"scope.userLocation": {
|
||||
"desc": "你的位置将用于小程序中相应业务位置服务使用"
|
||||
}
|
||||
},
|
||||
"subPackages": [],
|
||||
"tabBar": {
|
||||
"color": "#8a8a8a",
|
||||
"selectedColor": "#f6c133",
|
||||
"backgroundColor": "#fff",
|
||||
"list": [
|
||||
{
|
||||
"pagePath": "pages/index/index",
|
||||
"iconPath": "/static/images/common/tabbar/home.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/home.png",
|
||||
"text": "首页"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/goods-category/goods-category",
|
||||
"iconPath": "/static/images/common/tabbar/category.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/category.png",
|
||||
"text": "分类"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/cart/cart",
|
||||
"iconPath": "/static/images/common/tabbar/cart.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/cart.png",
|
||||
"text": "购物车"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/user/user",
|
||||
"iconPath": "/static/images/common/tabbar/user.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/user.png",
|
||||
"text": "我的"
|
||||
}
|
||||
]
|
||||
},
|
||||
"networkTimeout": {
|
||||
"request": 10000,
|
||||
"downloadFile": 10000
|
||||
},
|
||||
"plugins": {
|
||||
// 微信小程序直播
|
||||
"live-player-plugin": {
|
||||
"version": "1.3.0",
|
||||
"provider": "wx2b03c6e691cd7370"
|
||||
}
|
||||
},
|
||||
"debug": true,
|
||||
"sitemapLocation": "sitemap.json",
|
||||
"globalStyle": {
|
||||
"navigationBarTitleText": "ShopXO-globalStyle",
|
||||
"navigationBarTitleText": "ShopXO开源商城",
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationBarBackgroundColor": "#fff",
|
||||
"backgroundColor": "#f5f5f5",
|
||||
"backgroundColorBottom": "#f5f5f5"
|
||||
}
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#8a8a8a",
|
||||
"selectedColor": "#f6c133",
|
||||
"backgroundColor": "#fff",
|
||||
"list": [
|
||||
{
|
||||
"pagePath": "pages/index/index",
|
||||
"iconPath": "/static/images/common/tabbar/home.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/home.png",
|
||||
"text": "首页"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/goods-category/goods-category",
|
||||
"iconPath": "/static/images/common/tabbar/category.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/category.png",
|
||||
"text": "分类"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/cart/cart",
|
||||
"iconPath": "/static/images/common/tabbar/cart.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/cart.png",
|
||||
"text": "购物车"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/user/user",
|
||||
"iconPath": "/static/images/common/tabbar/user.png",
|
||||
"selectedIconPath": "/static/images/yellow/tabbar/user.png",
|
||||
"text": "我的"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue