index.wxml 435 B

12345678910111213
  1. <view class="detail-price-wrapper">
  2. <view class="detail-price-text" style="color: {{activeColor}};">
  3. <text class="detail-price-num">{{detail.price}}</text>
  4. /每晚
  5. </view>
  6. </view>
  7. <view class="detail-name title">{{detail.name}}</view>
  8. <view class="detail-tags text-small grey">
  9. <block wx:for="{{detail.tags}}" wx:for-item="tag" wx:key="index">
  10. <text>{{tag}}\t</text>
  11. </block>
  12. </view>