微信小程序
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

62 linhas
2.9 KiB

  1. <!--pages/handle/liist.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="work_plan" id="top_view1" style="margin-top:{{isIPX?'85px':'75px'}};">
  7. <view style="border:1px solid #ddd;background: #fff;border-radius: 30rpx;line-height: 60rpx;padding: 0 25rpx;">
  8. <picker mode="date" value="{{date}}" start="{{ minDate }}" end="{{ maxDate }}" fields="month" bindchange="onConfirmReviewTime">
  9. <view class="picker">
  10. <image src="../../image/icon/calendar_icon.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image>
  11. {{date}}
  12. </view>
  13. </picker>
  14. </view>
  15. <view style="border:1px solid #ddd;background: #fff;border-radius: 30rpx;line-height: 60rpx;padding: 0 25rpx;">
  16. <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}" >
  17. <view class="picker">
  18. {{array[index]}}
  19. <image src="../../image/icon/triangle.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image>
  20. </view>
  21. </picker>
  22. </view>
  23. </view>
  24. <view class="banner" id="top_view2">
  25. <view class="banner_tabs">
  26. <view>上月结余</view>
  27. <view style="font-size: 12px;">¥{{data.syjc}}</view>
  28. </view>
  29. <view class="banner_tabs">
  30. <view>支出</view>
  31. <view style="font-size: 12px;">¥{{data.dai}}</view>
  32. </view>
  33. <view class="banner_tabs">
  34. <view>收入</view>
  35. <view style="font-size: 12px;">¥{{data.jie}}</view>
  36. </view>
  37. <view class="banner_tabs">
  38. <view>本月结存</view>
  39. <view style="font-size: 12px;">¥{{data.byjc}}</view>
  40. </view>
  41. </view>
  42. <scroll-view scroll-y refresher-threshold="0" style="height:{{scrollHeight}}px" bindscrolltolower="paging" lower-threshold="100">
  43. <view class="workflow" wx:for-item="item" wx:for="{{financeList}}" wx:key="index" data-type="up" >
  44. <!--1-->
  45. <view class="workflow_list">
  46. <view class="process_intro">
  47. <view class="name">{{item.voucherSummary}}</view>
  48. <view class="amount" wx:if="{{item.jieAmount!='0.00'}}">¥+{{item.jieAmount?item.jieAmount:""}}</view>
  49. <view class="amounts" wx:if="{{item.daiAmount!='0.00'}}">¥-{{item.daiAmount?item.daiAmount:""}}</view>
  50. </view>
  51. <view class="process_pay">
  52. <view class="describe">
  53. <text class="textLimit">{{item.voucherWord?item.voucherWord:""}}-{{item.num?item.num:""}}</text>
  54. </view>
  55. <view class="time">{{item.bookDate?item.bookDate:""}}</view>
  56. </view>
  57. </view>
  58. </view>
  59. <van-empty wx:if="{{todoNum == 0}}" description="暂无待办数据" />
  60. </scroll-view>