From ce1248297e07cf5e409a37d43f2e0b54fcf86071 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期四, 14 五月 2026 18:29:06 +0800
Subject: [PATCH] 提交

---
 small-program/pages/storage-point/storage-point.vue |   20 +++++++++++++++++---
 1 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/small-program/pages/storage-point/storage-point.vue b/small-program/pages/storage-point/storage-point.vue
index 6658c44..bac46dd 100644
--- a/small-program/pages/storage-point/storage-point.vue
+++ b/small-program/pages/storage-point/storage-point.vue
@@ -118,12 +118,12 @@
 						<view class="popup-gap"></view>
 						<view class="popup-section">
 							<text class="popup-section-title">瀵勫瓨绫诲瀷</text>
-							<text class="popup-section-text">{{ activeStore.depositTypes }}</text>
+							<text class="popup-section-text">{{ activeStore.depositTypes || '' }}</text>
 						</view>
 						<view class="popup-gap"></view>
 						<view class="popup-section no-border">
 							<text class="popup-section-title">鏀惰垂鏍囧噯</text>
-							<text class="popup-section-text">{{ activeStore.feeStandard }}</text>
+							<text class="popup-section-text">{{ activeStore.feeStandard || '' }}</text>
 						</view>
 						</view>
 					</scroll-view>
@@ -385,6 +385,7 @@
 					this.showLogin = true
 					return
 				}
+				uni.setStorageSync('selectedStore', this.activeStore)
 				uni.navigateTo({
 					url: '/pages/luggage-storage/luggage-storage'
 				})
@@ -850,10 +851,23 @@
 		width: 24rpx;
 		height: 24rpx;
 		margin-right: 4rpx;
+		flex-shrink: 0;
+	}
+
+	.point-address text {
+		width: 425rpx;
+		display: -webkit-box;
+		-webkit-line-clamp: 2;
+		-webkit-box-orient: vertical;
+		overflow: hidden;
 	}
 
 	.point-time {
-		display: block;
+		width: 425rpx;
+		display: -webkit-box;
+		-webkit-line-clamp: 1;
+		-webkit-box-orient: vertical;
+		overflow: hidden;
 		margin-top: 20rpx;
 		line-height: 1.5;
 		font-weight: 400;

--
Gitblit v1.9.3