expectLocation.wxml 1.8 KB
<!--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>