index.wxml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!--nova-tourism/components/collect/index.wxml-->
  2. <nav type="title" background-color="#ffffff" frontColor="#000000" title="望仙谷" />
  3. <view class="all" style="height: {{contentHeight}}rpx;">
  4. <image class="img" src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241121/jc17lo114657420.jpg"></image>
  5. <van-tabs active="{{ active }}" color='#B2CEB9' title-inactive-color='#969696' title-active-color='#B2CEB9'>
  6. <van-tab title="云上风物">
  7. </van-tab>
  8. <!-- 我的收藏 -->
  9. <van-tab title="我的收藏">
  10. <!-- 卡片 -->
  11. <view class="Legendary-Information" wx:if="{{storeList.length!=0}}">
  12. <block wx:for="{{storeList}}" wx:if="{{item.isCollect}}">
  13. <view class="cardbox">
  14. <image class="pic" src="{{item.homestayStore.image[0]}}" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl"></image>
  15. <view class="textobx">
  16. <view class="title" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl">
  17. <view class="til">{{item.homestayStore.storeName}}</view>
  18. <image class="collect" wx:if="{{!item.isCollect}}" src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241121/2gcp1e030048570.png?imageView2/1/w/200/h/200"></image>
  19. <image class="collect" wx:if="{{item.isCollect}}" src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241121/8mp9uj030058190.png?imageView2/1/w/200/h/200"></image>
  20. </view>
  21. <view class="miaosu" wx:if="{{item.homestayStore.desc}}" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl">
  22. {{item.homestayStore.desc}}
  23. </view>
  24. <view class="bottom">
  25. <view class="qian" data-id="{{item.homestayStore.objectId}}" data-url="../../pages/homestay/homestay-detail/index" bindtap="gourl">
  26. <view class="numbox">
  27. {{item.homestayStore.perCapita}}
  28. </view>
  29. </view>
  30. <view class="soucang" wx:if="{{!item.isCollect}}" data-id="{{item.homestayStore.objectId}}" bindtap="submit">收藏</view>
  31. <view class="soucang" wx:if="{{item.isCollect}}" data-id="{{item.homestayStore.objectId}}" bindtap="cancle">取消</view>
  32. </view>
  33. </view>
  34. </view>
  35. </block>
  36. </view>
  37. </van-tab>
  38. </van-tabs>
  39. </view>