HimoolERP/erp_mobile/pages.json
2022-06-07 16:07:33 +08:00

89 lines
2.1 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/index",
"style": {
"navigationBarTitleText": "首页",
"enablePullDownRefresh": false
}
},
{
"path": "pages/login/index",
"style": {
"navigationBarTitleText": "登录",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
{
"path": "pages/productList/index",
"style": {
"navigationBarTitleText": "产品管理",
"enablePullDownRefresh": true
}
},
{
"path": "pages/productCreateForm/index",
"style": {
"navigationBarTitleText": "新增产品",
"enablePullDownRefresh": false
}
},
{
"path": "pages/productUpdateForm/index",
"style": {
"navigationBarTitleText": "编辑产品",
"enablePullDownRefresh": false
}
},
{
"path": "pages/batchReport/index",
"style": {
"navigationBarTitleText": "批次报表",
"enablePullDownRefresh": true
}
},
{
"path": "pages/stockInTask/index",
"style": {
"navigationBarTitleText": "入库任务",
"enablePullDownRefresh": false
}
},
{
"path": "pages/stockInForm/index",
"style": {
"navigationBarTitleText": "入库商品",
"enablePullDownRefresh": false
}
},
{
"path": "pages/stockOutTask/index",
"style": {
"navigationBarTitleText": "出库任务",
"enablePullDownRefresh": false
}
},
{
"path": "pages/stockOutForm/index",
"style": {
"navigationBarTitleText": "出库商品",
"enablePullDownRefresh": false
}
},
{
"path": "pages/stockCheckForm/index",
"style": {
"navigationBarTitleText": "盘点",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#3c9cff",
"backgroundColor": "#F8F8F8"
}
}