2024-11-18 09:05:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
"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": "新购入库"
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
2024-11-19 10:32:24 +08:00
|
|
|
|
"path": "pages/new-purchase/accept/acceptDetails",
|
|
|
|
|
|
"style": {
|
|
|
|
|
|
"navigationBarTitleText": "新购验收"
|
|
|
|
|
|
}
|
2024-11-18 09:05:38 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2024-11-19 10:32:24 +08:00
|
|
|
|
"path": "pages/new-purchase/accept/conclusion",
|
|
|
|
|
|
"style": {
|
|
|
|
|
|
"navigationBarTitleText": "新购验收结论"
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
/* 领料及其页面 */
|
2024-11-19 14:52:39 +08:00
|
|
|
|
|
|
|
|
|
|
// 1. 主列表
|
2024-11-19 10:32:24 +08:00
|
|
|
|
{
|
|
|
|
|
|
"path": "pages/picking/outbound/index",
|
|
|
|
|
|
"style": {
|
|
|
|
|
|
"navigationBarTitleText": "领料出库"
|
|
|
|
|
|
}
|
2024-11-19 15:06:06 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
"path": "pages/back/index",
|
|
|
|
|
|
"style": {
|
|
|
|
|
|
"navigationBarTitleText": "退料任务"
|
|
|
|
|
|
}
|
2024-11-19 15:07:55 +08:00
|
|
|
|
},
|
2024-11-19 14:52:39 +08:00
|
|
|
|
// 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": "数量出库"
|
|
|
|
|
|
}
|
2024-11-18 09:05:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
"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"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|