refactor: 重命名 customer-mobile 为 cashier-customer

统一收银相关项目命名:
- cashier-mobile: 收银端(店员使用)
- cashier-customer: 顾客端(顾客使用)

更新所有相关配置和引用
This commit is contained in:
2026-06-04 08:32:24 +08:00
parent a7e056643e
commit 106e1c14fe
11 changed files with 8 additions and 8 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": "我的"
}
]
}
}