feat: 初始化 uni-app 移动端项目

- cashier-mobile: 收银系统移动端(uni-app)
- customer-mobile: 顾客端移动端(uni-app)
- 包含基础页面结构:首页、订单、会员
- 更新 AGENTS.md 配置
This commit is contained in:
2026-06-04 08:31:05 +08:00
parent a8d6fafb71
commit a7e056643e
17 changed files with 620 additions and 25 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"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": "会员"
}
]
}
}