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

49 regels
2.4 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. <scroll-view scroll-y refresher-threshold="0" style="height:100%" bindscrolltolower="paging" lower-threshold="100">
  17. <!-- wx:for="{{list}}" wx:key="index" wx:for-item="item" right-width="{{ 50 }}" -->
  18. <van-swipe-cell right-width="{{ 65 }}" class="workflow" wx:for="{{list}}" wx:key="index" >
  19. <view class="li" >
  20. <view style="width:70%;flex:7;">
  21. <view class="tit_box">
  22. <view>
  23. <text class="tit">{{item.openName}}</text>
  24. </view>
  25. <view style="display: flex;align-items: flex-start;">
  26. <image src="/image/icon/clock_icon.png" style="width: 15px;height: 15px;border-radius:5px;margin-right: 5px;display: block;flex-shrink: 0;"></image>
  27. <text style="color: #878787;line-height: 15px;flex-shrink: 0;">{{item.openNy}}</text>
  28. </view>
  29. </view>
  30. <view style="margin-left: auto;display: flex;flex-wrap: wrap;margin-top: 15px;">
  31. <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>
  32. <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>
  33. </view>
  34. </view>
  35. </view>
  36. <view slot="right" class="cell_right">
  37. <view class="button_box"
  38. data-date="{{item.openNy}}" data-bookId="{{item.bookId}}" data-deptId="{{item.deptId}}" bindtap="goFinace"
  39. >
  40. <view>
  41. <image src="/image/icon/icon_hd.png" style="width: 15px;height: 17px;"></image>
  42. <text>明细</text>
  43. </view>
  44. </view>
  45. </view>
  46. </van-swipe-cell>
  47. </scroll-view>