From 9e6e446c4c9972d55aa9b8054d1dc57900a60773 Mon Sep 17 00:00:00 2001
From: wangxiaowei <1121133807@qq.com>
Date: Sun, 14 Dec 2025 19:33:30 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=AE=BE=E5=A4=87=E7=AE=A1?=
=?UTF-8?q?=E7=90=86=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages.json | 10 +-
src/pages/store/store.vue | 338 ++++++++++++++++++++++++++++++++++++++
src/tabbar/config.ts | 2 +-
3 files changed, 348 insertions(+), 2 deletions(-)
create mode 100644 src/pages/store/store.vue
diff --git a/src/pages.json b/src/pages.json
index 62f01a8..51547ba 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -40,7 +40,7 @@
{
"iconPath": "static/tabbar/store.png",
"selectedIconPath": "static/tabbar/store_s.png",
- "pagePath": "pages/login/login",
+ "pagePath": "pages/store/store",
"text": "门店管理"
},
{
@@ -199,6 +199,14 @@
"navigationStyle": "custom"
}
},
+ {
+ "path": "pages/store/store",
+ "type": "page",
+ "layout": "tabbar",
+ "style": {
+ "navigationStyle": "custom"
+ }
+ },
{
"path": "pages/share/tea-room/share-order-detail",
"type": "page",
diff --git a/src/pages/store/store.vue b/src/pages/store/store.vue
new file mode 100644
index 0000000..8a4d2bd
--- /dev/null
+++ b/src/pages/store/store.vue
@@ -0,0 +1,338 @@
+
+ {
+ "layout": "tabbar",
+ "style": {
+ "navigationStyle": "custom"
+ }
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ isLogin ? user.nickname : '立即登录' }}
+
+
+
+ 账号: {{ formatAccount(user.account || user.mobile) }}
+
+
+
+
+
+
+
+
+
+ ¥{{ isLogin ? user.user_money : '0.00' }}
+
+
+
+ 钱包余额
+
+
+
+
+
+
+
+
+
+ 门店茶址24小时智能茶室(中新店)地址
+
+
+ 抖音uid:
+ {{ storeInfo.douyin_uid || '236598984587' }}
+
+
+ 门店地址:
+ {{ storeInfo.address || '上海浦东新区新金桥路58号新银东大厦 15楼F室' }}
+
+
+
+ 营业时间:
+ {{ storeInfo.business_hours || '08:00-22:00' }}
+
+
+
+ 修改
+
+
+
+ 联系电话:
+ {{ storeInfo.contact_phone || '021-8888888' }}
+
+
+
+
+
+
+ 门店视频/图片
+
+
+
+
+
+
+
+
+
+
+ +{{ item.overlay }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/tabbar/config.ts b/src/tabbar/config.ts
index bf2529c..b8f1256 100644
--- a/src/tabbar/config.ts
+++ b/src/tabbar/config.ts
@@ -50,7 +50,7 @@ export const nativeTabbarList: NativeTabBarItem[] = [
{
iconPath: 'static/tabbar/store.png',
selectedIconPath: 'static/tabbar/store_s.png',
- pagePath: 'pages/login/login',
+ pagePath: 'pages/store/store',
text: '门店管理',
},
{