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