blankInvoice.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!--pages/blankInvoice/blankInvoice.wxml-->
  2. <view class="formTitle">空白作废</view>
  3. <view class="formArea noMargin">
  4. <picker
  5. bindchange="setInvoiceType"
  6. value="{{invoiceTypeIndex}}"
  7. range="{{invoiceType}}"
  8. class="lineGroup"
  9. >
  10. <view class="lineInner">
  11. <view class="label">
  12. <text class="star">*</text>
  13. 发票类型
  14. </view>
  15. <view class="content">
  16. <view class="diyInput hasArrow">
  17. <text wx:if="{{invoiceTypeIndex!==''}}">{{invoiceType[invoiceTypeIndex]}}</text>
  18. <text wx:if="{{invoiceTypeIndex===''}}" class="placeholderStyle">请选择</text>
  19. </view>
  20. <i class="iconfont icon-arrowr arrow" />
  21. </view>
  22. </view>
  23. </picker>
  24. <view class="lineGroup">
  25. <view class="lineInner">
  26. <view class="label middle">
  27. <text class="star">*</text>
  28. 发票代码:
  29. </view>
  30. <view class="content">
  31. <input
  32. bindinput="setInvoiceCode"
  33. class="input"
  34. maxlength="20"
  35. placeholder="请输入发票代码"
  36. placeholder-class="placeholderStyle"
  37. />
  38. </view>
  39. </view>
  40. </view>
  41. <view class="lineGroup">
  42. <view class="lineInner">
  43. <view class="label middle">
  44. <text class="star">*</text>
  45. 发票号码:
  46. </view>
  47. <view class="content">
  48. <input
  49. bindinput="setInvoiceNumber"
  50. class="input"
  51. maxlength="20"
  52. placeholder="请输入发票号码"
  53. placeholder-class="placeholderStyle"
  54. />
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="topPlaceholder" />
  60. <view class="paddingBottom" />
  61. <ipx-placeholder/>
  62. <customer-bottom>
  63. <view class="btnGroup shadow">
  64. <button bindtap="invalidInvoice" class="btn get">立即作废</button>
  65. </view>
  66. </customer-bottom>