1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <view class='container'>
- <view class="section">
- <view class='input' bindtap="bindInput">
- <image src='/images/search.png'></image>
- <text>{{keywords}}</text>
- </view>
- <view class='city_select'>{{city==null?'北京市':city}}</view>
- <view class='down'>
- <image src='/images/down.png'></image>
- </view>
- </view>
- <view class="{{textData.name?'map_container':'map_container_big'}}">
- <view wx:if="{{textData}}" class='map_textdata_fast'>
- <text decode="true">● 快充 {{textData.fastfreenum==null?0:textData.fastfreenum}}/</text>
- <text style='color:#969696;'>{{textData.fastCharg==null?0:textData.fastCharg}}</text>
- </view>
- <view wx:if="{{textData}}" class='map_textdata_slow'>
- <text decode="true">● 慢充 {{textData.slowfreenum==null?0:textData.slowfreenum}}/</text>
- <text style='color:#969696;'>{{textData.slowCharg==null?0:textData.slowCharg}}</text>
- </view>
- <map class="map" id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="16" show-location="true" markers="{{markers}}" bindmarkertap="makertap" bindregionchange="mapchange" polygon="{{polygon}}">
- <view class='map_distance'>
- <picker class="picker" bindchange="bindDistanceinfoChange" value="{{distanceinfoindex}}" range-key="text" range="{{distanceinfo}}">
- <text>距离{{distanceinfo[distanceinfoindex].text}}</text>
- </picker>
- </view>
- <cover-view class='map_location' bindtap='click_location_control' hover-class='map_location_hover'>
- <cover-image class='circle1' src='/images/circle1.png'></cover-image>
- </cover-view>
- <cover-view wx:if='{{!(!(textData.name)&&showModal&¬ice.noticeTitle)}}' class='map_center'>
- <cover-image src='/images/map_center.png'></cover-image>
- </cover-view>
- </map>
- </view>
- <view class="map_text" hover-class='active' wx:if="{{textData}}" bindtap='seeInfo'>
- <view class="see_info" >查看详情 > </view>
- <view class="map_text_info">
- <view class='charging_text_title'>
- <view class='charging_text_title1'>
- <text class='bold'>{{textData.name}}</text>
- <text class="h1">{{textData.address}}</text>
- </view>
- </view>
- <view class='chargprice'>
- <text class='inline yellow'>{{textData.chargprice == null? '暂无电费' : textData.chargprice}}</text>
- <text decode="true" class='inline price'> {{textData.chargprice == null? '' : '元/度'}}</text>
- </view>
- <text class='inline border'>服务费:{{textData.serviceprice == null? '暂无服务费' : textData.serviceprice + ' 元/度'}}</text>
- <!-- <text class='inline border'>停车费:{{textData.stopprice}}元/小时</text> -->
- </view>
- <view class='navigation_info'>
- <view class='navigation' bindtap="getRoute">
- <image src='/images/navigation.png'></image>
- </view>
- <text>{{textData.distance}}km</text>
- </view>
- </view>
- </view>
- <view wx:if='{{!(textData.name)&&showModal&¬ice.noticeTitle}}'>
- <view class="modal_box">
- <view class="title">
- <image src='/images/notice.png' />
- </view>
- <view class="content_msg">
- <view class='content_title'>{{notice.noticeTitle}}</view>
- <view class='content'>
- <view class='modalMsg'>
- <rich-text nodes='{{notice.noticeContent}}'></rich-text>
- </view>
- </view>
- <view bindtap='Sure' class='Sure' hover-class='hover_sure'>知道了</view>
- </view>
- </view>
- </view>
- <view class='footer'>
- <view class='footer_1'>
- <image src='/images/index_selected.png'></image>
- <text class='selected'>首页</text>
- </view>
- <view class='footer_2' bindtap='click_scan_control' wx:if='{{!userInfo.flag}}'>
- <image src='/images/scan.png'></image>
- </view>
- <view class='footer_3' bindtap='bindUserAvatarUrl'>
- <image src='/images/ucenter.png'></image>
- <text>我的</text>
- </view>
- </view>
|