Files
shopxo/app/admin/view/default/warehouse/module/position.html
gongfuxiang 975c3a6c96 v5.0
2024-01-19 14:49:32 +08:00

10 lines
718 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}}" data-title="{{:MyLang('map_title')}}" data-full-max="1" data-full-max-size="xs"> {{: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}}