Files
hazardousWaste_app/pages.json

94 lines
2.7 KiB
JSON
Raw Normal View History

2026-03-11 15:03:49 +08:00
{
"easycom": {
"autoscan": true,
"custom": {
"^uv-(.*)": "@climblee/uv-ui/components/uv-$1/uv-$1.vue"
}
},
"pages": [
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录"
},
"app-plus": {
"titleNView": false,
"tabBar": false
}
},
{
"path": "pages/index/index",
"style": { "navigationBarTitleText": "首页" }
},
{
"path": "pages/warehousing/index",
"style": { "navigationBarTitleText": "仓储" }
},
{
"path": "pages/intelligent/index",
"style": { "navigationBarTitleText": "智能" }
},
{
"path": "pages/my/index",
"style": { "navigationBarTitleText": "我的" }
2026-03-20 09:45:13 +08:00
},
{
"path": "pages/uniqueCode/issueUniqueCode/index",
"style": { "navigationBarTitleText": "唯一码发放" }
},
{
"path": "pages/uniqueCode/issueUniqueCode/materialSelection",
"style": { "navigationBarTitleText": "物料选择" }
},
{
"path": "pages/uniqueCode/myUniqueCode/index",
"style": { "navigationBarTitleText": "唯一码" }
},
{
"path": "pages/uniqueCode/myUniqueCode/detail",
"style": { "navigationBarTitleText": "唯一码详情" }
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "智汇仓储管理",
"navigationBarBackgroundColor": "#F5F5F5",
"backgroundColor": "#F5F5F5"
},
// 底部 tabBar 核心配置
"tabBar": {
"color": "#666", // 未选中文字颜色
"selectedColor": "#007AFF", // 选中文字颜色
"backgroundColor": "#fff", // 导航栏背景色
"borderStyle": "black", // 上边框样式black/white
"height": "50px", // 导航栏高度App 端建议 50px 左右)
"list": [
{
"pagePath": "pages/index/index", // 必须和 pages 中的路径一致
"text": "首页", // 底部文字
"iconPath": "static/icon/home.png", // 未选中图标(建议 28x28px
"selectedIconPath": "static/icon/home-active.png"
},
{
"pagePath": "pages/warehousing/index",
"text": "仓储",
"iconPath": "static/icon/warehousing.png",
"selectedIconPath": "static/icon/warehousing-active.png"
},
{
"pagePath": "pages/intelligent/index",
"text": "智能",
"iconPath": "static/icon/intelligent.png",
"selectedIconPath": "static/icon/intelligent-active.png"
},
{
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "static/icon/my.png",
"selectedIconPath": "static/icon/my-active.png"
}
]
},
"uniIdRouter": {}
2026-03-11 15:03:49 +08:00
}