change-address.swan 905 B

1234567891011121314151617181920212223242526272829
  1. <view class="content">
  2. <view class="item">
  3. <text>收货人</text>
  4. <view>
  5. <input value="{{name}}" placeholder="{{placeholder[0]}}" bindinput="inputAction" data-type="name"/>
  6. </view>
  7. </view>
  8. <view class="line"></view>
  9. <view class="item">
  10. <text>联系电话</text>
  11. <view>
  12. <input value="{{phone}}" placeholder="{{placeholder[1]}}" bindinput="inputAction" data-type="phone"/>
  13. </view>
  14. </view>
  15. <view class="line"></view>
  16. <view class="item">
  17. <text>所在地区</text>
  18. <picker mode="region" bindchange="pickerChange">
  19. <view style="width:480rpx">
  20. <text style="color:{{pickerColor}}">{{pickerValue}}</text>
  21. </view>
  22. </picker>
  23. </view>
  24. <view class="line"></view>
  25. <view class="box">
  26. <textarea value="{{addr}}" placeholder="{{placeholder[3]}}" bindinput="inputAction" data-type="addr"/>
  27. </view>
  28. </view>
  29. <view class="btn" bindtap="btnAction">保存</view>