From e9a7cddce776382916e975402986144a88899ac5 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期四, 14 五月 2026 18:29:14 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/gtzxinglijicun
---
small-program/pages/storage-point/storage-point.vue | 24 ++++++++++++++++++++----
1 files changed, 20 insertions(+), 4 deletions(-)
diff --git a/small-program/pages/storage-point/storage-point.vue b/small-program/pages/storage-point/storage-point.vue
index c45169e..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>
@@ -134,7 +134,7 @@
</view>
</view>
</view>
- <auth-login v-if="showLogin" @close="showLogin = false"></auth-login>
+ <auth-login :show="showLogin" @close="showLogin = false"></auth-login>
</view>
</template>
@@ -281,6 +281,7 @@
let arr = []
res.data.records.forEach(item => {
let obj = {
+ id: item.id,
shopId: item.id,
name: item.name,
address: item.address,
@@ -384,11 +385,13 @@
this.showLogin = true
return
}
+ uni.setStorageSync('selectedStore', this.activeStore)
uni.navigateTo({
url: '/pages/luggage-storage/luggage-storage'
})
},
goShopDetails(item){
+ console.log(item)
uni.navigateTo({
url: '/pages/storage-point-detail/storage-point-detail?id='+item.id
})
@@ -848,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