MrShi
2026-04-28 bfd70830b78bc42e0a284baa044efacc29897cd5
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()
      }, 
@@ -102,6 +105,10 @@
            })
         },
         storeLuggage() {
            if (!this.token) {
               this.showLogin = true
               return
            }
            uni.navigateTo({
               url: '/pages/luggage-storage/luggage-storage'
            })