| 12345678910111213141516171819202122232425262728 |
- <view class="head">
- <view class="count">
- 关联任务
- </view>
- <view class="expand">
- <van-search wx:if="{{showSearch}}" custom-class='custom-class' focus='{{focus}}' value="{{ condition }}"
- shape="round" bind:change='onChange' bind:search='onSearch' bind:clear='onSearch' placeholder="搜索关键词"
- background='#F4F5F7' />
- <navigator url="#" class="but" bindtap="toSearch">
- <van-icon name="search" />
- </navigator>
- </view>
- </view>
- <view class="project-item" wx:key="sa_doctorid" wx:if="{{list.sys_taskid != 0}}">
- <view class="main">
- <view class="label" style="font-weight: bold;">
- {{list.tasktitle}}
- </view>
- <view class="replenish">
- <text style="margin-top: 10rpx;margin-bottom: 10rpx;color: #b5b5b5;">{{followdate}}</text>
- </view>
- <view class="replenish">
- <text style="font-size: 28rpx;">{{list.taskcontenttext || ''}}</text>
- </view>
- </view>
- </view>
- <My_empty wx:else />
|