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.
 

51 lines
1.9 KiB

<form bindsubmit="formSubmit" bindreset="formReset">
<view class="section">
<view class="section__title">省:</view>
<picker bindchange="bindChangeProvince" value="{{indexProvince}}" range="{{arrayProvince}}">
<view class="picker-view">
<view><text>{{arrayProvince[indexProvince]}}</text></view>
<view><image class="select-icon" src="../../images/select.png"></image></view>
</view>
</picker>
</view>
<view class="section">
<view class="section__title">市:</view>
<picker bindchange="bindChangeCity" value="{{indexCity}}" range="{{arrayCity}}">
<view class="picker-view">
<view><text>{{arrayCity[indexCity]}}</text></view>
<view><image class="select-icon" src="../../images/select.png"></image></view>
</view>
</picker>
</view>
<view class="section">
<view class="section__title">区/县:</view>
<picker bindchange="bindChangeCounty" value="{{indexCounty}}" range="{{arrayCounty}}">
<view class="picker-view">
<view><text>{{arrayCounty[indexCounty]}}</text></view>
<view><image class="select-icon" src="../../images/select.png"></image></view>
</view>
</picker>
</view>
<view class="detail-address">
<view class="section_title">详细地址:</view>
<input name="inputDetail" placeholder="输入地址信息" value="{{detailAddress}}" />
</view>
<view class="detail-address">
<view class="section_title">收货人姓名:</view>
<input name="inputName" placeholder="名字" value="{{receiverName}}" />
</view>
<view class="detail-address">
<view class="section_title">手机号:</view>
<input name="inputMobile" type="digit" placeholder="联系手机" value="{{receiverMobile}}" />
</view>
<view class="btn-area">
<button formType="submit" type='primary'>确认提交</button>
<!--<button formType="reset">清空表单</button>-->
</view>
</form>