微信小程序
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 lines
2.0 KiB

  1. <!--pages/index/policy/list/list.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 style="margin-top:{{isIPX?'88px':'64px'}};background: linear-gradient(to right, #429a68, #9ecf67);">
  7. <van-search
  8. value="{{ value }}"
  9. shape="round"
  10. background="transparent"
  11. placeholder="请输入相关内容搜索"
  12. clearable
  13. bind:change="goSearch"
  14. use-left-icon-slot
  15. >
  16. <van-icon slot="left-icon" name="search" size="20" color="#2962EF" style="margin-right: 10px;" />
  17. </van-search>
  18. </view>
  19. <van-dropdown-menu>
  20. <van-dropdown-item value="{{ statisticsTypeId }}" options="{{ option1 }}" bind:change="changeTab" />
  21. </van-dropdown-menu>
  22. <scroll-view scroll-y refresher-threshold="0" style="height:76vh" bindscrolltolower="paging" lower-threshold="100">
  23. <!-- <view class="flex_main" bind:tap="goDetail">
  24. <van-cell use-label-slot border="{{false}}">
  25. <view slot="icon" style="border-right: 3px solid #9ecf67;height: 16px;margin-top: .5vh;margin-right: 5px;"></view>
  26. <view slot="title">
  27. <text class="title">主体名称主体名称主体名称主体名称主体名称{{statisticsTypeId}}</text>
  28. </view>
  29. <view slot="label" class="label">
  30. <text>法人姓名</text>
  31. <text>主体地址主体地址主体地址主体地址</text>
  32. </view>
  33. </van-cell>
  34. </view> -->
  35. <view class="flex_main" wx:for="{{list}}" data-id="{{item.id}}" bind:tap="goDetail">
  36. <van-cell use-label-slot border="{{false}}">
  37. <view slot="icon" style="border-right: 3px solid #9ecf67;height: 16px;margin-top: .5vh;margin-right: 5px;"></view>
  38. <view slot="title">
  39. <text class="title">{{item.entityName}}</text>
  40. </view>
  41. <view slot="label" class="label">
  42. <text>{{item.corporateRepresentativeName}}</text>
  43. <text>{{item.entityAddress}}</text>
  44. </view>
  45. </van-cell>
  46. </view>
  47. </scroll-view>