pages.json 2.11 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app",
"navigationStyle":"custom"
}
},
{
"path": "pages/accredit/accredit",
"style":{
"navigationBarTitleText": "",
"navigationStyle":"custom"
}
},
{
"path": "pages/home/index",
"style":{
"navigationBarTitleText": "智慧院前急救平台",
"navigationBarBackgroundColor": "#538DEB",
"navigationBarTextStyle": "black" // 设置导航栏文字颜色为黑色
}
},
{
"path": "pages/lnformation/index",
"style":{
"navigationBarTitleText": "个人信息",
"navigationBarBackgroundColor": "#F5F5F7",
"navigationBarTextStyle": "black" // 设置导航栏文字颜色为黑色
}
},
{
"path": "pages/Intelligent/index",
"style":{
"navigationBarTitleText": "智能建档",
"navigationBarBackgroundColor": "#538DEB",
"navigationBarTextStyle": "black" // 设置导航栏文字颜色为黑色
}
},
{
"path": "pages/cardscanning/index",
"style":{
"navigationBarTitleText": "身份证扫描",
"navigationBarBackgroundColor": "#538DEB",
"navigationBarTextStyle": "black" // 设置导航栏文字颜色为黑色
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"backgroundColor": "#fff",
"borderStyle": "black",
"color": "#8e8e92",
"selectedColor": "#5591af",
"spacing":"20rpx",
"list": [
{
"pagePath": "pages/home/index", // 页面路径
"text": "首页", // 按钮文字
"iconPath":"static/shouye1.png",
"selectedIconPath":"static/shouye.png",
"fontSize":"30rpx"
},
{
"pagePath": "pages/lnformation/index", // 页面路径
"text": "我的" ,// 按钮文字
"iconPath":"static/my.png",
"selectedIconPath":"static/my1.png",
"fontSize":"30rpx"
}
]
},
"uniIdRouter": {}
}