|
@@ -4,11 +4,13 @@
|
|
|
<view class="nameBox">
|
|
|
<view class="name">{{patientName}}</view>
|
|
|
</view>
|
|
|
- <view class="cardNum">{{patId}}</view>
|
|
|
+ <view class="cardNum">{{cardId}}</view>
|
|
|
<view class="list">
|
|
|
<view class="item" v-for="(item, index) in item">
|
|
|
<view class="topTitle">{{ titleType(item.diagnosticType) }}</view>
|
|
|
<view class="title">{{ item.diagnosticName }}</view>
|
|
|
+ <view class="doc">主治医生: {{item.doctor}} </view>
|
|
|
+ <view class="dept">就诊科室: {{item.departmentName}} </view>
|
|
|
<view class="botBox">
|
|
|
<view class="time">诊断时间: {{item.diagnosisTime}} </view>
|
|
|
<view class="type">{{ diaCode(item.diagnosticCategoryCode) }}</view>
|
|
@@ -25,12 +27,12 @@
|
|
|
return {
|
|
|
item: [],
|
|
|
patientName:'',
|
|
|
- patId:'',
|
|
|
+ cardId:'',
|
|
|
}
|
|
|
},
|
|
|
onLoad(e) {
|
|
|
console.log(e);
|
|
|
- this.patId = e.patId
|
|
|
+ this.cardId = e.cardId
|
|
|
this.patientName = e.patientName
|
|
|
this.http.request({
|
|
|
url: '/work/diagnosis/list?visitId=' + e.id,
|