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

42 lines
1.7 KiB

  1. <!--pages/project/project.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'}};height: 19.0909px;" mode="widthFix" bindtap="back" referrer="no-referrer|origin|unsafe-url"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">四议表决</text>
  5. </view>
  6. <view class="search_box" id="top_view" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <van-search
  8. value="{{ name }}"
  9. shape="round"
  10. background="transparent"
  11. placeholder="请输入四议名称"
  12. clearable
  13. bind:change="goSearch"
  14. />
  15. <!-- <view class="add_btn" bindtap="goAdd"><text>新增</text></view> -->
  16. </view>
  17. <scroll-view scroll-y refresher-threshold="0" style="height:{{scrollHeight}}px" bindscrolltolower="paging" lower-threshold="100">
  18. <van-swipe-cell right-width="{{ 0 }}" class="workflow" wx:for="{{projectList}}" wx:key="index">
  19. <view class="li" bindtap="goDetail" data-id="{{item.id}}">
  20. <view class="tit_box">
  21. <view class="tit_box_left">
  22. <image src="/image/icon/icon_gc.png" style="width: 17px; height: 15px;flex-shrink: 0;"></image>
  23. <text class="tit">{{item.itemName}}</text>
  24. </view>
  25. <view class="tit_type">
  26. <text>{{item.voteStatusText}}</text>
  27. </view>
  28. </view>
  29. <view class="detail_time_box">
  30. <view class="detail_time">
  31. <image src="/image/icon/icon_date.png" style="width: 14px;height: 14px;"></image>
  32. <text>{{item.itemAt}}</text>
  33. </view>
  34. <view class="detail_time">
  35. <text class="detail_box_money">{{item.voteTypeText}}</text>
  36. </view>
  37. </view>
  38. </view>
  39. </van-swipe-cell>
  40. </scroll-view>