index.wxml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!-- 顶部 -->
  2. <billrule show="{{show.growup}}" bind:close="closeTips"></billrule>
  3. <view class="top">
  4. <view class="cards-tips"><view class="tips-content"> 仅显示可申请开票的消费码</view></view>
  5. <view class="cards-tips" bindtap="refulePop" style="margin-right: 20rpx;">查看规则
  6. <view class="arrow-right"></view>
  7. </view>
  8. </view>
  9. <!-- 选择消费码 -->
  10. <view class="code">
  11. <!-- <view>
  12. <image class="left" src="https://images.weserv.nl/?url=https://lanhu.oss-cn-beijing.aliyuncs.com/psrkqu3l5bvfljlmvozc6jkcqq8bgdmkc395b8cbf-c191-45cf-abc5-695f044701ec"></image>
  13. </view> -->
  14. <!-- <text class="chooseCode">选择消费码</text> -->
  15. <view class="order-title ">
  16. 选择消费码
  17. </view>
  18. </view>
  19. <!-- 选择开票项 -->
  20. <checkbox-group class="group" wx:for="{{checkboxItems}}" wx:key="index" data-index="{{index}}" data-type="idChecked" bindchange="checkboxChange">
  21. <view class="chooseTerm">
  22. <label class="chooseTerm2">
  23. <checkbox class="checkbox" checked="{{item.checked}}"></checkbox>
  24. <view class="info">
  25. <view class="infoText">{{item.atitle}}</view>
  26. <view class="infoBox">
  27. <view class="infoText2">{{item.attendantNames}}</view>
  28. <view class="infoText3">{{item.sessionName}}({{item.policyName}})</view>
  29. </view>
  30. </view>
  31. <view class="leftInfo">
  32. <view class="infoText4">{{item.income}}<text class="infoText5">元</text>
  33. </view>
  34. <view class="infoText6">可开票金额</view>
  35. </view>
  36. </label>
  37. </view>
  38. </checkbox-group>
  39. <!-- 开票记录 -->
  40. <view class="bottom">
  41. <view class="bottom_top">
  42. <view class="allCheckedBig">
  43. <checkbox-group class="group" data-type="allChecked" bindchange="allChecked">
  44. <checkbox class="checkbox2" checked="{{isAllChecked}}"></checkbox>
  45. </checkbox-group>
  46. <view class="allChecked">全选</view>
  47. </view>
  48. <text class="consumption">
  49. <text style="color:#a4a4a4;font-size:24rpx">已选择{{consumpCode}}个消费码,</text><text style="font-size:24rpx"> 共</text>
  50. <text wx:if="{{reduceNum!=0.00}}" style="font-weight: 900;color:#eb3943;font-size:34rpx">{{ reduceNum }}</text>
  51. <text wx:if="{{reduceNum==0.00}}" style="font-weight: 900;color:#eb3943;font-size:34rpx">0.00</text>
  52. <text style="font-size:21rpx">元</text>
  53. </text>
  54. </view>
  55. <view class="bottom2">
  56. <view class="record" bindtap="invoicingRecord">开票记录</view>
  57. <view class="goInvoice" bindtap="goInvoice">去开票</view>
  58. </view>
  59. </view>
  60. <view class="box"></view>
  61. <!-- <view class="information">开票信息</view> -->
  62. <!-- 提交申请 -->
  63. <!-- <view class="apply">
  64. <view class="apply_bg">提交申请</view>
  65. </view> -->