list.wxml 918 B

12345678910111213141516171819202122232425262728
  1. <view class="head">
  2. <view class="count">
  3. 关联任务
  4. </view>
  5. <view class="expand">
  6. <van-search wx:if="{{showSearch}}" custom-class='custom-class' focus='{{focus}}' value="{{ condition }}"
  7. shape="round" bind:change='onChange' bind:search='onSearch' bind:clear='onSearch' placeholder="搜索关键词"
  8. background='#F4F5F7' />
  9. <navigator url="#" class="but" bindtap="toSearch">
  10. <van-icon name="search" />
  11. </navigator>
  12. </view>
  13. </view>
  14. <view class="project-item" wx:key="sa_doctorid" wx:if="{{list.sys_taskid != 0}}">
  15. <view class="main">
  16. <view class="label" style="font-weight: bold;">
  17. {{list.tasktitle}}
  18. </view>
  19. <view class="replenish">
  20. <text style="margin-top: 10rpx;margin-bottom: 10rpx;color: #b5b5b5;">{{followdate}}</text>
  21. </view>
  22. <view class="replenish">
  23. <text style="font-size: 28rpx;">{{list.taskcontenttext || ''}}</text>
  24. </view>
  25. </view>
  26. </view>
  27. <My_empty wx:else />