editServiceInvoice.wxml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!--pages/invoice/editInvoice/editInvoice.wxml-->
  2. <wxs module="money" src="../../../filter/money.wxs"></wxs>
  3. <view class="page-edit">
  4. <!-- <view class="contract-step">
  5. <view class="img-wrap">
  6. <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/step-02.png"></image>
  7. </view>
  8. </view> -->
  9. <view class="planer-box">
  10. <view class="planer-header">
  11. <view class="name">服务费发票信息</view>
  12. </view>
  13. <view class="planer-content">
  14. <view class="form-box">
  15. <view hidden="{{isShowInvoiceBuyList}}">
  16. <view class="form-list">
  17. <view class="form-label">增值税普通发票</view>
  18. <input class="input-text" value="普通发票" disabled placeholder="请选择" type="text" />
  19. </view>
  20. <view bindtap="goSaleList" class="form-list">
  21. <view class="form-label">销售方</view>
  22. <input class="input-text" value="上海珈旻文化艺术中心" disabled placeholder="请选择" type="text" />
  23. <view class="icon-arrow"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-form-arrow.png"></image></view>
  24. </view>
  25. </view>
  26. <view class="form-list">
  27. <view class="form-label">税号</view>
  28. <input class="input-text" disabled value="91310120MA1HRT529W" placeholder="请输入" type="text" />
  29. </view>
  30. <view class="form-list">
  31. <view class="form-label">开票金额</view>
  32. <input class="input-text" disabled data-number="pointNum" value="{{money.money(invoiceInfo.servicePrice)}}" placeholder="请输入" type="digit" />
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="planer-box">
  38. <view class="planer-header">
  39. <view class="name">购买方信息</view>
  40. </view>
  41. <view class="planer-content">
  42. <view class="form-box">
  43. <picker class="form-list" bindchange="bindPickerChangeKind" value="{{pickerInvoiceKindIndex}}" range-key="name" range="{{pickerInvoiceKind}}">
  44. <view class="form-label">发票抬头</view>
  45. <input class="input-text" value="{{pickerInvoiceKind[pickerInvoiceKindIndex].name}}" disabled placeholder="请选择" type="text" />
  46. <view class="icon-arrow"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-form-arrow.png"></image></view>
  47. </picker>
  48. <view wx:if="{{pickerInvoiceKindIndex==0}}">
  49. <view class="form-list">
  50. <view class="form-label">姓名</view>
  51. <input class="input-text" id="formData.buyName" bindchange="changeInput" value="{{formData.buyName}}" placeholder="姓名" type="text" />
  52. </view>
  53. </view>
  54. <view wx:if="{{pickerInvoiceKindIndex==1}}">
  55. <view class="form-list">
  56. <view class="form-label">单位名称</view>
  57. <input class="input-text" id="formData.buyName" bindchange="changeInput" value="{{formData.buyName}}" placeholder="请输入" type="text" />
  58. </view>
  59. <view class="form-list">
  60. <view class="form-label">纳税人识别号</view>
  61. <input class="input-text" id="formData.buyIdNumber" bindchange="changeInput" value="{{formData.buyIdNumber}}" placeholder="请输入" type="text" />
  62. </view>
  63. </view>
  64. </view>
  65. <!-- <view bindtap="changeAgreement" class="read-deal">
  66. <i class="icon"> <image class="img-full" src="{{agreement?'https://resource.artouchstone.com/miniapp/artist/images/icon-input-check-active.png':'https://resource.artouchstone.com/miniapp/artist/images/icon-input-check-default.png'}}"></image></i>
  67. 我已阅读法律申明和免责申明</view> -->
  68. <view bindtap="saveData" class="default-btn primary">确认</view>
  69. </view>
  70. </view>
  71. <!--<view class="planer-box">
  72. <view class="planer-header">
  73. <view class="name">发票收货地址</view>
  74. </view>
  75. <view class="planer-content">
  76. <view bindtap="getAddress" class="form-box none">
  77. <view class="form-list">
  78. <view class="form-label">姓名</view>
  79. <input class="input-text" value="{{formData.receiverName}}" disabled placeholder="请输入" type="text" />
  80. </view>
  81. <view class="form-list">
  82. <view class="form-label">手机号</view>
  83. <input class="input-text" value="{{formData.receiverPhoneNumber}}" disabled placeholder="请输入" type="text" />
  84. <view class="icon-arrow"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-form-arrow.png"></image></view>
  85. </view>
  86. <view class="form-list">
  87. <view class="form-label">地址</view>
  88. <input class="input-text" value="{{formData.receiverAddress}}" disabled placeholder="请输入" type="text" />
  89. </view>
  90. </view>
  91. <view bindtap="changeAgreement" class="read-deal">
  92. <i class="icon"> <image class="img-full" src="{{agreement?'https://resource.artouchstone.com/miniapp/artist/images/icon-input-check-active.png':'https://resource.artouchstone.com/miniapp/artist/images/icon-input-check-default.png'}}"></image></i>
  93. 我已阅读法律申明和免责申明</view>
  94. <view bindtap="saveData" class="default-btn primary">确认</view>
  95. </view>
  96. </view>-->
  97. </view>