|
@@ -25,14 +25,16 @@
|
25
|
25
|
</view>
|
26
|
26
|
</view>
|
27
|
27
|
<view class="page_item_top_R">
|
28
|
|
- <!-- <text class="L_iocn">{{infoDATA.taskType.associationType.name}}</text> -->
|
29
|
|
- <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimen'">标本</text>
|
30
|
|
- <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimenPlan'">标本</text>
|
31
|
|
- <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">药品</text>
|
32
|
|
- <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'jPBag'">静配</text>
|
33
|
|
- <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">患者陪检</text>
|
34
|
|
- <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'patientTransport'">患者转运</text>
|
35
|
|
- <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他</text>
|
|
28
|
+ <text class="L_iocn" v-if="
|
|
29
|
+ !(
|
|
30
|
+ infoDATA.gdState.value == 5 &&
|
|
31
|
+ infoDATA.taskType.associationType.value == 'inspect'
|
|
32
|
+ )
|
|
33
|
+ ">{{ infoDATA.gdState.name }}</text>
|
|
34
|
+ <text class="L_iocn" v-if="
|
|
35
|
+ infoDATA.gdState.value == 5 &&
|
|
36
|
+ infoDATA.taskType.associationType.value == 'inspect'
|
|
37
|
+ ">待送回</text>
|
36
|
38
|
</view>
|
37
|
39
|
|
38
|
40
|
<view class="L"></view>
|
|
@@ -92,6 +94,18 @@
|
92
|
94
|
">待送回</text>
|
93
|
95
|
</view>
|
94
|
96
|
<view class="page_item_foot_text">
|
|
97
|
+ <text class="text1">关联类型</text>
|
|
98
|
+ <text class="text2">{{ infoDATA.taskType.associationType.name }}</text>
|
|
99
|
+ </view>
|
|
100
|
+ <view class="page_item_foot_text">
|
|
101
|
+ <text class="text1">任务类型</text>
|
|
102
|
+ <text class="text2">{{ infoDATA.taskType.taskName }}</text>
|
|
103
|
+ </view>
|
|
104
|
+ <view class="page_item_foot_text">
|
|
105
|
+ <text class="text1">是否半程陪检</text>
|
|
106
|
+ <text class="text2">{{ infoDATA.taskType.isHalfInspect===1?'是':'否' }}</text>
|
|
107
|
+ </view>
|
|
108
|
+ <view class="page_item_foot_text">
|
95
|
109
|
<text class="text1">执行人员</text>
|
96
|
110
|
<text class="text2">{{ infoDATA.worker?infoDATA.worker.name:'-' }}</text>
|
97
|
111
|
</view>
|