| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <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>
- <navigator wx:if="{{disabled}}" url="#" class="but" bindtap="insetr">
- <van-icon name="plus" />
- </navigator>
- </view>
- </view>
- <view class="project-item" wx:for="{{list}}" wx:key="sa_doctorid">
- <view class="main">
- <view class="label">
- {{item.doctorname}}
- </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.hospitalname || '--'}}</text>
- </view>
- <view class="bottom">
- <text style="color: #666;">产品培训费用:</text>
- <input placeholder="费用(元)" type="digit" value="{{item.amount ||''}}" bindblur="changeAmount"
- data-index="{{index}}" />
- </view>
- <view wx:if="{{disabled}}" class="iconfont-box" data-item="{{item}}" bind:tap="deleteItem">
- <view class="iconfont icon-shanchu1" />
- </view>
- </view>
- </view>
- <My_empty wx:if="{{list.length==0}}" />
|