bonus-material-app/src/pages.json

137 lines
3.7 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/login/index",
"style": {
"navigationBarTitleText": "登录"
}
},
// 首页
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
}
},
// 工作台
{
"path": "pages/work/index",
"style": {
"navigationBarTitleText": "工作台"
}
},
// 我的
{
"path": "pages/my/index",
"style": {
"navigationBarTitleText": "我的"
}
},
/* */
// 验收
{
"path": "pages/new-purchase/accept/index",
"style": {
"navigationBarTitleText": "新购验收"
}
},
// 绑定
{
"path": "pages/new-purchase/bind/index",
"style": {
"navigationBarTitleText": "新购绑定"
}
},
// 入库
{
"path": "pages/new-purchase/entry/index",
"style": {
"navigationBarTitleText": "新购入库"
}
},
{
"path": "pages/new-purchase/accept/acceptDetails",
"style": {
"navigationBarTitleText": "新购验收"
}
},
{
"path": "pages/new-purchase/accept/conclusion",
"style": {
"navigationBarTitleText": "新购验收结论"
}
},
/* */
// 1. 主列表
{
"path": "pages/picking/outbound/index",
"style": {
"navigationBarTitleText": "领料出库"
}
},
{
"path": "pages/back/index",
"style": {
"navigationBarTitleText": "退料任务"
}
},
// 2. 详情
{
"path": "pages/picking/outbound/details",
"style": {
"navigationBarTitleText": "出库详情"
}
},
// 3. 编码出库
{
"path": "pages/picking/outbound/code-outbound",
"style": {
"navigationBarTitleText": "编码出库"
}
},
// 4. 数量出库
{
"path": "pages/picking/outbound/num-outbound",
"style": {
"navigationBarTitleText": "数量出库"
}
}
],
"tabBar": {
"color": "#2c2c2c",
"selectedColor": "#1296db",
"borderStyle": "black",
"backgroundColor": "#FFFFFF",
"iconWidth": "24px",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/home.png",
"selectedIconPath": "static/homeSelected.png"
},
{
"pagePath": "pages/work/index",
"text": "工作台",
"iconPath": "static/my.png",
"selectedIconPath": "static/mySelected.png"
},
{
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "static/workSpace.png",
"selectedIconPath": "static/workSpaceSelected.png"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#dcf4ff",
"backgroundColor": "#f8f8f8"
}
}