addAddress.wxml 975 B

123456789101112131415161718192021222324
  1. <!--pages/my/addAddress/addAddress.wxml-->
  2. <view>
  3. <form catchsubmit="formSubmit">
  4. <label class="radio">
  5. <radio value="r1" checked="{{form.checked}}"/>设置为默认地址
  6. </label>
  7. <view class="info">
  8. <text class="name">收件人</text>
  9. <input type="text" class="input" data-key="name" bindinput="inputChange"/>
  10. </view>
  11. <view class="info">
  12. <text class="name">手机号</text>
  13. <input type="text" data-key="phone" class="input" bindinput="inputChange"/>
  14. </view>
  15. <view class="info">
  16. <text class="name">所在地区</text>
  17. <input type="text" data-key="region" class="input" bindinput="inputChange"/>
  18. </view>
  19. <view class="info">
  20. <text class="name">详细地址</text>
  21. <input type="text" data-key="address" class="input" bindinput="inputChange"/>
  22. </view>
  23. </form>
  24. </view>