Files
todo-frontend/src/pages.json
Agent ab0d500308
All checks were successful
continuous-integration/drone/push Build is passing
feat: 新增商品详情页,点击商品卡片可查看详情
2026-03-27 15:12:55 +00:00

105 lines
2.1 KiB
JSON

{
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/login/index",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/product/list",
"style": {
"navigationBarTitleText": "商品列表"
}
},
{
"path": "pages/product/manage",
"style": {
"navigationBarTitleText": "商品管理"
}
},
{
"path": "pages/product/select",
"style": {
"navigationBarTitleText": "选择商品"
}
},
{
"path": "pages/product/detail",
"style": {
"navigationBarTitleText": "商品详情"
}
},
{
"path": "pages/order/create",
"style": {
"navigationBarTitleText": "创建订单"
}
},
{
"path": "pages/order/list",
"style": {
"navigationBarTitleText": "订单列表"
}
},
{
"path": "pages/stock/list",
"style": {
"navigationBarTitleText": "库存管理"
}
},
{
"path": "pages/stock/in",
"style": {
"navigationBarTitleText": "入库"
}
},
{
"path": "pages/stock/flow",
"style": {
"navigationBarTitleText": "库存流水"
}
},
{
"path": "pages/category/index",
"style": {
"navigationBarTitleText": "种类管理"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "建材销售管家",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/product/list",
"text": "商品"
},
{
"pagePath": "pages/order/list",
"text": "订单"
}
]
},
"customerHidePages": [
]
}