| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <van-search value="{{ params.content.where.condition }}" shape='round' placeholder="请输入搜索关键词" use-action-slot bind:clear='onClear' bind:search="startSearch">
- </van-search>
- <view class="global-total">总共{{params.content.total}}个</view>
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <navigator url="#" class="project-item" wx:for="{{list}}" wx:key="sa_doctorid" data-id="{{item.sa_doctorid}}" bind:tap="changeResult">
- <view class="main">
- <view class="label">
- {{item.doctorname}}
- </view>
- <view class="tag-box">
- <view class="systemtag" wx:for="{{item.tag_sys}}" wx:key="item">{{item}}</view>
- <view class="datatag" wx:for="{{item.tag}}" wx:key="item">{{item}}</view>
- </view>
- <view class="replenish">
- <text style="color: #666;">联系方式:</text>
- <text>{{item.phonenumber}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">职称:</text>
- <text>{{item.professional}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">所属科室:</text>
- <text>{{item.hospitaldepname || '--'}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">是否科室负责人:</text>
- <text>{{item.isleader==0?'否':'是'}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">所属医院:</text>
- <text>{{item.hospitalname || item.enterprisename || '--'}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">负责人:</text>
- <text>{{item.leader[0].name}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">备注:</text>
- <text>{{item.remarks || '--'}}</text>
- </view>
- </view>
- </navigator>
- <view wx:if="{{!radio}}" style="height: 70rpx;" />
- <My_empty wx:if="{{!list.length}}" />
- </Yl_ListBox>
- <block wx:if="{{!radio}}">
- <view class="footer">
- <view class="count">
- 已选:{{result.length}}
- </view>
- <van-button custom-class='but' disabled='{{result.length==0}}' bind:click="submit">确定</van-button>
- </view>
- <wxs module="handle">
- module.exports = {
- isCheck: function (id, list) {
- return list.some(function (v) {
- return v == id
- });
- },
- }
- </wxs>
- </block>
|