| 123456789101112131415161718192021222324 |
- <!--pages/my/addAddress/addAddress.wxml-->
- <view>
- <form catchsubmit="formSubmit">
- <label class="radio">
- <radio value="r1" checked="{{form.checked}}"/>设置为默认地址
- </label>
- <view class="info">
- <text class="name">收件人</text>
- <input type="text" class="input" data-key="name" bindinput="inputChange"/>
- </view>
- <view class="info">
- <text class="name">手机号</text>
- <input type="text" data-key="phone" class="input" bindinput="inputChange"/>
- </view>
- <view class="info">
- <text class="name">所在地区</text>
- <input type="text" data-key="region" class="input" bindinput="inputChange"/>
- </view>
- <view class="info">
- <text class="name">详细地址</text>
- <input type="text" data-key="address" class="input" bindinput="inputChange"/>
- </view>
- </form>
- </view>
|