index.wxml 1.0 KB

123456789101112131415161718192021
  1. <nav type="back" background-color="{{activeColor}}" frontColor="#ffffff" title="村落详情" />
  2. <view class="page-section village-image-wrapper">
  3. <image wx:if="{{logoType == 'image'}}" src="{{department.logo}}" class="village-image"></image>
  4. <video wx:if="{{logoType == 'video'}}" src="{{department.logo}}" class="village-image"></video>
  5. </view>
  6. <view class="page-section page-section-spacing">
  7. <view class="village-desc">
  8. <view class="title">{{department.name}}</view>
  9. <view class="count red" style="color: {{activeColor}};">{{department.peopleAll}}人</view>
  10. <view class="desc grey">{{department.shortname}}</view>
  11. <view style="background-color: {{activeColor}};" wx:if="{{department.vrUrl}}" class="vr_btn" data-path="{{department.vrUrl}}" bind:tap="toWebView">
  12. VR游村
  13. </view>
  14. </view>
  15. </view>
  16. <view class="page-section page-section-spacing">
  17. <view class="title">村落简介</view>
  18. <view class="village-detail ">
  19. <mp-html content="{{department.content}}" />
  20. </view>
  21. </view>