You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.5 KiB
35 lines
1.5 KiB
|
6 months ago
|
<wxs src="../../../utils/filter.wxs" module="tool" />
|
||
|
|
<title title="选择自提点"></title>
|
||
|
|
<view class="bg">
|
||
|
|
<view class="item-bg'{{selectIndex==index?'active':''}}" wx:for="{{list}}"
|
||
|
|
wx:key="index" data-index="{{index}}" bind:tap="selectPoint" data-item="{{item}}">
|
||
|
|
<view class="item">
|
||
|
|
<view class="item-point-title">
|
||
|
|
<view class="name">{{item.title}}</view>
|
||
|
|
<!-- <view style="padding: 10rpx 0;">营业时间:{{item.remark}}</view> -->
|
||
|
|
<view >地址:{{item.address}}</view>
|
||
|
|
</view>
|
||
|
|
<view class="item-point-guide" catchtap="goMap" data-item="{{item}}">
|
||
|
|
<view>
|
||
|
|
<image src="https://static.ticket.sz-trip.com/uploads/20251028/071021313e5d04d98ca82f1f9e0678fd.png" mode="aspectFill" class="mapPoint"></image>
|
||
|
|
</view>
|
||
|
|
<!-- <view class="distance" wx:if="{{item.distance}}">距离{{item.distance}}km</view> -->
|
||
|
|
<view class="distance" >去这里</view>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="no-data" wx:if="{{list.length==0}}">
|
||
|
|
<image src="https://static.ticket.sz-trip.com/dongtai/images/user/noAddress.png" mode="aspectFill" class="no-address"></image>
|
||
|
|
<view class="">
|
||
|
|
暂无自提点地址
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="btn-bottom">
|
||
|
|
<view class="addBox" bind:tap="confirmPoint">
|
||
|
|
确定
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
|
||
|
|
</view>
|