维信小程序限制总包不能超过20M,因此大多数只要多个页面的都要进行分包配置,
每个分包的代码不超过10M。
注意事项:
1.分包的tabbar切换的页面必须在page里面配置了
pages.json的代码如下
{
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "诉求提交",
"navigationBarBackgroundColor": "#21c99f", // 顶部背景颜色
"navigationBarTextStyle": "white" // 顶部文字颜色
}
},
{
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": true,
"navigationStyle": "custom",
"app-plus": {
"titleNView": false
}
}
},
{
"path": "pages/packageA/survey/index",
"style": {