| | |
| | | |
| | | <view class="recommend-list"> |
| | | <template v-if="pointList.length > 0"> |
| | | <view v-for="(item, index) in pointList" :key="index" class="point-card" @click="goStoragePage(item)"> |
| | | <view v-for="(item, index) in pointList" :key="index" class="point-card" @click="goShopDetails(item)"> |
| | | <view class="point-thumb"> |
| | | <image class="point-thumb-image" :src="item.coverImg" mode="widthFix"></image> |
| | | </view> |
| | |
| | | } |
| | | }); |
| | | }, |
| | | goShopDetails(item){ |
| | | uni.navigateTo({ |
| | | url: '/pages/storage-point-detail/storage-point-detail?id='+item.id |
| | | }) |
| | | }, |
| | | goStoragePage() { |
| | | if (!this.cityId) return uni.showToast({ |
| | | title: '当前城市暂未开通', |