36 lines
945 B
JSON
36 lines
945 B
JSON
{
|
||
"easycom": {
|
||
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
|
||
},
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/index/index",
|
||
"style": {
|
||
"navigationBarTitleText": "经纬度拾取",
|
||
"navigationStyle": "custom", // 隐藏系统导航栏
|
||
"navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
|
||
}
|
||
}, {
|
||
"path": "pages/listPage/listPage",
|
||
"style": {
|
||
"navigationBarTitleText": "设备列表",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
|
||
}, {
|
||
"path": "pages/addEquip/addEquip",
|
||
"style": {
|
||
"navigationBarTitleText": "新增设备",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
|
||
}
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "经纬度拾取",
|
||
"navigationBarBackgroundColor": "#F8F8F8",
|
||
"backgroundColor": "#F8F8F8"
|
||
}
|
||
}
|