12 lines
576 B
HTML
12 lines
576 B
HTML
<!-- 经纬度 -->
|
|
{{if !empty($module_data['lng'])}}
|
|
<p><span>经度:</span>{{$module_data.lng}}</p>
|
|
{{/if}}
|
|
{{if !empty($module_data['lat'])}}
|
|
<p class="am-margin-top-xs"><span>纬度:</span>{{$module_data.lat}}</p>
|
|
{{/if}}
|
|
{{if !empty($module_data['lng']) and !empty($module_data['lat'])}}
|
|
<div class="am-margin-top-xs">
|
|
<button type="button" class="am-btn am-btn-success am-btn-xs am-radius am-icon-map-marker am-padding-xs submit-map-popup" data-lng="{{$module_data.lng}}" data-lat="{{$module_data.lat}}"> 查看位置</button>
|
|
</div>
|
|
{{/if}} |