light-map.wxml 1.0 KB

12345678910111213141516171819202122
  1. <!--pages/light-map/light-map.wxml-->
  2. <map id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="{{scale}}" show-location="true" markers="{{markers}}" bindtap="mapTap" bindmarkertap="markerTap"></map>
  3. <view class="bottom-card" wx:if="{{show}}">
  4. <view class="left">
  5. <image class="user-photo" src="{{userPhoto}}"></image>
  6. <view class="user-info">
  7. <text class="username">{{nickname}}</text>
  8. <text class="user-role" wx:if="{{showRole}}">{{roleName}}</text>
  9. </view>
  10. </view>
  11. <view class="right">
  12. <view class="video-card" style="background-image: url({{imgPath}}/map-btn-bg1.png);" wx:if="{{showVideo}}">
  13. <image class="video" src="{{imgPath}}/map-video.png"></image>
  14. <text>视频</text>
  15. </view>
  16. <view class="message-card" style="background-image: url({{imgPath}}/map-btn-bg2.png);" bindtap="intoChatRoom">
  17. <image class="message" src="{{imgPath}}/map-message.png"></image>
  18. <text>发消息</text>
  19. </view>
  20. </view>
  21. </view>