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.
32 lines
709 B
32 lines
709 B
<view class="page-container">
|
|
<!-- 按钮区域 -->
|
|
<view class="button-group">
|
|
<view
|
|
class="button {{activeTab === 'clinic' ? 'active' : ''}}"
|
|
bindtap="switchTab"
|
|
data-tab="clinic"
|
|
>
|
|
药店诊所
|
|
</view>
|
|
<view
|
|
class="button {{activeTab === 'guide' ? 'active' : ''}}"
|
|
bindtap="switchTab"
|
|
data-tab="guide"
|
|
>
|
|
办事指南
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 地图区域 -->
|
|
<view class="map-container">
|
|
<map
|
|
id="myMap"
|
|
enable-zoom
|
|
longitude="{{markers.longitude}}"
|
|
latitude="{{markers.latitude}}"
|
|
enable-3D="{{true}}"
|
|
scale="16"
|
|
markers="{{[markers]}}"
|
|
></map>
|
|
</view>
|
|
</view>
|