JMApp/pages/wangdianList/wangdianList.wxml
2025-04-09 23:51:01 +08:00

27 lines
1.5 KiB
Plaintext

<template name="wangdianList">
<view class="index-wangdian-list">
<view class="index-wangdian-title">
<view bindtap="toPage" class="more" data-refresh="1" data-url="map/map">全部网点></view>
<view class="title_c">离我最近<view class="line"></view></view>
</view>
<view bindtap="toPage" class="index-wangdian-box" wx:for="{{wangdianList}}" wx:key="index" wx:for-item="item" data-refresh="1" data-url="wangdian/wangdian?number={{item.number}}">
<view class="info">
<view class="title">
<view class="title_c">{{item.name}}</view>
<view class="ld" wx:for="{{item.service}}" wx:key="index_i" wx:for-item="s" style="background-color: {{s.color}};">{{s.label}}</view>
</view>
<view class="tag">{{item.tags}}</view>
<view class="ads"><text class="iconfont icon-dingwei"></text>{{item.address}}</view>
<view class="jiqi">洗车机:闲{{item.free}}/{{item.machine}}台</view>
<view class="yingye">{{item.businesshours || '24小时'}}</view>
<view class="dw">
<text class="ico iconfont icon-daohangdaohang"></text>
<view class="jl">{{item.distance}}</view>
</view>
</view>
<view class="xian">
<view class="bili" style="width:{{item.ratio}}"></view>
</view>
</view>
</view>
</template>