expectLocation.wxml
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!--pages/expectLocation/expectLocation.wxml-->
<view class="bottom">
<view class="hint">
请写出您最方便的提货地点,下一个自提点很快就在您的公司楼下,家门口或你上班路过的十字路口。
</view>
<view class="location">
<picker bindchange="bindPickerChange2" value="{{provinceIndex}}" range="{{provinceStr}}">
<view class="section">
<view class="picker">
{{provinceStr[provinceIndex]}}
</view>
<text class="icon icon-icon-test3"></text>
</view>
</picker>
<picker bindchange="bindPickerChange3" value="{{cityIndex}}" range="{{cityStr}}">
<view class="section">
<view class="picker">
{{cityStr[cityIndex]}}
</view>
<text class="icon icon-icon-test3"></text>
</view>
</picker>
<picker bindchange="bindPickerChange4" value="{{districtIndex}}" range="{{districtStr}}">
<view class="section">
<view class="picker">
{{districtStr[districtIndex]}}
</view>
<text class="icon icon-icon-test3"></text>
</view>
</picker>
</view>
<picker bindchange="bindPickerChange5" value="{{streetIndex}}" range="{{streetStr}}">
<view class="section" style="width:544rpx;margin:0 auto;margin-top:20rpx;">
<view class="picker" style="font-size:28rpx;color:#999;">
{{streetStr[streetIndex]}}
</view>
<text class="icon icon-icon-test3"></text>
</view>
</picker>
<view class="section" style="width:544rpx;margin:0 auto;margin-top:20rpx;">
<input placeholder='详细地址' bindinput='detailedAddress' style="margin-left:21rpx;color:#999;"></input>
</view>
<view class="confirm" bindtap='confirm'>确认</view>
</view>