detail.wxml 1.3 KB

1234567891011121314151617181920
  1. <!--pagesPublic/pages/tdcr/details/detail.wxml-->
  2. <view class="main" style="background-image: url({{imgPath}}/index/bg.png);">
  3. <view class="header" style="height: {{headerStyle.height}}px;line-height: {{headerStyle.height}}px;margin-top: {{headerStyle.top}}px;">{{title}}</view>
  4. <view class="map-content" style="background-image: url({{imgPath}}/details/map-border.png);">
  5. <map class="map" enable-satellite="true" longitude="{{map.longitude}}" latitude="{{map.latitude}}"></map>
  6. </view>
  7. <view class="tab">
  8. <view class="tab-item" wx:for="{{tabs}}" style="{{tabActive == index ? 'background-image: url(' + imgPath + '/details/tab-bg.png);' : ''}}" data-index="{{index}}" bindtap="tabEvent">{{item.label}}</view>
  9. </view>
  10. <view class="content" style="background-image: url({{imgPath}}/details/content-bg.png);">
  11. <include wx:if="{{tabActive == 0}}" src="./wxml/survey.wxml"/>
  12. <include wx:if="{{tabActive == 1}}" src="./wxml/info.wxml"/>
  13. <include wx:if="{{tabActive == 2}}" src="./wxml/periphery.wxml"/>
  14. <include wx:if="{{tabActive == 3}}" src="./wxml/other.wxml"/>
  15. </view>
  16. <view class="bottom-btn" style="background-image: url({{imgPath}}/details/btn-bg.png);">
  17. <image src="{{imgPath}}/details/icon-phone.png"/>
  18. <text>与我联系</text>
  19. </view>
  20. </view>