微信小程序
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.

62 lines
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="search_box" style="margin-top:{{isIPX?'88px':'64px'}};">
  7. <van-search
  8. value="{{ value }}"
  9. shape="round"
  10. background="transparent"
  11. placeholder="请输入名称搜索"
  12. clearable
  13. bind:change="goSearch"
  14. />
  15. </view>
  16. <view class="grid_main">
  17. <view bind:tap="goList" data-type="yeb">
  18. <image src="/image/index/index_block_04.png" mode="heightFix"/>
  19. <text>余额表</text>
  20. </view>
  21. <view text="负债表" bind:tap="goList" data-type="fzb">
  22. <image src="/image/index/index_block_23.png" mode="heightFix"/>
  23. <text>负债表</text>
  24. </view>
  25. <view text="公开表" bind:tap="goList" data-type="gkb">
  26. <image src="/image/index/index_block_26.png" mode="heightFix"/>
  27. <text>公开表</text>
  28. </view>
  29. </view>
  30. <scroll-view scroll-y refresher-threshold="0" style="height:100%" bindscrolltolower="paging" lower-threshold="100">
  31. <!-- wx:for="{{list}}" wx:key="index" wx:for-item="item" right-width="{{ 50 }}" -->
  32. <van-swipe-cell right-width="{{ 65 }}" class="workflow" wx:for="{{list}}" wx:key="index" >
  33. <view class="li" >
  34. <view style="width:70%;flex:7;">
  35. <view class="tit_box">
  36. <view>
  37. <text class="tit">{{item.openName}}</text>
  38. </view>
  39. <view style="display: flex;align-items: flex-start;">
  40. <image src="/image/icon/clock_icon.png" style="width: 15px;height: 15px;border-radius:5px;margin-right: 5px;display: block;flex-shrink: 0;"></image>
  41. <text style="color: #878787;line-height: 15px;flex-shrink: 0;">{{item.openNy}}</text>
  42. </view>
  43. </view>
  44. <view style="margin-left: auto;display: flex;flex-wrap: wrap;margin-top: 15px;">
  45. <image src="{{imgUrl+childItem}}" wx:for="{{item.openPic}}" wx:for-item="childItem" wx:for-index="childIndex" style="width: 30px;height: 30px;display: block;margin-left: {{childIndex == 0 ? '0px' : '10px'}};" data-url="{{imgUrl+childItem}}" bindtap="openPreview" wx:key="childIndex"></image>
  46. <image src="/image/icon/icon_word.png" wx:for="{{item.openFile}}" wx:for-item="childItem" wx:for-index="childIndex" style="width: 30px;height: 30px;margin-left: 10px;display: block;" data-url="{{imgUrl+childItem}}" bindtap="previewFile" wx:key="childIndex"></image>
  47. </view>
  48. </view>
  49. </view>
  50. <view slot="right" class="cell_right">
  51. <view class="button_box"
  52. data-date="{{item.openNy}}" data-bookId="{{item.bookId}}" data-deptId="{{item.deptId}}" bindtap="goFinace"
  53. >
  54. <view>
  55. <image src="/image/icon/icon_hd.png" style="width: 15px;height: 17px;"></image>
  56. <text>明细</text>
  57. </view>
  58. </view>
  59. </view>
  60. </van-swipe-cell>
  61. </scroll-view>