a7e056643e
- cashier-mobile: 收银系统移动端(uni-app) - customer-mobile: 顾客端移动端(uni-app) - 包含基础页面结构:首页、订单、会员 - 更新 AGENTS.md 配置
45 lines
863 B
JSON
45 lines
863 B
JSON
{
|
|
"pages": [
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationBarTitleText": "收银台"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/order/order",
|
|
"style": {
|
|
"navigationBarTitleText": "订单管理"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/member/member",
|
|
"style": {
|
|
"navigationBarTitleText": "会员管理"
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "收银系统",
|
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|
"backgroundColor": "#F8F8F8"
|
|
},
|
|
"tabBar": {
|
|
"list": [
|
|
{
|
|
"pagePath": "pages/index/index",
|
|
"text": "收银"
|
|
},
|
|
{
|
|
"pagePath": "pages/order/order",
|
|
"text": "订单"
|
|
},
|
|
{
|
|
"pagePath": "pages/member/member",
|
|
"text": "会员"
|
|
}
|
|
]
|
|
}
|
|
}
|