123456789101112131415161718192021 |
- <nav type="back" background-color="{{activeColor}}" frontColor="#ffffff" title="村落详情" />
- <view class="page-section village-image-wrapper">
- <image wx:if="{{logoType == 'image'}}" src="{{department.logo}}" class="village-image"></image>
- <video wx:if="{{logoType == 'video'}}" src="{{department.logo}}" class="village-image"></video>
- </view>
- <view class="page-section page-section-spacing">
- <view class="village-desc">
- <view class="title">{{department.name}}</view>
- <view class="count red" style="color: {{activeColor}};">{{department.peopleAll}}人</view>
- <view class="desc grey">{{department.shortname}}</view>
- <view style="background-color: {{activeColor}};" wx:if="{{department.vrUrl}}" class="vr_btn" data-path="{{department.vrUrl}}" bind:tap="toWebView">
- VR游村
- </view>
- </view>
- </view>
- <view class="page-section page-section-spacing">
- <view class="title">村落简介</view>
- <view class="village-detail ">
- <mp-html content="{{department.content}}" />
- </view>
- </view>
|