edit-address.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <import src="../../../../public/pages/public-view.wxml"/>
  2. <form bindsubmit="formSubmit">
  3. <view style="width:100%;height:24prx;"></view>
  4. <view class="row">
  5. <text>收货人</text>
  6. <input placeholder-class="input-placeholder" placeholder="收货人姓名" maxlength="16" name="u_name" value="{{data.u_name}}"></input>
  7. </view>
  8. <template is="right-line" />
  9. <view class="row">
  10. <text>联系电话</text>
  11. <input placeholder-class="input-placeholder" placeholder="收货人联系电话" type="phone" maxlength="11" name="phone" value="{{data.phone}}"></input>
  12. </view>
  13. <template is="right-line" />
  14. <picker mode="region" bindchange="pickerChange">
  15. <view class="row">
  16. <text>所在地区</text>
  17. <input placeholder-class="input-placeholder" placeholder="省份 城市 区县" disabled="true" name="area" value="{{area}}"></input>
  18. </view>
  19. </picker>
  20. <template is="right-line" />
  21. <view class="textarea">
  22. <textarea placeholder-class="textarea-placeholder" placeholder="请填写详细地址" maxlength="50" name="address" value="{{data.address}}"></textarea>
  23. </view>
  24. <button form-type="submit" hover-class="none" style="border-color: rgba(0, 0, 0, 0)">保存</button>
  25. </form>