|
@@ -22,17 +22,17 @@
|
22
|
22
|
<view class="name" v-if="type === 'patient'">
|
23
|
23
|
患者名称<text class="red">({{typeList.patient.titleCount}})</text>
|
24
|
24
|
</view>
|
25
|
|
- <view class="name" v-if="type === 'checkType'">
|
26
|
|
- 项目名称<text class="red">({{typeList.patient.titleCount}})</text>
|
|
25
|
+ <view class="name" v-if="type === 'specimenDesc'">
|
|
26
|
+ 项目名称<text class="red">({{typeList.specimenDesc.titleCount}})</text>
|
27
|
27
|
</view>
|
28
|
28
|
<view class="value" v-if="type === 'patient'">
|
29
|
29
|
<view>
|
30
|
30
|
标本数量<text class="red">({{typeList.patient.count}})</text>
|
31
|
31
|
</view>
|
32
|
32
|
</view>
|
33
|
|
- <view class="value" v-if="type === 'checkType'">
|
|
33
|
+ <view class="value" v-if="type === 'specimenDesc'">
|
34
|
34
|
<view>
|
35
|
|
- 标本数量<text class="red">({{typeList.patient.count}})</text>
|
|
35
|
+ 标本数量<text class="red">({{typeList.specimenDesc.count}})</text>
|
36
|
36
|
</view>
|
37
|
37
|
</view>
|
38
|
38
|
</view>
|
|
@@ -41,8 +41,8 @@
|
41
|
41
|
<view class="name" v-if="type === 'patient'">
|
42
|
42
|
{{item.patientname}}
|
43
|
43
|
</view>
|
44
|
|
- <view class="name" v-if="type === 'checkType'">
|
45
|
|
- {{item.stype}}
|
|
44
|
+ <view class="name" v-if="type === 'specimenDesc'">
|
|
45
|
+ {{item.specimen_desc}}
|
46
|
46
|
</view>
|
47
|
47
|
<view class="value">
|
48
|
48
|
<view>
|
|
@@ -78,7 +78,7 @@
|
78
|
78
|
data() {
|
79
|
79
|
return {
|
80
|
80
|
hosId: uni.getStorageSync('userData').user.currentHospital.id,
|
81
|
|
- type: 'patient',//patient|checkType
|
|
81
|
+ type: 'patient',//patient|specimenDesc
|
82
|
82
|
queryObj: {}, //路由传递过来的数据
|
83
|
83
|
typeList: {
|
84
|
84
|
"patient": {
|
|
@@ -87,7 +87,7 @@
|
87
|
87
|
count: 0,
|
88
|
88
|
titleCount: 0,
|
89
|
89
|
},
|
90
|
|
- "checkType": {
|
|
90
|
+ "specimenDesc": {
|
91
|
91
|
id: -2,
|
92
|
92
|
name: '检验项目',
|
93
|
93
|
count: 0,
|
|
@@ -283,7 +283,7 @@
|
283
|
283
|
},
|
284
|
284
|
initData(){
|
285
|
285
|
this.getInfo('patient');
|
286
|
|
- this.getInfo('checkType');
|
|
286
|
+ this.getInfo('specimenDesc');
|
287
|
287
|
},
|
288
|
288
|
},
|
289
|
289
|
onLoad(options) {
|