You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
967 B
26 lines
967 B
<view |
|
class="page" |
|
style="background: url({{imageUrl}}doctor-rank-bg.png?r={{Timestamp}}) no-repeat top center/100% 326rpx;" |
|
> |
|
<view class="container"> |
|
<view class="table" wx:if="{{list.length}}"> |
|
<view class="thead"> |
|
<view class="th1">医院</view> |
|
<view class="th2">医生总数</view> |
|
<view class="th3">S1</view> |
|
<view class="th4">S2</view> |
|
<view class="th5">S3</view> |
|
</view> |
|
<view class="tbody"> |
|
<view class="tr" wx:for="{{list}}" wx:key="HospitalId"> |
|
<view class="td1">{{index+1}} {{item.HospitalName}}</view> |
|
<view class="td2">{{item.TotalDoctorCount}}</view> |
|
<view class="td3">{{item.DoctorLevel1Count}}</view> |
|
<view class="td4">{{item.DoctorLevel2Count}}</view> |
|
<view class="td5">{{item.DoctorLevel3Count}}</view> |
|
</view> |
|
</view> |
|
</view> |
|
<pagination pagination="{{pagination}}"></pagination> |
|
</view> |
|
</view>
|
|
|