index.wxml 1.6 KB

1234567891011121314151617181920212223242526272829
  1. <!-- nova-tourism/components/shop-detail/index.wxml -->
  2. <view class=" shop-detail">
  3. <view class="title shop-name">{{shop.storeName}}</view>
  4. <view class="text grey ">{{shop.desc}}</view>
  5. <view class="shop-rate">
  6. <van-rate readonly allow-half value="{{ shop.score || shop.rate}}" size="{{ 14 }}" color="{{activeColor}}" void-icon="star" void-color="#eee" />
  7. <text class="text shop-rate-text" style="color: {{activeColor}};">{{ shop.score || shop.rate || 0}}分</text>
  8. </view>
  9. <view class="shop-time text">营业时间: {{shop.workingTime}}</view>
  10. <view wx:if="{{shop.vrUrl}}" class="vr_btn" data-path="{{shop.vrUrl}}" bind:tap="toWebView">
  11. VR探店
  12. </view>
  13. <van-divider borderColor="{{activeColor}}" custom-style="margin:20rpx 0;" />
  14. <view class="detail-bottom">
  15. <view class="detail-bottom-left">
  16. <view class="shop-address text">地址:{{shop.address}}</view>
  17. </view>
  18. <view class="detail-bottom-right">
  19. <view class="taxi tool-box flex-column" bind:tap="callMap">
  20. <van-icon name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220413/5oaona032247.png?imageView2/1/w/20/h/20"></van-icon>
  21. <text class="text-small">打车</text>
  22. </view>
  23. <view class="phone tool-box flex-column" bind:tap="callPhone">
  24. <van-icon name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220413/jip51n032425.png?imageView2/1/w/20/h/20"></van-icon>
  25. <text class="text-small">电话</text>
  26. </view>
  27. </view>
  28. </view>
  29. </view>