|
|
|
@ -3,7 +3,7 @@
@@ -3,7 +3,7 @@
|
|
|
|
|
<view class="detail-card"> |
|
|
|
|
<view class="li-header"> |
|
|
|
|
<view class="wrap"> |
|
|
|
|
<view class="id">ID:{{detail.caseId}}</view> |
|
|
|
|
<view class="id">ID:{{detail.caseNo}}</view> |
|
|
|
|
<view class="status status3" wx:if="{{detail.caseStatus==='1'}}">{{detail.caseStatusName}}</view> |
|
|
|
|
<view class="status status2" wx:elif="{{detail.caseStatus==='2'}}">{{detail.caseStatusName}}</view> |
|
|
|
|
<view class="status status1" wx:elif="{{detail.caseStatus==='3'}}">{{detail.caseStatusName}}</view> |
|
|
|
@ -37,7 +37,9 @@
@@ -37,7 +37,9 @@
|
|
|
|
|
<view class="tag"> |
|
|
|
|
{{detail.createDoctorInfo.hospitalClassificationName}}{{detail.createDoctorInfo.hospitalLevelName}} |
|
|
|
|
</view> |
|
|
|
|
<view class="site">{{detail.createDoctorInfo.cityName}}/{{detail.createDoctorInfo.countyName}}</view> |
|
|
|
|
<view class="site" wx:if="{{detail.createDoctorInfo.cityName}}"> |
|
|
|
|
{{detail.createDoctorInfo.cityName}}{{detail.createDoctorInfo.countyName?'/':''}}{{detail.createDoctorInfo.countyName}} |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -80,7 +82,7 @@
@@ -80,7 +82,7 @@
|
|
|
|
|
<view class="file-list"> |
|
|
|
|
<view class="fl-row" wx:for="{{detail.caseFiles}}" wx:key="url"> |
|
|
|
|
<view class="wrap"> |
|
|
|
|
<image class="icon" src="{{imageUrl}}icon-file.png?t={{Timestamp}}"></image> |
|
|
|
|
<image class="icon" src="{{imageUrl}}icon-file{{item.fileType}}.png?t={{Timestamp}}"></image> |
|
|
|
|
<view class="name">{{item.name}}</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="option"> |
|
|
|
@ -110,13 +112,15 @@
@@ -110,13 +112,15 @@
|
|
|
|
|
src="{{imageUrl}}self.png?t={{Timestamp}}" |
|
|
|
|
mode="scaleToFill" |
|
|
|
|
></image> |
|
|
|
|
<image |
|
|
|
|
wx:if="{{item.isSelf===1}}" |
|
|
|
|
class="gather" |
|
|
|
|
src="{{imageUrl}}icon-gather.png?t={{Timestamp}}" |
|
|
|
|
bind:tap="handleDelFeedBack" |
|
|
|
|
data-index="{{index}}" |
|
|
|
|
></image> |
|
|
|
|
<view wx:if="{{item.isSelf===1}}" class="option"> |
|
|
|
|
<image class="o-icon" src="{{imageUrl}}icon-gather.png?t={{Timestamp}}"></image> |
|
|
|
|
<view class="option-popup"> |
|
|
|
|
<view class="op-row" bind:tap="handleDelFeedBack" data-index="{{index}}"> |
|
|
|
|
<image class="icon" src="{{imageUrl}}icon-del-dark.png?t={{Timestamp}}"></image> |
|
|
|
|
删除 |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="li-row"> |
|
|
|
|
<view class="label">提交时间</view> |
|
|
|
@ -142,13 +146,15 @@
@@ -142,13 +146,15 @@
|
|
|
|
|
<view class="tag"> |
|
|
|
|
{{item.createDoctorInfo.hospitalClassificationName}}{{item.createDoctorInfo.hospitalLevelName}} |
|
|
|
|
</view> |
|
|
|
|
<view class="site">{{item.createDoctorInfo.cityName}}/{{item.createDoctorInfo.countyName}}</view> |
|
|
|
|
<view class="site" wx:if="{{item.createDoctorInfo.cityName}}"> |
|
|
|
|
{{item.createDoctorInfo.cityName}}{{item.createDoctorInfo.countyName?'/':''}}{{item.createDoctorInfo.countyName}} |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="cases {{item.fold && 'fold'}}"> |
|
|
|
|
<view class="remark" wx:if="{{item.info}}"> |
|
|
|
|
<view class="r-title">对病例的标注</view> |
|
|
|
|
<view class="r-title">对病历的标注</view> |
|
|
|
|
<view class="r-content">{{item.info}}</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="audio-list" wx:if="{{item.feedbackAudios.length}}"> |
|
|
|
@ -176,7 +182,7 @@
@@ -176,7 +182,7 @@
|
|
|
|
|
<view class="file-list"> |
|
|
|
|
<view class="fl-row" wx:for="{{item.feedbackFiles}}" wx:for-item="cItem" wx:key="url"> |
|
|
|
|
<view class="wrap"> |
|
|
|
|
<image class="icon" src="{{imageUrl}}icon-file.png?t={{Timestamp}}"></image> |
|
|
|
|
<image class="icon" src="{{imageUrl}}icon-file{{cItem.fileType}}.png?t={{Timestamp}}"></image> |
|
|
|
|
<view class="name">{{cItem.name}}</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="option"> |
|
|
|
@ -221,7 +227,7 @@
@@ -221,7 +227,7 @@
|
|
|
|
|
<view class="w-container"> |
|
|
|
|
<text class="hostipal">{{dealDoctorInfo.hospitalName}}</text> |
|
|
|
|
<view class="tag">{{dealDoctorInfo.hospitalClassificationName}}{{dealDoctorInfo.hospitalLevelName}}</view> |
|
|
|
|
<view class="site">{{dealDoctorInfo.cityName}}/{{dealDoctorInfo.countyName}}</view> |
|
|
|
|
<view class="site" wx:if="{{dealDoctorInfo.cityName}}">{{dealDoctorInfo.cityName}}{{dealDoctorInfo.countyName?'/':''}}{{dealDoctorInfo.countyName}}</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="w-footer"> |
|
|
|
|
<image class="wf-label" src="{{imageUrl}}text-specialty.png?t={{Timestamp}}" mode="aspectFit"></image> |
|
|
|
@ -333,10 +339,9 @@
@@ -333,10 +339,9 @@
|
|
|
|
|
</view> |
|
|
|
|
<view class="w-item" wx:if="{{auth.canSetOpen && !foldAuth.canSetOpen}}" bind:tap="handleOpen"> |
|
|
|
|
<image class="icon" src="{{imageUrl}}case-detail-footer-icon8.png?t={{Timestamp}}"></image> |
|
|
|
|
<view class="name">{{detail.isOpen==='1'?'公开':'取消公开'}}</view> |
|
|
|
|
<view class="name">{{detail.isOpen==='1'?'取消公开':'公开'}}</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
<view class="btn-wrap" wx:if="{{auth.canFeedback}}"> |
|
|
|
|
<view class="btn1" bind:tap="handleFeedBack">提交反馈</view> |
|
|
|
|
</view> |
|
|
|
|