editSale.wxml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!--pages/invoice/editSale/editSale.wxml-->
  2. <view class="page-edit">
  3. <view class="planer-box">
  4. <view class="planer-header">
  5. <span class="name">销售方信息</span>
  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.name" value="{{formData.name}}" 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.phoneNumber" value="{{formData.phoneNumber}}" 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.identityNumber" value="{{formData.identityNumber}}" placeholder="请输入" type="text" />
  20. </view>
  21. </view>
  22. <view class="user-card-box">
  23. <view class="card-img-box big">
  24. <view wx:if="{{upFileInfo}}" class="img-wrap">
  25. <image mode="scaleToFill" src="{{upFileInfo.url}}"></image>
  26. <view bindtap="removeFile" class="close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-close.png"></image></view>
  27. </view>
  28. <view wx:if="{{!upFileInfo}}" bindtap="chooseFile" class="item-info">
  29. <view class="icon">
  30. <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-add-file.png"></image>
  31. </view>
  32. </view>
  33. <view class="card-info-text">
  34. <view class="text">请上传含有销售方身份证正反面的扫描件, 并分别在身份证正反面上签名</view>
  35. <view class="info">支持.pdf .jpg文件,10M以内</view>
  36. </view>
  37. </view>
  38. <view bindtap="showSimple" class="look-sample">查看样本</view>
  39. </view>
  40. <view bindtap="saveData" class="default-btn primary">确认</view>
  41. </view>
  42. </view>
  43. </view>
  44. <!--查看样本-->
  45. <view wx:if="{{isShowSimple}}" class="pop-box">
  46. <view class="pop-inner">
  47. <view class="img-simple">
  48. <image mode="widthFix" src="https://resource.artouchstone.com/miniapp/artist/images/invoice/card-simple.png"></image>
  49. </view>
  50. <view bindtap="hideSimple" class="pop-close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/close.png"></image></view>
  51. </view>
  52. </view>