| | |
| | | <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> |
| | | |
| | |
| | | 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() |
| | | }, |
| | |
| | | }) |
| | | }, |
| | | storeLuggage() { |
| | | if (!this.token) { |
| | | this.showLogin = true |
| | | return |
| | | } |
| | | uni.navigateTo({ |
| | | url: '/pages/luggage-storage/luggage-storage' |
| | | }) |