|
@@ -0,0 +1,844 @@
|
|
1
|
+<template>
|
|
2
|
+ <view class="orderDetail">
|
|
3
|
+ <!-- 头部 -->
|
|
4
|
+ <view class="orderDetail_header">
|
|
5
|
+ <view class="orderDetail_header_item" v-for="tab in tabs" :key="tab.id" :class="{active:tab.id === selectedTab}"
|
|
6
|
+ @click="debouncedChangeTab(tab.id)">
|
|
7
|
+ {{tab.name}}
|
|
8
|
+ </view>
|
|
9
|
+ </view>
|
|
10
|
+ <!-- tab -->
|
|
11
|
+ <!-- 工单信息 -->
|
|
12
|
+ <view class="orderDetail_info" v-show="selectedTab === 1">
|
|
13
|
+ <scroll-view scroll-y class="orderDetail_infoItem" v-if="orderInfo.id">
|
|
14
|
+ <view class="orderDetail_infoItem_header">
|
|
15
|
+ <view class="orderDetail_infoItem_header_title">
|
|
16
|
+ <view class="icon"></view>
|
|
17
|
+ <view class="taskNameAndWorkerName">
|
|
18
|
+ <text class="taskName"
|
|
19
|
+ v-if="orderInfo.taskType">{{orderInfo.isHalfInspect === 1? "半程陪检": orderInfo.taskType.taskName}}</text>
|
|
20
|
+ </view>
|
|
21
|
+ </view>
|
|
22
|
+ <text class="orderDetail_infoItem_header_more">{{orderInfo.gdcode}}</text>
|
|
23
|
+ </view>
|
|
24
|
+ <view class="orderDetail_infoItem_item">
|
|
25
|
+ <view class="orderDetail_infoItem_item_content">
|
|
26
|
+ <text class="orderDetail_infoItem_item_name">状态</text>
|
|
27
|
+ <text class="orderDetail_infoItem_item_value" v-if="orderInfo.gdState">{{orderInfo.gdState.name}}</text>
|
|
28
|
+ </view>
|
|
29
|
+ <view class="orderDetail_infoItem_item_content">
|
|
30
|
+ <text class="orderDetail_infoItem_item_name">工单日期</text>
|
|
31
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.startTime || '暂无'}}</text>
|
|
32
|
+ </view>
|
|
33
|
+ <view class="orderDetail_infoItem_item_content">
|
|
34
|
+ <text class="orderDetail_infoItem_item_name">总耗时</text>
|
|
35
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.showTimeNum || '暂无'}}</text>
|
|
36
|
+ </view>
|
|
37
|
+ <view class="orderDetail_infoItem_item_content">
|
|
38
|
+ <text class="orderDetail_infoItem_item_name">申请科室</text>
|
|
39
|
+ <text
|
|
40
|
+ class="orderDetail_infoItem_item_value">{{orderInfo.createDeptDTO?(deptDisplay==2?orderInfo.createDeptDTO.deptalias:orderInfo.createDeptDTO.dept):'暂无'}}</text>
|
|
41
|
+ </view>
|
|
42
|
+ <view class="orderDetail_infoItem_item_content">
|
|
43
|
+ <text class="orderDetail_infoItem_item_name">起点科室</text>
|
|
44
|
+ <text
|
|
45
|
+ class="orderDetail_infoItem_item_value">{{orderInfo.startDept?(deptDisplay==2?orderInfo.startDept.deptalias:orderInfo.startDept.dept):'暂无'}}</text>
|
|
46
|
+ </view>
|
|
47
|
+ <view class="orderDetail_infoItem_item_content"
|
|
48
|
+ v-if="orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务']||orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['患者其他服务业务']">
|
|
49
|
+ <text class="orderDetail_infoItem_item_name">中间科室</text>
|
|
50
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.middleDept || '暂无'}}</text>
|
|
51
|
+ </view>
|
|
52
|
+ <view class="orderDetail_infoItem_item_content">
|
|
53
|
+ <text class="orderDetail_infoItem_item_name">目标科室</text>
|
|
54
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.endDepts}}</text>
|
|
55
|
+ </view>
|
|
56
|
+ <view class="orderDetail_infoItem_item_content">
|
|
57
|
+ <text class="orderDetail_infoItem_item_name">支助人员</text>
|
|
58
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.worker?orderInfo.worker.name:'暂无'}}</text>
|
|
59
|
+ </view>
|
|
60
|
+ <view class="orderDetail_infoItem_item_content">
|
|
61
|
+ <text class="orderDetail_infoItem_item_name">联系电话</text>
|
|
62
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.worker?orderInfo.worker.phone:'暂无'}}</text>
|
|
63
|
+ </view>
|
|
64
|
+ <view class="orderDetail_infoItem_item_content"
|
|
65
|
+ v-if="orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务']||orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['患者其他服务业务']">
|
|
66
|
+ <text class="orderDetail_infoItem_item_name">陪同情况</text>
|
|
67
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.isAccompany==1?'需要医护陪同':'无需医护陪同'}}</text>
|
|
68
|
+ </view>
|
|
69
|
+ <view class="orderDetail_infoItem_item_content"
|
|
70
|
+ v-if="orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务']||orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['患者其他服务业务']">
|
|
71
|
+ <text class="orderDetail_infoItem_item_name">预约时间</text>
|
|
72
|
+ <text class="orderDetail_infoItem_item_value"
|
|
73
|
+ v-if="orderInfo.yyjdTime">{{orderInfo.yyjdTime|formatDate('MM-dd HH:mm')}}</text>
|
|
74
|
+ <text class="orderDetail_infoItem_item_value" v-else>暂无</text>
|
|
75
|
+ </view>
|
|
76
|
+ <view class="orderDetail_infoItem_item_content"
|
|
77
|
+ v-if="orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务']">
|
|
78
|
+ <text class="orderDetail_infoItem_item_name">是否半程陪检</text>
|
|
79
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.isHalfInspect===1?'是':'否'}}</text>
|
|
80
|
+ </view>
|
|
81
|
+ <view class="orderDetail_infoItem_item_content"
|
|
82
|
+ v-if="orderInfo.drugs && orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['药品配送业务']">
|
|
83
|
+ <text class="orderDetail_infoItem_item_name">药包编码</text>
|
|
84
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.drugs.packid || '暂无'}}</text>
|
|
85
|
+ </view>
|
|
86
|
+ <view class="orderDetail_infoItem_item_content"
|
|
87
|
+ v-if="orderInfo.staticDistri && orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['静配配送']">
|
|
88
|
+ <text class="orderDetail_infoItem_item_name">药包编码</text>
|
|
89
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.staticDistri.packid || '暂无'}}</text>
|
|
90
|
+ </view>
|
|
91
|
+ <view class="orderDetail_infoItem_item_content"
|
|
92
|
+ v-if="orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['临时标本业务'] || orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['标本轮巡业务']">
|
|
93
|
+ <text class="orderDetail_infoItem_item_name">预计接收</text>
|
|
94
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.expectReceiveNum||'暂无'}}</text>
|
|
95
|
+ </view>
|
|
96
|
+ <view class="orderDetail_infoItem_item_content"
|
|
97
|
+ v-if="orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['临时标本业务'] || orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['标本轮巡业务']">
|
|
98
|
+ <text class="orderDetail_infoItem_item_name">实际接收</text>
|
|
99
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.actualReceiveNum||'暂无'}}</text>
|
|
100
|
+ </view>
|
|
101
|
+ <view class="orderDetail_infoItem_item_content">
|
|
102
|
+ <text class="orderDetail_infoItem_item_name">是否加急</text>
|
|
103
|
+ <text class="orderDetail_infoItem_item_value" v-if="orderInfo.emergencyType">
|
|
104
|
+ {{(orderInfo.emergencyType.value == 2 || orderInfo.emergencyType.value == 3)?'是':'否'}}
|
|
105
|
+ </text>
|
|
106
|
+ </view>
|
|
107
|
+ <view class="orderDetail_infoItem_item_content"
|
|
108
|
+ v-if="orderInfo.workOrderRemark && (orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['临时标本业务']||orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['标本轮巡业务']||orderInfo.taskType.associationType.value === ASSOCIATION_TYPES['其他临床服务'])">
|
|
109
|
+ <text class="orderDetail_infoItem_item_name">备注信息</text>
|
|
110
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.workOrderRemark||'暂无'}}</text>
|
|
111
|
+ </view>
|
|
112
|
+ <view class="orderDetail_infoItem_item_content" v-if="orderInfo.specialCloseReason">
|
|
113
|
+ <text class="orderDetail_infoItem_item_name">特殊情况关闭原因</text>
|
|
114
|
+ <text class="orderDetail_infoItem_item_value">{{orderInfo.specialCloseReason||'暂无'}}</text>
|
|
115
|
+ </view>
|
|
116
|
+ </view>
|
|
117
|
+ </scroll-view>
|
|
118
|
+ </view>
|
|
119
|
+ <!-- 流程信息 -->
|
|
120
|
+ <view class="orderDetail_info" v-show="selectedTab === 2">
|
|
121
|
+ <scroll-view scroll-y class="orderDetail_infoItem" v-if="logList.length">
|
|
122
|
+ <view class="orderDetail_infoItem_header">
|
|
123
|
+ <view class="orderDetail_infoItem_header_title">
|
|
124
|
+ <view class="icon"></view>
|
|
125
|
+ <view class="taskNameAndWorkerName">
|
|
126
|
+ <text class="taskName">流程信息</text>
|
|
127
|
+ </view>
|
|
128
|
+ </view>
|
|
129
|
+ </view>
|
|
130
|
+ <view class="orderDetail_infoItem_item process">
|
|
131
|
+ <view class="orderDetail_process_item" v-for="(step,i) in logList" :key="i">
|
|
132
|
+ <view class="step_infoStart">
|
|
133
|
+ <view class="step_name">{{step.operationName}}</view>
|
|
134
|
+ <view class="step_time" v-if="step.record && step.record[0]">
|
|
135
|
+ {{step.record[0].operationTime|formatDate('MM-dd HH:mm')}}
|
|
136
|
+ </view>
|
|
137
|
+ </view>
|
|
138
|
+ <view class="step_icon pda pda-icon_liucheng"
|
|
139
|
+ :class="{'active':(step.record&&step.record[0]&&step.record[0].operationTime)}"></view>
|
|
140
|
+ <view class="step_infoEnd">
|
|
141
|
+ <view class="step_overtime" v-if="i!=0&&step.record&&step.record.length">
|
|
142
|
+ 耗时{{filterTime(step.record)}}
|
|
143
|
+ </view>
|
|
144
|
+ <view class="step_dept" v-if="step.record&&step.record[0]&&step.record[0].dept">
|
|
145
|
+ <text v-for="(dept,index) in step.record"
|
|
146
|
+ :key="index">{{dept?(deptDisplay == 2?dept.deptalias:dept.dept)+',':''}}</text>
|
|
147
|
+ </view>
|
|
148
|
+ </view>
|
|
149
|
+ </view>
|
|
150
|
+ </view>
|
|
151
|
+ </scroll-view>
|
|
152
|
+ </view>
|
|
153
|
+ <!-- 业务信息 -->
|
|
154
|
+ <view class="orderDetail_info" v-show="selectedTab === 3">
|
|
155
|
+ <scroll-view scroll-y class="orderDetail_infoItem">
|
|
156
|
+ <view class="orderDetail_infoItem_header">
|
|
157
|
+ <view class="orderDetail_infoItem_header_title">
|
|
158
|
+ <view class="icon"></view>
|
|
159
|
+ <view class="taskNameAndWorkerName">
|
|
160
|
+ <text class="taskName">业务信息</text>
|
|
161
|
+ </view>
|
|
162
|
+ </view>
|
|
163
|
+ </view>
|
|
164
|
+ <!-- 检查信息 -->
|
|
165
|
+ <view class="orderDetail_infoItem_item business business_inspect"
|
|
166
|
+ v-if="orderInfo.taskType&&(orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['患者陪检业务'] || orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['患者其他服务业务'])">
|
|
167
|
+ <!-- 患者信息 -->
|
|
168
|
+ <view class="inspect_info" v-if="orderInfo.patient">
|
|
169
|
+ <view class="inspect_info_block">
|
|
170
|
+ <view class="inspect_info_left">
|
|
171
|
+ <block v-if="orderInfo.patient.illnessState">
|
|
172
|
+ <view class="inspect_info_icon red" v-if="orderInfo.patient.illnessState.value === '2'">危</view>
|
|
173
|
+ <view class="inspect_info_icon red" v-else-if="orderInfo.patient.illnessState.value === '3'">重</view>
|
|
174
|
+ </block>
|
|
175
|
+ <block v-if="orderInfo.patient.careLevel">
|
|
176
|
+ <view class="inspect_info_icon red" v-if="orderInfo.patient.careLevel.value === '0'">特</view>
|
|
177
|
+ <view class="inspect_info_icon red" v-else-if="orderInfo.patient.careLevel.value === '1'">1</view>
|
|
178
|
+ <view class="inspect_info_icon green" v-else-if="orderInfo.patient.careLevel.value === '2'">2</view>
|
|
179
|
+ <view class="inspect_info_icon green" v-else-if="orderInfo.patient.careLevel.value === '3'">3</view>
|
|
180
|
+ </block>
|
|
181
|
+ <view class="inspect_info_name">{{orderInfo.patient.patientName}}</view>
|
|
182
|
+ </view>
|
|
183
|
+ <view class="inspect_info_right">
|
|
184
|
+ {{orderInfo.patient.bedNum}}床
|
|
185
|
+ </view>
|
|
186
|
+ </view>
|
|
187
|
+ <view class="inspect_info_block">
|
|
188
|
+ <view class="inspect_info_left">
|
|
189
|
+ {{orderInfo.patient.patientCode}}
|
|
190
|
+ </view>
|
|
191
|
+ <view class="inspect_info_right"
|
|
192
|
+ v-if="orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['患者陪检业务']">
|
|
193
|
+ 待检{{orderInfo.checkList.length}}
|
|
194
|
+ </view>
|
|
195
|
+ </view>
|
|
196
|
+ </view>
|
|
197
|
+ <!-- 检查信息 -->
|
|
198
|
+ <block v-if="orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['患者陪检业务']">
|
|
199
|
+ <view class="inspect_item" v-for="item in orderInfo.checkList" :key="item.id"
|
|
200
|
+ @click="toDetail(item.id,orderInfo.taskType.associationType.value)">
|
|
201
|
+ <view class="inspect_item_name">
|
|
202
|
+ {{item.inspectName||'暂无'}}
|
|
203
|
+ </view>
|
|
204
|
+ <view class="inspect_item_info">
|
|
205
|
+ <view class="inspect_item_dept">
|
|
206
|
+ {{item.execDept?(deptDisplay==2?item.execDept.deptalias:item.execDept.dept):'暂无'}}
|
|
207
|
+ </view>
|
|
208
|
+ <view class="inspect_item_number">
|
|
209
|
+ 叫号信息 {{item.reservationNumber || '暂无'}}
|
|
210
|
+ </view>
|
|
211
|
+ </view>
|
|
212
|
+ <view class="inspect_item_yytime">
|
|
213
|
+ 预约时间{{item.yyTime || '暂无'}}
|
|
214
|
+ </view>
|
|
215
|
+ </view>
|
|
216
|
+ </block>
|
|
217
|
+ </view>
|
|
218
|
+ <!-- 标本信息 -->
|
|
219
|
+ <view class="orderDetail_infoItem_item business business_specimen"
|
|
220
|
+ v-if="orderInfo.taskType&&(orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['临时标本业务'] || orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['标本轮巡业务'])">
|
|
221
|
+ <view class="inspect_specimen">
|
|
222
|
+ <uni-table stripe emptyText="暂无更多数据">
|
|
223
|
+ <!-- 表头行 -->
|
|
224
|
+ <uni-tr class="th">
|
|
225
|
+ <uni-th align="center" width="68">标本类型</uni-th>
|
|
226
|
+ <uni-th align="center" width="71">标本编码</uni-th>
|
|
227
|
+ <uni-th align="center" width="66">状态</uni-th>
|
|
228
|
+ <uni-th align="center" width="71">科室</uni-th>
|
|
229
|
+ </uni-tr>
|
|
230
|
+ <!-- 表格数据行 -->
|
|
231
|
+ <uni-tr v-for="data in orderInfo.specimenSet" :key="data.id"
|
|
232
|
+ @click.native="toDetail(data.id,orderInfo.taskType.associationType.value)">
|
|
233
|
+ <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
|
|
234
|
+ <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
|
|
235
|
+ <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
|
|
236
|
+ <uni-td align="center" class="td" v-if="data.checkDept">
|
|
237
|
+ {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
|
|
238
|
+ <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
|
|
239
|
+ </image>
|
|
240
|
+ </uni-td>
|
|
241
|
+ <uni-td align="center" class="td" v-else>
|
|
242
|
+ 暂无
|
|
243
|
+ <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
|
|
244
|
+ </image>
|
|
245
|
+ </uni-td>
|
|
246
|
+ </uni-tr>
|
|
247
|
+ </uni-table>
|
|
248
|
+ </view>
|
|
249
|
+ </view>
|
|
250
|
+ <!-- 药品信息 -->
|
|
251
|
+ <view class="orderDetail_infoItem_item business business_drugsBag"
|
|
252
|
+ v-if="orderInfo.taskType&&(orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['药品配送业务'] || orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['静配配送'])">
|
|
253
|
+ <!-- 检查信息 -->
|
|
254
|
+ <block v-if="orderInfo.drugs&&orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['药品配送业务']">
|
|
255
|
+ <view class="drugsBag_item">
|
|
256
|
+ <view class="drugsBag_item_name">
|
|
257
|
+ 发药单号
|
|
258
|
+ </view>
|
|
259
|
+ <view class="drugsBag_item_value">
|
|
260
|
+ {{orderInfo.drugs.packid || '暂无'}}
|
|
261
|
+ </view>
|
|
262
|
+ </view>
|
|
263
|
+ <view class="drugsBag_item">
|
|
264
|
+ <view class="drugsBag_item_name">
|
|
265
|
+ 发药科室
|
|
266
|
+ </view>
|
|
267
|
+ <view class="drugsBag_item_value">
|
|
268
|
+ {{orderInfo.drugs.launch?(deptDisplay == 2?orderInfo.drugs.launch.deptalias:orderInfo.drugs.launch.dept):'暂无'}}
|
|
269
|
+ </view>
|
|
270
|
+ </view>
|
|
271
|
+ <view class="drugsBag_item">
|
|
272
|
+ <view class="drugsBag_item_name">
|
|
273
|
+ 状态
|
|
274
|
+ </view>
|
|
275
|
+ <view class="drugsBag_item_value">
|
|
276
|
+ {{orderInfo.drugs.drugsState?orderInfo.drugs.drugsState.name:'暂无'}}
|
|
277
|
+ </view>
|
|
278
|
+ </view>
|
|
279
|
+ </block>
|
|
280
|
+ <block v-if="orderInfo.staticDistri&&orderInfo.taskType.associationType.value==ASSOCIATION_TYPES['静配配送']">
|
|
281
|
+ <view class="drugsBag_item">
|
|
282
|
+ <view class="drugsBag_item_name">
|
|
283
|
+ 发药单号
|
|
284
|
+ </view>
|
|
285
|
+ <view class="drugsBag_item_value">
|
|
286
|
+ {{orderInfo.staticDistri.packid || '暂无'}}
|
|
287
|
+ </view>
|
|
288
|
+ </view>
|
|
289
|
+ <view class="drugsBag_item">
|
|
290
|
+ <view class="drugsBag_item_name">
|
|
291
|
+ 发药科室
|
|
292
|
+ </view>
|
|
293
|
+ <view class="drugsBag_item_value">
|
|
294
|
+ {{orderInfo.staticDistri.launch?(deptDisplay == 2?orderInfo.staticDistri.launch.deptalias:orderInfo.staticDistri.launch.dept):'暂无'}}
|
|
295
|
+ </view>
|
|
296
|
+ </view>
|
|
297
|
+ <view class="drugsBag_item">
|
|
298
|
+ <view class="drugsBag_item_name">
|
|
299
|
+ 状态
|
|
300
|
+ </view>
|
|
301
|
+ <view class="drugsBag_item_value">
|
|
302
|
+ {{orderInfo.staticDistri.drugsState?orderInfo.staticDistri.drugsState.name:'暂无'}}
|
|
303
|
+ </view>
|
|
304
|
+ </view>
|
|
305
|
+ </block>
|
|
306
|
+ </view>
|
|
307
|
+ </scroll-view>
|
|
308
|
+ </view>
|
|
309
|
+ <!-- 底部 -->
|
|
310
|
+ <seiminFooterBtn :btns="btns"></seiminFooterBtn>
|
|
311
|
+ <seiminModel ref="seiminModel"></seiminModel>
|
|
312
|
+ </view>
|
|
313
|
+</template>
|
|
314
|
+
|
|
315
|
+<script>
|
|
316
|
+ import {
|
|
317
|
+ debounce
|
|
318
|
+ } from 'lodash/function';
|
|
319
|
+ import {
|
|
320
|
+ reqFetchData,
|
|
321
|
+ reqFetchWorkOrderLog,
|
|
322
|
+ reqGetPatientInspectInfo,
|
|
323
|
+ } from "../../request/api.js";
|
|
324
|
+ import {
|
|
325
|
+ mapState
|
|
326
|
+ } from "vuex";
|
|
327
|
+ import {
|
|
328
|
+ GDSTATE
|
|
329
|
+ } from "../../utils/enum.gdstate.js";
|
|
330
|
+ import {
|
|
331
|
+ ASSOCIATION_TYPES
|
|
332
|
+ } from "../../utils/enum.association_types.js";
|
|
333
|
+ import {
|
|
334
|
+ showAppraise,
|
|
335
|
+ openRecallModal,
|
|
336
|
+ openExecModal,
|
|
337
|
+ showJiaji,
|
|
338
|
+ } from "../../utils/index.js";
|
|
339
|
+ export default {
|
|
340
|
+ data() {
|
|
341
|
+ return {
|
|
342
|
+ debouncedChangeTab: null,
|
|
343
|
+ // 路由传参
|
|
344
|
+ queryParams: {},
|
|
345
|
+ // 关联类型
|
|
346
|
+ ASSOCIATION_TYPES,
|
|
347
|
+ // 选项卡
|
|
348
|
+ tabs: [{
|
|
349
|
+ id: 1,
|
|
350
|
+ name: '患者信息'
|
|
351
|
+ },
|
|
352
|
+ {
|
|
353
|
+ id: 2,
|
|
354
|
+ name: '患者标本'
|
|
355
|
+ },
|
|
356
|
+ {
|
|
357
|
+ id: 3,
|
|
358
|
+ name: '患者检查'
|
|
359
|
+ },
|
|
360
|
+ ],
|
|
361
|
+ // 当前选中的tab
|
|
362
|
+ selectedTab: 1,
|
|
363
|
+ // 工单信息
|
|
364
|
+ orderInfo: {},
|
|
365
|
+ // 流程信息
|
|
366
|
+ logList: [],
|
|
367
|
+ //底部按钮
|
|
368
|
+ btns: [{
|
|
369
|
+ name: "回到列表",
|
|
370
|
+ type: "default",
|
|
371
|
+ click: () => {
|
|
372
|
+ uni.navigateTo({
|
|
373
|
+ url: "/pages/patientList/patientList",
|
|
374
|
+ });
|
|
375
|
+ },
|
|
376
|
+ }, {
|
|
377
|
+ name: "一键建单",
|
|
378
|
+ type: "default",
|
|
379
|
+ click: () => {
|
|
380
|
+ uni.navigateTo({
|
|
381
|
+ url: "/pages/patientList/patientList",
|
|
382
|
+ });
|
|
383
|
+ },
|
|
384
|
+ }],
|
|
385
|
+ };
|
|
386
|
+ },
|
|
387
|
+ computed: {
|
|
388
|
+ ...mapState('other', ["deptDisplay"]),
|
|
389
|
+ },
|
|
390
|
+ methods: {
|
|
391
|
+ init(queryParams) {
|
|
392
|
+ this.queryParams = queryParams;
|
|
393
|
+ this.changeTab(1);
|
|
394
|
+ },
|
|
395
|
+ // 跳转详情
|
|
396
|
+ toDetail(id, associationType) {
|
|
397
|
+ uni.navigateTo({
|
|
398
|
+ url: `/pages/detail/detail?id=${id}&associationType=${associationType}`
|
|
399
|
+ })
|
|
400
|
+ },
|
|
401
|
+ // 格式化时分秒
|
|
402
|
+ // (时间小于一分钟则显示秒,时间大于一分钟则显示分钟数,如超出一小时则显示小时和分钟。)time单位:秒
|
|
403
|
+ formatTime(time) {
|
|
404
|
+ let timeStr = "";
|
|
405
|
+ if (time >= 0 && time < 60) {
|
|
406
|
+ // 秒
|
|
407
|
+ timeStr = time + "秒";
|
|
408
|
+ } else if (time >= 60 && time < 3600) {
|
|
409
|
+ // 分钟
|
|
410
|
+ timeStr = Math.floor(time / 60) + "分钟";
|
|
411
|
+ } else if (time >= 3600) {
|
|
412
|
+ // 时 + 分
|
|
413
|
+ let h = "";
|
|
414
|
+ let m = "";
|
|
415
|
+ h = Math.floor(time / 3600) + "小时";
|
|
416
|
+ m = time % 3600 >= 60 ? Math.floor((time % 3600) / 60) + "分钟" : "";
|
|
417
|
+ timeStr = h + m;
|
|
418
|
+ }
|
|
419
|
+ return timeStr;
|
|
420
|
+ },
|
|
421
|
+ // 计算流程信息耗时
|
|
422
|
+ filterTime(step) {
|
|
423
|
+ let num = 0;
|
|
424
|
+ step.forEach((e) => {
|
|
425
|
+ num += e.difTime;
|
|
426
|
+ });
|
|
427
|
+ return this.formatTime(num / 1000);
|
|
428
|
+ },
|
|
429
|
+ // 切换tab
|
|
430
|
+ changeTab(id) {
|
|
431
|
+ this.selectedTab = id;
|
|
432
|
+ switch (id) {
|
|
433
|
+ case 1:
|
|
434
|
+ this.getInfo(this.queryParams);
|
|
435
|
+ break;
|
|
436
|
+ case 2:
|
|
437
|
+ this.getProcess(this.queryParams);
|
|
438
|
+ break;
|
|
439
|
+ case 3:
|
|
440
|
+ break;
|
|
441
|
+ }
|
|
442
|
+ },
|
|
443
|
+ //获取工单信息数据
|
|
444
|
+ getInfo(queryParams) {
|
|
445
|
+ uni.showLoading({
|
|
446
|
+ mask: true,
|
|
447
|
+ title: '加载中',
|
|
448
|
+ })
|
|
449
|
+ let postData = {
|
|
450
|
+ "patientCode": queryParams.patientCode
|
|
451
|
+ };
|
|
452
|
+ reqGetPatientInspectInfo(queryParams.id).then(res => {
|
|
453
|
+ uni.hideLoading();
|
|
454
|
+ if (res.status == 200) {
|
|
455
|
+ // 检查科室处理
|
|
456
|
+ if (res.data.middleDept) {
|
|
457
|
+ //有检查科室的话
|
|
458
|
+ res.data.middleDept = res.data.middleDept.map(v => {
|
|
459
|
+ return this.deptDisplay == 2 ? v.deptalias : v.dept;
|
|
460
|
+ }).toString();
|
|
461
|
+ }
|
|
462
|
+ // 终点科室处理
|
|
463
|
+ res.data.endDepts = res.data.endDepts.map(v => {
|
|
464
|
+ return this.deptDisplay == 2 ? v.deptalias : v.dept;
|
|
465
|
+ }).toString();
|
|
466
|
+ // 工单信息
|
|
467
|
+ this.orderInfo = res.data;
|
|
468
|
+ } else {
|
|
469
|
+ this.$refs.seiminModel.show({
|
|
470
|
+ skin: 'toast',
|
|
471
|
+ icon: 'error',
|
|
472
|
+ content: '请求失败',
|
|
473
|
+ })
|
|
474
|
+ }
|
|
475
|
+ })
|
|
476
|
+ },
|
|
477
|
+ //获取流程信息数据
|
|
478
|
+ getProcess(queryParams) {
|
|
479
|
+ uni.showLoading({
|
|
480
|
+ mask: true,
|
|
481
|
+ title: '加载中',
|
|
482
|
+ })
|
|
483
|
+ reqFetchWorkOrderLog(queryParams.id).then(res => {
|
|
484
|
+ uni.hideLoading();
|
|
485
|
+ if (res.status == 200) {
|
|
486
|
+ // 流程信息
|
|
487
|
+ this.logList = res.data;
|
|
488
|
+ } else {
|
|
489
|
+ this.$refs.seiminModel.show({
|
|
490
|
+ skin: 'toast',
|
|
491
|
+ icon: 'error',
|
|
492
|
+ content: '请求失败',
|
|
493
|
+ })
|
|
494
|
+ }
|
|
495
|
+ })
|
|
496
|
+ },
|
|
497
|
+ },
|
|
498
|
+ onLoad(queryParams) {
|
|
499
|
+ console.log(queryParams);
|
|
500
|
+ this.init(queryParams);
|
|
501
|
+ },
|
|
502
|
+ created() {
|
|
503
|
+ this.debouncedChangeTab = debounce(this.changeTab, 166);
|
|
504
|
+ },
|
|
505
|
+ beforeDestroy() {
|
|
506
|
+ this.debouncedChangeTab.cancel()
|
|
507
|
+ }
|
|
508
|
+ }
|
|
509
|
+</script>
|
|
510
|
+
|
|
511
|
+<style lang="scss" scoped>
|
|
512
|
+ .orderDetail {
|
|
513
|
+ padding-bottom: 108rpx;
|
|
514
|
+
|
|
515
|
+ // 头部
|
|
516
|
+ .orderDetail_header {
|
|
517
|
+ position: fixed;
|
|
518
|
+ z-index: 98;
|
|
519
|
+ width: 100%;
|
|
520
|
+ height: 88rpx;
|
|
521
|
+ background-color: #fff;
|
|
522
|
+ color: #333;
|
|
523
|
+ @include flex;
|
|
524
|
+
|
|
525
|
+ .orderDetail_header_item {
|
|
526
|
+ flex: 1;
|
|
527
|
+ font-size: 32rpx;
|
|
528
|
+ @include border(right);
|
|
529
|
+ @include border(bottom);
|
|
530
|
+ @include flex(center, center);
|
|
531
|
+
|
|
532
|
+ &:last-of-type {
|
|
533
|
+ border-right: none;
|
|
534
|
+ }
|
|
535
|
+
|
|
536
|
+ &.active {
|
|
537
|
+ color: $defaultColor;
|
|
538
|
+ border-bottom: 4rpx solid $defaultColor;
|
|
539
|
+ }
|
|
540
|
+ }
|
|
541
|
+ }
|
|
542
|
+
|
|
543
|
+ // tab
|
|
544
|
+ // 工单详情
|
|
545
|
+ .orderDetail_info {
|
|
546
|
+ padding: 108rpx 24rpx 0;
|
|
547
|
+
|
|
548
|
+ .orderDetail_infoItem {
|
|
549
|
+ width: 702rpx;
|
|
550
|
+ height: calc(100vh - 340rpx);
|
|
551
|
+ background-color: #fff;
|
|
552
|
+ margin-top: 8rpx;
|
|
553
|
+ border-radius: 8rpx;
|
|
554
|
+ position: relative;
|
|
555
|
+ padding: 0 24rpx;
|
|
556
|
+ font-size: 32rpx;
|
|
557
|
+ @include border;
|
|
558
|
+ @include semicircle(#f9fafb, 82rpx);
|
|
559
|
+ @include flex(flex-start, stretch, column);
|
|
560
|
+
|
|
561
|
+ .ji,
|
|
562
|
+ .jiaji {
|
|
563
|
+ width: 60rpx;
|
|
564
|
+ position: absolute;
|
|
565
|
+ right: 0;
|
|
566
|
+ top: 0;
|
|
567
|
+ }
|
|
568
|
+
|
|
569
|
+ .orderDetail_infoItem_header {
|
|
570
|
+ height: 86rpx;
|
|
571
|
+ @include border($directive:bottom, $style:dashed);
|
|
572
|
+ @include flex(space-between, center);
|
|
573
|
+
|
|
574
|
+ .orderDetail_infoItem_header_title {
|
|
575
|
+ color: #333;
|
|
576
|
+ flex: 1;
|
|
577
|
+ @include flex(flex-start, center);
|
|
578
|
+
|
|
579
|
+ .icon {
|
|
580
|
+ width: 10rpx;
|
|
581
|
+ height: 46rpx;
|
|
582
|
+ border-radius: 2rpx;
|
|
583
|
+ background-color: #F0F6ED;
|
|
584
|
+ @include btn_background;
|
|
585
|
+ }
|
|
586
|
+
|
|
587
|
+ .taskNameAndWorkerName {
|
|
588
|
+ flex: 1;
|
|
589
|
+ @include flex;
|
|
590
|
+
|
|
591
|
+ .taskName {
|
|
592
|
+ max-width: 10em;
|
|
593
|
+ margin-left: 8rpx;
|
|
594
|
+ font-size: 38rpx;
|
|
595
|
+ font-weight: bold;
|
|
596
|
+ @include clamp;
|
|
597
|
+ }
|
|
598
|
+ }
|
|
599
|
+ }
|
|
600
|
+
|
|
601
|
+ .orderDetail_infoItem_header_more {
|
|
602
|
+ color: #333;
|
|
603
|
+ font-weight: bold;
|
|
604
|
+ font-size: 38rpx;
|
|
605
|
+ @include clamp;
|
|
606
|
+ }
|
|
607
|
+ }
|
|
608
|
+
|
|
609
|
+ .orderDetail_infoItem_item {
|
|
610
|
+ padding-top: 12rpx;
|
|
611
|
+ padding-bottom: 12rpx;
|
|
612
|
+ color: #333;
|
|
613
|
+ font-size: 30rpx;
|
|
614
|
+ flex: 1;
|
|
615
|
+ @include border(bottom);
|
|
616
|
+ @include flex(flex-start, stretch, column);
|
|
617
|
+
|
|
618
|
+ &.process {
|
|
619
|
+ padding-top: 90rpx;
|
|
620
|
+ padding-bottom: 90rpx;
|
|
621
|
+ }
|
|
622
|
+
|
|
623
|
+ &:last-of-type {
|
|
624
|
+ border-bottom: none;
|
|
625
|
+ }
|
|
626
|
+
|
|
627
|
+ // 工单信息
|
|
628
|
+ .orderDetail_infoItem_item_content {
|
|
629
|
+ margin-top: 20rpx;
|
|
630
|
+ @include flex(space-between, stretch);
|
|
631
|
+
|
|
632
|
+ .orderDetail_infoItem_item_name {
|
|
633
|
+ font-size: 34rpx;
|
|
634
|
+ color: #666;
|
|
635
|
+ max-width: 4em;
|
|
636
|
+ }
|
|
637
|
+
|
|
638
|
+ .orderDetail_infoItem_item_value {
|
|
639
|
+ font-size: 38rpx;
|
|
640
|
+ color: #333;
|
|
641
|
+ font-weight: bold;
|
|
642
|
+ max-width: 420rpx;
|
|
643
|
+ text-align: justify;
|
|
644
|
+ word-break: break-all;
|
|
645
|
+ }
|
|
646
|
+ }
|
|
647
|
+
|
|
648
|
+ // 流程信息
|
|
649
|
+ .orderDetail_process_item {
|
|
650
|
+ min-height: 120rpx;
|
|
651
|
+ line-height: 50rpx;
|
|
652
|
+ color: #333;
|
|
653
|
+ @include flex(center);
|
|
654
|
+
|
|
655
|
+ &:last-of-type {
|
|
656
|
+ .step_icon {
|
|
657
|
+ &::after {
|
|
658
|
+ display: none;
|
|
659
|
+ }
|
|
660
|
+ }
|
|
661
|
+ }
|
|
662
|
+
|
|
663
|
+ .step_infoStart {
|
|
664
|
+ font-size: 28rpx;
|
|
665
|
+ flex: 1;
|
|
666
|
+ @include flex(flex-end);
|
|
667
|
+
|
|
668
|
+ .step_time {
|
|
669
|
+ margin-left: 16rpx;
|
|
670
|
+ }
|
|
671
|
+ }
|
|
672
|
+
|
|
673
|
+ .step_icon {
|
|
674
|
+ font-size: 38rpx;
|
|
675
|
+ margin-left: 30rpx;
|
|
676
|
+ margin-right: 30rpx;
|
|
677
|
+ position: relative;
|
|
678
|
+ color: #E5E9ED;
|
|
679
|
+
|
|
680
|
+ &.active {
|
|
681
|
+ color: #07863C;
|
|
682
|
+ }
|
|
683
|
+
|
|
684
|
+ &::after {
|
|
685
|
+ content: '';
|
|
686
|
+ position: absolute;
|
|
687
|
+ top: 60rpx;
|
|
688
|
+ left: 18rpx;
|
|
689
|
+ width: 1px;
|
|
690
|
+ height: calc(100% - 70rpx);
|
|
691
|
+ background-color: #DDE1E5;
|
|
692
|
+ }
|
|
693
|
+ }
|
|
694
|
+
|
|
695
|
+ .step_infoEnd {
|
|
696
|
+ font-size: 34rpx;
|
|
697
|
+ flex: 1;
|
|
698
|
+ padding-bottom: 16rpx;
|
|
699
|
+ }
|
|
700
|
+ }
|
|
701
|
+
|
|
702
|
+ // 业务信息-检查
|
|
703
|
+ &.business_inspect {
|
|
704
|
+ .inspect_info {
|
|
705
|
+ font-size: 34rpx;
|
|
706
|
+ color: #333;
|
|
707
|
+ padding-top: 20rpx;
|
|
708
|
+ padding-bottom: 20rpx;
|
|
709
|
+ @include border($directive:bottom, $style:dashed);
|
|
710
|
+
|
|
711
|
+ .inspect_info_block {
|
|
712
|
+ height: 60rpx;
|
|
713
|
+ @include flex(space-between, center);
|
|
714
|
+
|
|
715
|
+ .inspect_info_left {
|
|
716
|
+ @include flex;
|
|
717
|
+
|
|
718
|
+ .inspect_info_icon {
|
|
719
|
+ width: 50rpx;
|
|
720
|
+ height: 50rpx;
|
|
721
|
+ line-height: 50rpx;
|
|
722
|
+ border-radius: 50%;
|
|
723
|
+ font-size: 28rpx;
|
|
724
|
+ margin-right: 8rpx;
|
|
725
|
+ @include flex(center, center);
|
|
726
|
+
|
|
727
|
+ &.green {
|
|
728
|
+ color: $defaultColor;
|
|
729
|
+ border: 1px solid $defaultColor;
|
|
730
|
+ background-color: rgba(73, 184, 86, 0.1);
|
|
731
|
+ }
|
|
732
|
+
|
|
733
|
+ &.red {
|
|
734
|
+ color: #FF3B53;
|
|
735
|
+ border: 1px solid #FF3B53;
|
|
736
|
+ background-color: #FFE8EB;
|
|
737
|
+ }
|
|
738
|
+ }
|
|
739
|
+
|
|
740
|
+ .inspect_info_name {
|
|
741
|
+ font-weight: bold;
|
|
742
|
+ }
|
|
743
|
+ }
|
|
744
|
+
|
|
745
|
+ .inspect_info_right {
|
|
746
|
+ font-weight: bold;
|
|
747
|
+ }
|
|
748
|
+ }
|
|
749
|
+ }
|
|
750
|
+
|
|
751
|
+ .inspect_item {
|
|
752
|
+ color: #333;
|
|
753
|
+ font-size: 34rpx;
|
|
754
|
+ line-height: 48rpx;
|
|
755
|
+ padding-top: 26rpx;
|
|
756
|
+ padding-bottom: 26rpx;
|
|
757
|
+ @include border($directive:bottom, $style:dashed);
|
|
758
|
+
|
|
759
|
+ .inspect_item_name {
|
|
760
|
+ font-weight: bold;
|
|
761
|
+ }
|
|
762
|
+
|
|
763
|
+ .inspect_item_yytime {
|
|
764
|
+ font-weight: bold;
|
|
765
|
+ }
|
|
766
|
+
|
|
767
|
+ .inspect_item_info {
|
|
768
|
+ margin-top: 16rpx;
|
|
769
|
+ margin-bottom: 16rpx;
|
|
770
|
+ @include flex(space-between, center);
|
|
771
|
+
|
|
772
|
+ .inspect_item_dept {
|
|
773
|
+ flex: 1;
|
|
774
|
+ word-break: break-all;
|
|
775
|
+ @include clamp;
|
|
776
|
+ }
|
|
777
|
+
|
|
778
|
+ .inspect_item_number {
|
|
779
|
+ flex: 1;
|
|
780
|
+ text-align: right;
|
|
781
|
+ word-break: break-all;
|
|
782
|
+ @include clamp;
|
|
783
|
+ }
|
|
784
|
+ }
|
|
785
|
+ }
|
|
786
|
+ }
|
|
787
|
+
|
|
788
|
+ // 业务信息-标本
|
|
789
|
+ &.business_specimen {
|
|
790
|
+ font-size: 34rpx;
|
|
791
|
+
|
|
792
|
+ .th {
|
|
793
|
+ background-color: red;
|
|
794
|
+ @include btn_background;
|
|
795
|
+
|
|
796
|
+ th {
|
|
797
|
+ color: #fff;
|
|
798
|
+ }
|
|
799
|
+ }
|
|
800
|
+
|
|
801
|
+ .td {
|
|
802
|
+ position: relative;
|
|
803
|
+
|
|
804
|
+ .urgent {
|
|
805
|
+ width: 60rpx;
|
|
806
|
+ position: absolute !important;
|
|
807
|
+ right: 0;
|
|
808
|
+ top: 0;
|
|
809
|
+ }
|
|
810
|
+ }
|
|
811
|
+
|
|
812
|
+ .table--border {
|
|
813
|
+ border: none;
|
|
814
|
+ }
|
|
815
|
+
|
|
816
|
+ ::v-deep .uni-table {
|
|
817
|
+ min-width: 0;
|
|
818
|
+ }
|
|
819
|
+
|
|
820
|
+ ::v-deep .uni-table-td {
|
|
821
|
+ word-break: break-all;
|
|
822
|
+ }
|
|
823
|
+ }
|
|
824
|
+
|
|
825
|
+ // 业务信息-药品
|
|
826
|
+ &.business_drugsBag {
|
|
827
|
+ .drugsBag_item {
|
|
828
|
+ color: #333;
|
|
829
|
+ font-size: 34rpx;
|
|
830
|
+ margin-top: 20rpx;
|
|
831
|
+ @include flex(space-between, center);
|
|
832
|
+
|
|
833
|
+ .drugsBag_item_name {}
|
|
834
|
+
|
|
835
|
+ .drugsBag_item_value {
|
|
836
|
+ font-weight: bold;
|
|
837
|
+ }
|
|
838
|
+ }
|
|
839
|
+ }
|
|
840
|
+ }
|
|
841
|
+ }
|
|
842
|
+ }
|
|
843
|
+ }
|
|
844
|
+</style>
|