From f2b6fdd955f8ac6e5b351e0b5e3a9f583ed6da2e Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期四, 30 四月 2026 15:26:05 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 small-program/pages/storage-point-detail/storage-point-detail.vue |   22 ++++++++++++++--------
 1 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/small-program/pages/storage-point-detail/storage-point-detail.vue b/small-program/pages/storage-point-detail/storage-point-detail.vue
index 99613fd..541e289 100644
--- a/small-program/pages/storage-point-detail/storage-point-detail.vue
+++ b/small-program/pages/storage-point-detail/storage-point-detail.vue
@@ -31,11 +31,12 @@
 					<text class="popup-section-text">{{ activeStore.feeStandard || ''}}</text>
 				</view>
 				</view>
-			<!-- <view class="popup-footer">
+			<view class="popup-footer">
 				  <view class="popup-btn ghost" @click="contactStore">鑱旂郴闂ㄥ簵</view>  
 				<view class="popup-btn primary" @click="storeLuggage">琛屾潕瀵勫瓨</view>
-			</view> -->
+			</view>
 		</view>
+		<auth-login :show="showLogin" @close="showLogin = false"></auth-login>
 	</view>
 </template>
 
@@ -45,13 +46,15 @@
 		data() {
 			return { 
 				id:null,
-				activeStore: {} 
+				activeStore: {},
+				showLogin: false
 			}
 		},
 		computed: {
-			...mapState(['latitude', 'longitude'])
+			...mapState(['latitude', 'longitude', 'token'])
 		},
 		async onLoad(options) {
+			console.log(options)
 				this.id = options.id
 				this.getShopInfo()
 		}, 
@@ -96,12 +99,15 @@
 				})
 			},
 			contactStore() {
-				uni.showToast({
-					title: '鑱旂郴闂ㄥ簵寰呮帴鍏�',
-					icon: 'none'
-				})
+				uni.makePhoneCall({
+					phoneNumber: this.activeStore.linkPhone
+				});
 			},
 			storeLuggage() {
+				if (!this.token) {
+					this.showLogin = true
+					return
+				}
 				uni.navigateTo({
 					url: '/pages/luggage-storage/luggage-storage'
 				})

--
Gitblit v1.9.3