73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
||
"name": "Tripellet",
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/index/index",
|
||
"style": {
|
||
"navigationBarTitleText": "首页"
|
||
}
|
||
},{
|
||
"path" : "pages/scan/index",
|
||
"style" : {
|
||
"navigationBarTitleText": "扫码",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
},{
|
||
"path" : "pages/setting/index",
|
||
"style" : {
|
||
"navigationBarTitleText": "设置",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
},{
|
||
"path" : "pages/login/login",
|
||
"style" : {
|
||
"navigationBarTitleText": "登录",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
}
|
||
],
|
||
"tabBar": {
|
||
"color": "#909399",
|
||
"selectedColor": "#303133",
|
||
"backgroundColor": "#FFFFFF",
|
||
"borderStyle": "black",
|
||
"list": [{
|
||
"pagePath": "pages/index/index",
|
||
"iconPath": "static/img/nav/home.png",
|
||
"selectedIconPath": "static/img/nav/home_active.png",
|
||
"text": "首页"
|
||
},{
|
||
"pagePath": "pages/scan/index",
|
||
"iconPath": "static/img/nav/scan.png",
|
||
"selectedIconPath": "static/img/nav/scan_active.png",
|
||
"text": "扫码"
|
||
},
|
||
{
|
||
"pagePath": "pages/setting/index",
|
||
"iconPath": "static/img/nav/setting.png",
|
||
"selectedIconPath": "static/img/nav/setting_active.png",
|
||
"text": "设置"
|
||
}
|
||
]
|
||
},
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app",
|
||
"navigationBarBackgroundColor": "#F8F8F8",
|
||
"backgroundColor": "#F8F8F8"
|
||
},
|
||
"dependencies": {
|
||
"vue-i18n": "^8.20.0"
|
||
},
|
||
"condition" : { //模式配置,仅开发期间生效
|
||
"current": 0, //当前激活的模式(list 的索引项)
|
||
"list": [
|
||
{
|
||
"name": "", //模式名称
|
||
"path": "", //启动页面,必选
|
||
"query": "" //启动参数,在页面的onLoad函数里面得到
|
||
}
|
||
]
|
||
}
|
||
}
|