微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Bookkeeping.wxml 3.5 KiB

пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!--pages/Bookkeeping/Bookkeeping.wxml-->
  2. <view class="ns" 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="work_plan" style="margin-top:{{isIPX?'88px':'65px'}};">
  7. <view class="menu_item {{showGroup?'active':''}} " bindtap="switchTab" data-gid='{{true}}'>收入事项<text class="remind">{{flowListSRNum}}</text></view>
  8. <view class="menu_item {{!showGroup?'active':''}} " bindtap="switchTab" data-gid='{{false}}'>支出事项<text class="remind">{{flowListZCNum}}</text></view>
  9. <view class="downView" bindtap="openPopup">
  10. <text>{{checkedStatusText}}</text>
  11. <image src="/image/icon/triangle.png"></image>
  12. </view>
  13. <van-popup show="{{showProjectFundType}}" round position="bottom" bind:close="closeBox" data-name="showProjectFundType">
  14. <van-picker
  15. columns="{{capitalExpenditureTypeOptions}}"
  16. show-toolbar
  17. value-key="dictLabel"
  18. bind:cancel="closeBox"
  19. bind:confirm="onConfirmPick"
  20. data-name="showProjectFundType"
  21. data-value="checkedStatusText"
  22. />
  23. </van-popup>
  24. </view>
  25. <van-checkbox-group wx:if="{{showGroup}}" value="{{ result }}" bind:change="onChange">
  26. <view class="li" wx:for="{{flowListSR}}" wx:key="index">
  27. <van-checkbox name="{{item.id}}" shape="square" checked-color="#2C8E68" style="width: 100%;">
  28. <view style="width: 40%;">
  29. <text class="tit">{{item.accountSummary}}</text>
  30. <view class="fksr">
  31. <image src="/image/icon/inCome.png" style="width: 16px;height: 14px;margin-right: 5px;"></image>
  32. {{item.incomeTypeText}}
  33. </view>
  34. </view>
  35. <view>
  36. <text class="fj_name">附件{{item.enclosureCount}}</text>
  37. <text class="time">{{item.incomeDate}}</text>
  38. </view>
  39. <view>
  40. <view class="wtj">
  41. <image src="/image/icon/stop.png" style="width: 12px;height: 12px;margin-right: 5px;"></image>
  42. {{item.checkedStatusText}}
  43. </view>
  44. <text class="money">¥{{item.jieAmount}}</text>
  45. </view>
  46. </van-checkbox>
  47. </view>
  48. </van-checkbox-group>
  49. <van-checkbox-group wx:if="{{!showGroup}}" value="{{ result2 }}" bind:change="onChange2">
  50. <view class="li" wx:for="{{flowListZC}}" wx:key="index">
  51. <van-checkbox name="1" shape="square" checked-color="#2C8E68" style="width: 100%;">
  52. <view style="width: 40%;">
  53. <text class="tit">{{item.accountSummary}}</text>
  54. <view class="fksr">
  55. <image src="/image/icon/inCome.png" style="width: 16px;height: 14px;margin-right: 5px;"></image>
  56. 现金支出
  57. </view>
  58. </view>
  59. <view>
  60. <text class="fj_name">附件9</text>
  61. <text class="time">{{item.incomeDate}}</text>
  62. </view>
  63. <view>
  64. <view class="wtj">
  65. <image src="/image/icon/stop.png" style="width: 12px;height: 12px;margin-right: 5px;"></image>
  66. 未提交
  67. </view>
  68. <text class="money">¥{{item.jieAmount}}</text>
  69. </view>
  70. </van-checkbox>
  71. </view>
  72. </van-checkbox-group>
  73. <van-empty wx:if="{{flowListSRNum == 0 && showGroup}}" description="暂无收入事项数据" />
  74. <van-empty wx:if="{{flowListZCNum == 0 && !showGroup}}" description="暂无支出事项数据" />
  75. <view class="ipXbtn"></view>
  76. <view class="ipXbtn"></view>
  77. <view class="bottom">
  78. <view class="btn2" bindtap="goSubmit">提交记账</view>
  79. </view>