微信小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

voucher.wxml 1.9 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!--pages/finance/voucher/voucher.wxml-->
  2. <view class="ns" id="top_ban" style="height:{{isIPX?'88px':'64px'}};">
  3. <image src="/image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">记账凭证</text>
  5. </view>
  6. <view class="pure_top" style="top:{{isIPX?'88px':'64px'}};"></view>
  7. <view class="information_box" style="margin-top:{{isIPX?'100px':'75px'}};">
  8. <view>
  9. <text>账套:</text>
  10. <text>{{bookName}}</text>
  11. </view>
  12. <view>
  13. <text>日期:</text>
  14. <text>{{voucher.bookDate}}</text>
  15. </view>
  16. <view>
  17. <text>凭证号:</text>
  18. <text>{{voucher.voucherWordText}}-{{voucher.num}}</text>
  19. </view>
  20. </view>
  21. <view class="main-box">
  22. <view>
  23. <text class="tab1">{{listLength}}条</text>
  24. </view>
  25. <scroll-view scroll-y="true" style="height: 250px;">
  26. <view class="voucher_box" wx:for="{{voucher.detailList}}">
  27. <view class="tit_box">
  28. <text class="tab_box"><text class="tab2">{{index+1}}</text>摘要</text>
  29. <text class="tit">{{item.voucherSummary}}</text>
  30. </view>
  31. <view class="tit_box">
  32. <text class="tab_box">会计科目</text>
  33. <text class="tit">{{item.subjectNameAll}}</text>
  34. </view>
  35. <view class="tit_box">
  36. <text class="tab_box">借方金额</text>
  37. <text class="tit money">¥{{item.jieAmount == null?'0.00':item.jieAmount}}元</text>
  38. </view>
  39. <view class="tit_box">
  40. <text class="tab_box">贷方金额</text>
  41. <text class="tit money">¥{{item.daiAmount == null?'0.00':item.daiAmount}}元</text>
  42. </view>
  43. </view>
  44. </scroll-view>
  45. </view>
  46. <view class="moneyCount">
  47. <text>合计:<text style="color: #e63a37;">{{moneyCount}}</text></text>
  48. <view>
  49. <text style="color: #78722b;">制单员:{{voucher.preparedBy}}</text>
  50. <text style="color: #78722b;">审核员:{{voucher.checkedBy == null?'无':voucher.checkedBy}}</text>
  51. </view>
  52. </view>