12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--nova-tourism/components/collect/index.wxml-->
- <nav type="title" background-color="#ffffff" frontColor="#000000" title="望仙谷" />
- <view class="all" style="height: {{contentHeight}}rpx;">
- <image class="img" src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241121/jc17lo114657420.jpg"></image>
- <van-tabs active="{{ active }}" color='#B2CEB9' title-inactive-color='#969696' title-active-color='#B2CEB9'>
- <van-tab title="云上风物">
- </van-tab>
- <!-- 我的收藏 -->
- <van-tab title="我的收藏">
- <!-- 卡片 -->
- <view class="Legendary-Information" wx:if="{{storeList.length!=0}}">
- <block wx:for="{{storeList}}" wx:if="{{item.isCollect}}">
- <view class="cardbox">
- <image class="pic" src="{{item.homestayStore.image[0]}}" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl"></image>
- <view class="textobx">
- <view class="title" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl">
- <view class="til">{{item.homestayStore.storeName}}</view>
- <image class="collect" wx:if="{{!item.isCollect}}" src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241121/2gcp1e030048570.png?imageView2/1/w/200/h/200"></image>
- <image class="collect" wx:if="{{item.isCollect}}" src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241121/8mp9uj030058190.png?imageView2/1/w/200/h/200"></image>
- </view>
- <view class="miaosu" wx:if="{{item.homestayStore.desc}}" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl">
- {{item.homestayStore.desc}}
- </view>
- <view class="bottom">
- <view class="qian" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl">
- ¥
- <view class="numbox">
- {{item.homestayStore.perCapita}}
- </view>
- </view>
- <view class="soucang" wx:if="{{!item.isCollect}}" data-id="{{item.homestayStore.objectId}}" bindtap="submit">收藏</view>
- <view class="soucang" wx:if="{{item.isCollect}}" data-id="{{item.homestayStore.objectId}}" bindtap="cancle">取消</view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </van-tab>
- </van-tabs>
- </view>
|