100 lines
2.5 KiB
JSON
100 lines
2.5 KiB
JSON
{ "easycom": {
|
||
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
|
||
},
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
|
||
{
|
||
"path" : "pages/login/login",
|
||
"style" :
|
||
{
|
||
"navigationBarTitleText": "登录",
|
||
"enablePullDownRefresh": false,
|
||
"navigationStyle": "custom"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/index/index",//首页
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/workbench/workbench",//工作台
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/my/my",//我的
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/samples/collectSamples",//收样管理
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/samples/searchCollect",//收样管理-搜索
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/samples/collectDevices",//收样管理-收样设备
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/samples/addDevice",//收样管理-收样设备
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/test/testList",//试验管理-列表
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/test/testDetail",//试验管理-详情
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/test/organization",//试验管理-编制
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
},{
|
||
"path" : "pages/test/testInfoFill",//试验管理-填写
|
||
"style": {
|
||
"navigationStyle": "custom"
|
||
}
|
||
}
|
||
],
|
||
"tabBar": {
|
||
// "custom": true, // 启用自定义tabBar
|
||
// "usingComponents": true, // 开启自定义组件模式
|
||
// "customTabBar": "./components/custom-tab/custom-tab", // 自定义tabBar组件的路径
|
||
"backgroundColor": "#fff",
|
||
"color": "#000000",
|
||
"selectedColor":"#0052D9",
|
||
"borderStyle": "black",
|
||
"list": [{
|
||
"text": "首页",
|
||
"pagePath": "pages/index/index"
|
||
}, {
|
||
"text": "工作台",
|
||
"pagePath": "pages/workbench/workbench"
|
||
}, {
|
||
"text": "我的",
|
||
"pagePath": "pages/my/my"
|
||
}]
|
||
|
||
},
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app",
|
||
"navigationBarBackgroundColor": "#fff",
|
||
"backgroundColor": "#fff"
|
||
},
|
||
"uniIdRouter": {}
|
||
}
|