[ app.json 文件内容错误] app.json: style 字段需为 v2(env: Windows,mp,1.06.2306020; lib: 3.3.1)
时间: 2024-06-14 14:07:14 浏览: 167
某app的 json文件
根据提供的引用内容,app.json文件中的"style"字段需要设置为"v2(env: Windows,mp,1.06.2306020; lib: 3.3.1)"。下面是一个示例:
```json
{
"tabBar": {
"list": [
{
"iconPath": "static/tab_icons/home.png",
"selectedIconPath": "static/tab_icons/home_selected.png",
"pagePath": "pages/home/index",
"text": "首页"
},
{
"iconPath": "static/tab_icons/cate.png",
"selectedIconPath": "static/tab_icons/cate_selected.png", "pagePath": "pages/category/index",
"text": "分类"
},
{
"iconPath": "static/tab_icons/cart.png",
"selectedIconPath": "static/tab_icons/cart_selected.png",
"pagePath": "pages/cart/index",
"text": "购物车"
},
{
"iconPath": "static/tab_icons/user.png",
"selectedIconPath": "static/tab_icons/user_selected.png",
"pagePath": "pages/user/index",
"text": "我的"
}
],
"style": "v2(env: Windows,mp,1.06.2306020; lib: 3.3.1)"
}
}
```
阅读全文