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

resources.wxml 3.7 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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?'103px':'80px'}};">
  7. <view class="menu_item {{showGroup == '1'?'active':''}} " bindtap="switchTab" data-gid='1' style="width: 25%;">
  8. <text style="border-right: 1px solid #ddd;">农用地</text>
  9. </view>
  10. <view class="menu_item {{showGroup == '2'?'active':''}} " bindtap="switchTab" data-gid='2' style="width: 25%;">
  11. <text style="border-right: 1px solid #ddd;">建设用地</text>
  12. </view>
  13. <view class="menu_item {{showGroup == '3'?'active':''}} " bindtap="switchTab" data-gid='3' style="width: 40%;">
  14. <text>未利用地、林地</text>
  15. </view>
  16. </view>
  17. <view class="search_box" id="top_view">
  18. <van-search
  19. value="{{ searchName }}"
  20. shape="round"
  21. background="transparent"
  22. placeholder="请输入资源资产名称"
  23. clearable
  24. bind:change="goSearch"
  25. />
  26. <view class="downView" bindtap="openPopup">
  27. <text>{{checkedStatusText}}</text>
  28. <image src="/image/icon/triangle.png"></image>
  29. </view>
  30. <van-popup show="{{showProjectFundType}}" round position="bottom" bind:close="closeBox" data-name="showProjectFundType">
  31. <van-picker
  32. columns="{{showGroup == '1'? farmingTypeOptions : showGroup == '2' ? buildTypeOptions : showGroup == '3' ? unusedTypeOptions : '' }}"
  33. show-toolbar
  34. value-key="dictLabel"
  35. bind:cancel="closeBox"
  36. bind:confirm="onConfirmPick"
  37. data-name="showProjectFundType"
  38. data-value="checkedStatusText"
  39. />
  40. </van-popup>
  41. </view>
  42. <van-swipe-cell right-width="{{ 0 }}" class="workflow" wx:for="{{listNy}}" wx:key="index">
  43. <view class="li" data-id="{{item.id}}" bindtap="goSee">
  44. <view style="display: flex;align-items: center;">
  45. <image src="/image/icon/{{showGroup == '1'? 'icon_zyzc' : showGroup == '2' ? 'icon_jsyd' : showGroup == '3' ? 'icon_wlyd' : '' }}.png" style="width: {{showGroup == '1'? '16.76' : showGroup == '2' ? '16.35' : showGroup == '3' ? '13.29' : '' }}px;height: {{showGroup == '1'? '14.3' : showGroup == '2' ? '13.03' : showGroup == '3' ? '15.5' : '' }}px;margin-right: 5px;"></image>
  46. <text class="tit">{{item.name}}</text>
  47. <!-- <text class="fj_name">附件{{item.enclosureCount}}</text> -->
  48. <text class="time yes">{{item.status == 0 ? '正常' : '停用'}}</text>
  49. </view>
  50. <view style="display: flex;margin-top: 15px;justify-content: space-between;align-items: center;">
  51. <view class="fksr">{{item.resourceSortText}}</view>
  52. <text class="time">{{item.code}}</text>
  53. <text class="money">{{item.totalArea}}亩</text>
  54. </view>
  55. </view>
  56. <!-- <view slot="right" class="deleteBox">
  57. <view style="flex: 1;height: 100%;display: flex;align-items: center;justify-content: space-evenly;background-color: #FC9A55;" data-id="{{item.id}}" data-index="{{index}}" bindtap="goUpdate">
  58. <view>
  59. <image src="../../image/icon/icon_xg2.png" style="width: 25px;height: 25px;margin: 0 auto;" ></image>
  60. <text style="color: #ffffff;">修改</text>
  61. </view>
  62. </view>
  63. </view> -->
  64. </van-swipe-cell>
  65. <van-empty wx:if="{{flowListSRNum == 0 && showGroup}}" description="暂无收入事项数据" />
  66. <view class="ipXbtn"></view>
  67. <!-- <view class="bottom" wx:if="{{flowListSR[0].checkedStatusText == '未提交' || flowListSR[0].checkedStatusText == '已挂起' || flowListZC[0].checkedStatusText == '未提交' || flowListZC[0].checkedStatusText == '已挂起'}}">
  68. <view class="btn2" bindtap="goSubmit">提交记账</view>
  69. </view> -->