curatorInfo.wxml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <!-- pages/settled/personInfo/personInfo.wxml -->
  2. <view>
  3. <view class="planer-box">
  4. <view class="planer-header">
  5. <view class="name">联系方式</view>
  6. </view>
  7. <view class="planer-content">
  8. <view class="form-box">
  9. <view class="form-list">
  10. <view class="form-label">手机号</view>
  11. <input class="input-text" bindchange="changeInput" id="formData.mobile" value="{{formData.mobile}}" placeholder="请输入" type="text" />
  12. </view>
  13. <view class="form-list">
  14. <view class="form-label">联系地址</view>
  15. <input class="input-text" bindchange="changeInput" id="formData.address" value="{{formData.address}}" placeholder="请输入" type="text" />
  16. </view>
  17. <view class="form-list">
  18. <view class="form-label">电子邮箱</view>
  19. <input class="input-text" bindchange="changeInput" id="formData.email" value="{{formData.email}}" placeholder="请输入" type="text" />
  20. </view>
  21. <view class="form-list">
  22. <view class="form-label">微信号</view>
  23. <input class="input-text" bindchange="changeInput" id="formData.weixinNo" value="{{formData.businessLicenseNo}}" placeholder="请输入" type="text" />
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="footer-btn">
  29. <view class="footer-btn-content">
  30. <view bindtap="saveData" class="default-btn primary disable">提交</view>
  31. </view>
  32. </view>
  33. </view>