与牧同行-小程序用户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
709 B

6 days ago
  1. <view class="page-container">
  2. <!-- 按钮区域 -->
  3. <view class="button-group">
  4. <view
  5. class="button {{activeTab === 'clinic' ? 'active' : ''}}"
  6. bindtap="switchTab"
  7. data-tab="clinic"
  8. >
  9. 药店诊所
  10. </view>
  11. <view
  12. class="button {{activeTab === 'guide' ? 'active' : ''}}"
  13. bindtap="switchTab"
  14. data-tab="guide"
  15. >
  16. 办事指南
  17. </view>
  18. </view>
  19. <!-- 地图区域 -->
  20. <view class="map-container">
  21. <map
  22. id="myMap"
  23. enable-zoom
  24. longitude="{{markers.longitude}}"
  25. latitude="{{markers.latitude}}"
  26. enable-3D="{{true}}"
  27. scale="16"
  28. markers="{{[markers]}}"
  29. ></map>
  30. </view>
  31. </view>