record.wxml 918 B

12345678910111213141516171819202122232425
  1. <van-search value="{{ condition }}" shape="round" background="var(--primary)" bind:search='startSearch' bind:clear='cancelSearch' placeholder="搜索" />
  2. <view class="data-display">
  3. <view class="item" wx:for="{{showArr}}" wx:key="index">
  4. <view class="label">{{item.label}}</view>
  5. <view class="nubmer">{{item.value}}</view>
  6. </view>
  7. </view>
  8. <view class="total">
  9. 总共{{total}}个
  10. </view>
  11. <navigator url="#" class="list-box" wx:for="{{list}}">
  12. <view class="circle">{{item.name[0]}}</view>
  13. <view class="content">
  14. <view class="title">
  15. <view class="line-1">{{item.name}}</view>
  16. <van-tag type="warning" plain wx:if="{{item.userid==userid}}">我的</van-tag>
  17. </view>
  18. <view class="time">提报时间:{{item.createdate}}</view>
  19. </view>
  20. <view class="right">
  21. <van-icon name="arrow" color='#CCCCCC' />
  22. </view>
  23. </navigator>