|
|
|
<view class="page">
|
|
|
|
<view class="user">
|
|
|
|
<doctorAvatar class="avatar" src="{{userInfo.Img}}" level="{{userInfo.DoctorLevel}}"></doctorAvatar>
|
|
|
|
<image class="code" bind:tap="handleInvite" src="{{imageUrl}}icon-code.png?t={{Timestamp}}"></image>
|
|
|
|
<view class="wrap">
|
|
|
|
<view class="w-header">
|
|
|
|
<view class="name">{{userInfo.Name}}</view>
|
|
|
|
<view class="desc">
|
|
|
|
<block wx:if="{{userInfo.TitleType === 99}}">{{userInfo.OtherTitle}}</block>
|
|
|
|
<block wx:else>{{DoctorTitleType[userInfo.TitleType]}}</block>
|
|
|
|
<block wx:for="{{userInfo.Department}}" wx:key="DepartmentId">
|
|
|
|
<view class="line"></view>
|
|
|
|
{{item.DepartmentName}}
|
|
|
|
</block>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="w-container">
|
|
|
|
<view class="hostipal">{{userInfo.HospitalName}}</view>
|
|
|
|
<view class="tag">{{userInfo.HospitalClassificationName}}{{userInfo.HospitalLevelName}}</view>
|
|
|
|
<view class="site" wx:if="{{userInfo.CityName}}">
|
|
|
|
{{userInfo.CityName}}{{userInfo.CountyName?'/':''}}{{userInfo.CountyName}}
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="w-footer" wx:if="{{userInfo.Specialty.length}}">
|
|
|
|
<image class="wf-label" src="{{imageUrl}}text-specialty.png?t={{Timestamp}}" mode="aspectFit"></image>
|
|
|
|
<view class="wf-tag" wx:for="{{userInfo.Specialty}}" wx:key="SpecialtyId">{{item.SpecialtyName}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="banner">
|
|
|
|
<view class="title">待处理事项</view>
|
|
|
|
<view class="bg">
|
|
|
|
<view
|
|
|
|
class="b-container"
|
|
|
|
wx:if="{{take.dealCaseCount>0 || take.notReadFeedBackCount>0 || take.notReadChatRoomCount>0 || take.toAuditDoctorCount>0}}"
|
|
|
|
>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">待处理病历</view>
|
|
|
|
<view class="num">{{take.dealCaseCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">病历更新</view>
|
|
|
|
<view class="num">{{take.notReadFeedBackCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">聊天室消息</view>
|
|
|
|
<view class="num">{{take.notReadChatRoomCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">医生待审核</view>
|
|
|
|
<view class="num">{{take.toAuditDoctorCount}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="b-container-none" wx:else>暂时没有需要处理的事项哦~</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view
|
|
|
|
class="stat"
|
|
|
|
wx:if="{{case.totalCaseCount>0}}"
|
|
|
|
style="background: url({{imageUrl}}home-stat-bg.png?r={{Timestamp}}) no-repeat top center/100% 100%;"
|
|
|
|
>
|
|
|
|
<view class="title">我管理的病历</view>
|
|
|
|
<!-- <view class="more">
|
|
|
|
查看全部
|
|
|
|
<van-icon name="arrow" />
|
|
|
|
</view> -->
|
|
|
|
<view class="s-container">
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">全部</view>
|
|
|
|
<view class="num">{{case.totalCaseCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="line"></view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">
|
|
|
|
新病历
|
|
|
|
<van-icon name="question" color="rgba(224, 224, 224, 1)" />
|
|
|
|
</view>
|
|
|
|
<view class="num">{{case.newCaseCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">
|
|
|
|
讨论中
|
|
|
|
<van-icon name="question" color="rgba(224, 224, 224, 1)" />
|
|
|
|
</view>
|
|
|
|
<view class="num">{{case.feedbackCaseCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">
|
|
|
|
已归档
|
|
|
|
<van-icon name="question" color="rgba(224, 224, 224, 1)" />
|
|
|
|
</view>
|
|
|
|
<view class="num">{{case.archiveCaseCount}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view
|
|
|
|
class="stat-none"
|
|
|
|
style="background: url({{imageUrl}}home-stat-bg.png?r={{Timestamp}}) no-repeat top center/100% 100%;"
|
|
|
|
wx:else
|
|
|
|
>
|
|
|
|
<view class="title">我管理的病历</view>
|
|
|
|
<view class="s-container">
|
|
|
|
<image class="none" src="{{imageUrl}}empty-3.png?t={{Timestamp}}"></image>
|
|
|
|
<view class="tip">还没有提交病历</view>
|
|
|
|
<view class="btn" bind:tap="handleEntryCase">提交病历</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view
|
|
|
|
class="stat"
|
|
|
|
wx:if="{{doctorCount.TotalCount>0}}"
|
|
|
|
style="background: url({{imageUrl}}home-stat-bg.png?r={{Timestamp}}) no-repeat top center/100% 100%;"
|
|
|
|
>
|
|
|
|
<view class="title">我管理的医生</view>
|
|
|
|
<view class="more" bind:tap="handleOrg">
|
|
|
|
查看全部
|
|
|
|
<van-icon name="arrow" />
|
|
|
|
</view>
|
|
|
|
<view class="s-container">
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">
|
|
|
|
全部
|
|
|
|
<van-icon name="question" color="rgba(224, 224, 224, 1)" />
|
|
|
|
</view>
|
|
|
|
<view class="num">{{doctorCount.TotalCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="line"></view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">
|
|
|
|
二级医生
|
|
|
|
<van-icon name="question" color="rgba(224, 224, 224, 1)" />
|
|
|
|
</view>
|
|
|
|
<view class="num">{{doctorCount.TwoCount}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<view class="name">
|
|
|
|
一级医生
|
|
|
|
<van-icon name="question" color="rgba(224, 224, 224, 1)" />
|
|
|
|
</view>
|
|
|
|
<view class="num">{{doctorCount.OneCount}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view
|
|
|
|
class="stat-none"
|
|
|
|
style="background: url({{imageUrl}}home-stat-bg.png?r={{Timestamp}}) no-repeat top center/100% 100%;"
|
|
|
|
wx:else
|
|
|
|
>
|
|
|
|
<view class="title">我管理的医生</view>
|
|
|
|
<view class="s-container">
|
|
|
|
<image class="none" src="{{imageUrl}}empty-3.png?t={{Timestamp}}"></image>
|
|
|
|
<view class="tip">还没有邀约的医生</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|