Files
shopxo/app/admin/view/default/useraddress/module/position.html
2023-02-01 22:41:26 +08:00

10 lines
638 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 经纬度 -->
{{if isset($module_data['lng']) and isset($module_data['lat']) and $module_data['lng'] neq 0 and $module_data['lat'] neq 0}}
<button type="button" class="am-btn am-btn-success am-btn-xs am-radius am-icon-map-marker am-padding-xs am-fr submit-map-popup" data-lng="{{$module_data.lng}}" data-lat="{{$module_data.lat}}"> {{:MyLang('view_title')}}</button>
{{if !empty($module_data['lng'])}}
<p><span>{{:MyLang('lan_title')}}</span>{{$module_data.lng}}</p>
{{/if}}
{{if !empty($module_data['lat'])}}
<p><span>{{:MyLang('lat_title')}}</span>{{$module_data.lat}}</p>
{{/if}}
{{/if}}