|
@@ -0,0 +1,384 @@
|
|
1
|
+<template>
|
|
2
|
+ <view class="Scanning_Result">
|
|
3
|
+ <view class="Scanning_top">
|
|
4
|
+ <view class="Scanning_top_icon">
|
|
5
|
+ <text class="cubeic-ok icon_transport transport-duigou"></text>
|
|
6
|
+ <view class="text1"> 签到成功 </view>
|
|
7
|
+ </view>
|
|
8
|
+ <view class="Scanning_top_text">
|
|
9
|
+ 您已到达{{queryObj.dept}},请核对填写以下标本信息
|
|
10
|
+ </view>
|
|
11
|
+ </view>
|
|
12
|
+
|
|
13
|
+ <view class="Scanning_cont">
|
|
14
|
+ <view class="Scanning_cont_head">
|
|
15
|
+ <view class="Scanning_cont_head_item" :class="{active: type == key}" v-for="(item, key) in typeList" :key="item.id" @click="clickTab(key)">
|
|
16
|
+ {{item.name}}
|
|
17
|
+ </view>
|
|
18
|
+ </view>
|
|
19
|
+
|
|
20
|
+ <view class="Scanning_cont_list">
|
|
21
|
+ <view class="Scanning_cont_list_item Scanning_cont_list_head">
|
|
22
|
+ <view class="name" v-if="type === 'patient'">
|
|
23
|
+ 患者名称<text class="red">({{typeList.patient.titleCount}})</text>
|
|
24
|
+ </view>
|
|
25
|
+ <view class="name" v-if="type === 'checkType'">
|
|
26
|
+ 项目名称<text class="red">({{typeList.patient.titleCount}})</text>
|
|
27
|
+ </view>
|
|
28
|
+ <view class="value" v-if="type === 'patient'">
|
|
29
|
+ <view>
|
|
30
|
+ 标本数量<text class="red">({{typeList.patient.count}})</text>
|
|
31
|
+ </view>
|
|
32
|
+ </view>
|
|
33
|
+ <view class="value" v-if="type === 'checkType'">
|
|
34
|
+ <view>
|
|
35
|
+ 标本数量<text class="red">({{typeList.patient.count}})</text>
|
|
36
|
+ </view>
|
|
37
|
+ </view>
|
|
38
|
+ </view>
|
|
39
|
+ <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
|
|
40
|
+ <view class="Scanning_cont_list_item" @click="clickRow(item)" v-for="(item, j) in dataList" :key="item.id">
|
|
41
|
+ <view class="name">
|
|
42
|
+ {{item.patientname}}
|
|
43
|
+ </view>
|
|
44
|
+ <view class="value">
|
|
45
|
+ <view>
|
|
46
|
+ {{item.count}}
|
|
47
|
+ </view>
|
|
48
|
+ </view>
|
|
49
|
+ </view>
|
|
50
|
+ </scroll-view>
|
|
51
|
+ </view>
|
|
52
|
+ </view>
|
|
53
|
+
|
|
54
|
+ <view class="foot_btn">
|
|
55
|
+ <view class="btn" @click="goBack()"> 取消 </view>
|
|
56
|
+ <view class="btn" @click="onClick()"> 汇总交接 </view>
|
|
57
|
+ </view>
|
|
58
|
+ <!-- 填写数字弹窗 -->
|
|
59
|
+ <selectNum v-if="numModels.disjunctor" :disjunctor="numModels.disjunctor" @ok="numOk" @cancel="numCancel" :content="numModels.content" :dataName="numModels.dataName">
|
|
60
|
+ </selectNum>
|
|
61
|
+ <!-- 弹窗 -->
|
|
62
|
+ <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
|
|
63
|
+ @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
|
|
64
|
+ </view>
|
|
65
|
+</template>
|
|
66
|
+<script>
|
|
67
|
+ import {
|
|
68
|
+ get,
|
|
69
|
+ post,
|
|
70
|
+ SM,
|
|
71
|
+ webHandle
|
|
72
|
+ } from "@/http/http.js";
|
|
73
|
+ export default {
|
|
74
|
+ data() {
|
|
75
|
+ return {
|
|
76
|
+ hosId: uni.getStorageSync('userData').user.currentHospital.id,
|
|
77
|
+ type: 'patient',//patient|checkType
|
|
78
|
+ queryObj: {}, //路由传递过来的数据
|
|
79
|
+ // 填写数字弹窗model
|
|
80
|
+ numModels: {
|
|
81
|
+ disjunctor: false,
|
|
82
|
+ },
|
|
83
|
+ typeList: {
|
|
84
|
+ "patient": {
|
|
85
|
+ id: -1,
|
|
86
|
+ name: '患者标本',
|
|
87
|
+ count: 0,
|
|
88
|
+ titleCount: 0,
|
|
89
|
+ },
|
|
90
|
+ "checkType": {
|
|
91
|
+ id: -2,
|
|
92
|
+ name: '检验项目',
|
|
93
|
+ count: 0,
|
|
94
|
+ titleCount: 0,
|
|
95
|
+ }
|
|
96
|
+ },
|
|
97
|
+ dataList: [],
|
|
98
|
+ coopData: {},
|
|
99
|
+ // 弹窗model
|
|
100
|
+ models1: {
|
|
101
|
+ disjunctor: false,
|
|
102
|
+ },
|
|
103
|
+ };
|
|
104
|
+ },
|
|
105
|
+ methods: {
|
|
106
|
+ goBack(){
|
|
107
|
+ uni.navigateBack();
|
|
108
|
+ },
|
|
109
|
+ clickTab(key){
|
|
110
|
+ this.type = key;
|
|
111
|
+ this.initData();
|
|
112
|
+ },
|
|
113
|
+ //确定
|
|
114
|
+ ok1() {
|
|
115
|
+ this.models1.disjunctor = false;
|
|
116
|
+ let bussList = this.dataList.map(v => v.children).flat().map(v => v.clothesWashingDTO).map(v => ({...v, exception: 0}));
|
|
117
|
+ uni.showLoading({
|
|
118
|
+ title: "加载中",
|
|
119
|
+ mask: true,
|
|
120
|
+ });
|
|
121
|
+ post("/transflow/createOrTakeOrder", {
|
|
122
|
+ type: 'clothingGet',
|
|
123
|
+ id: 0,
|
|
124
|
+ startDeptId: this.queryObj.startDeptId,
|
|
125
|
+ hosId: this.hosId,
|
|
126
|
+ bussList,
|
|
127
|
+ orderId: this.queryObj.orderId,
|
|
128
|
+ }).then((res) => {
|
|
129
|
+ uni.hideLoading();
|
|
130
|
+ if (res.state == 200) {
|
|
131
|
+ uni.showModal({
|
|
132
|
+ title: "提示",
|
|
133
|
+ content: "交接成功",
|
|
134
|
+ showCancel: false,
|
|
135
|
+ success: (result) => {
|
|
136
|
+ if (result.confirm) {
|
|
137
|
+ console.log("用户点击确定");
|
|
138
|
+ uni.navigateTo({
|
|
139
|
+ url: `/pages/receiptpage/receiptpage`,
|
|
140
|
+ });
|
|
141
|
+ }
|
|
142
|
+ },
|
|
143
|
+ });
|
|
144
|
+ }else{
|
|
145
|
+ uni.showToast({
|
|
146
|
+ icon: "none",
|
|
147
|
+ title: res.msg || "接口获取数据失败!",
|
|
148
|
+ });
|
|
149
|
+ }
|
|
150
|
+ });
|
|
151
|
+ },
|
|
152
|
+ //取消
|
|
153
|
+ cancel1() {
|
|
154
|
+ this.models1.disjunctor = false;
|
|
155
|
+ },
|
|
156
|
+ // 被服回收弹窗
|
|
157
|
+ showModel1() {
|
|
158
|
+ let bussList = this.dataList.map(v => v.children).flat();
|
|
159
|
+ let num = bussList.reduce((prev, current) => prev + current.clothesWashingDTO.recyclingNum, 0);
|
|
160
|
+ this.models1 = {
|
|
161
|
+ disjunctor: true,
|
|
162
|
+ title: "提示",
|
|
163
|
+ content: `<strong class="red">${this.queryObj.startDeptName}</strong>已与<strong class="red">${this.queryObj.name}</strong>交接<strong class="red">${num}件</strong>被服,交接人为<strong class="red">${this.queryObj.name}</strong>,您确认交接吗?`,
|
|
164
|
+ icon: "warn",
|
|
165
|
+ operate: {
|
|
166
|
+ ok: "确定",
|
|
167
|
+ cancel: "取消",
|
|
168
|
+ },
|
|
169
|
+ };
|
|
170
|
+ },
|
|
171
|
+ // 填写数量-确认
|
|
172
|
+ numOk(data) {
|
|
173
|
+ console.log(data);
|
|
174
|
+ this.numModels.disjunctor = false;
|
|
175
|
+ this.updateNum(data);
|
|
176
|
+ },
|
|
177
|
+ // 填写数量-取消
|
|
178
|
+ numCancel() {
|
|
179
|
+ this.numModels.disjunctor = false;
|
|
180
|
+ },
|
|
181
|
+ onClick(){
|
|
182
|
+ this.showModel1();
|
|
183
|
+ },
|
|
184
|
+ clickRow(data){
|
|
185
|
+ this.coopData = data;
|
|
186
|
+ this.numModels = {
|
|
187
|
+ disjunctor: true,
|
|
188
|
+ content: `请输入被服数量`,
|
|
189
|
+ dataName: data.name,
|
|
190
|
+ };
|
|
191
|
+ },
|
|
192
|
+ updateNum(data){
|
|
193
|
+ this.dataList.children.forEach(v => {
|
|
194
|
+ if(v.id == this.coopData.id){
|
|
195
|
+ v.clothesWashingDTO && (v.clothesWashingDTO.recyclingNum = data.num);
|
|
196
|
+ }
|
|
197
|
+ })
|
|
198
|
+ },
|
|
199
|
+ getInfo(type){
|
|
200
|
+ uni.showLoading({
|
|
201
|
+ title: "加载中",
|
|
202
|
+ mask: true,
|
|
203
|
+ });
|
|
204
|
+ post("/workerOrder/ordersSpeInfo", {
|
|
205
|
+ type,
|
|
206
|
+ deptId: this.queryObj.deptId,
|
|
207
|
+ orderIds: JSON.parse(this.queryObj.ids).toString(),
|
|
208
|
+ }).then((result) => {
|
|
209
|
+ uni.hideLoading();
|
|
210
|
+ if (result.state == 200) {
|
|
211
|
+ this.typeList[type].count = result.count;
|
|
212
|
+ this.typeList[type].titleCount = result.title;
|
|
213
|
+ if(this.type === type){
|
|
214
|
+ this.dataList = result.data || [];
|
|
215
|
+ }
|
|
216
|
+ } else {
|
|
217
|
+ uni.showToast({
|
|
218
|
+ icon: "none",
|
|
219
|
+ title: result.msg || "接口获取数据失败!",
|
|
220
|
+ });
|
|
221
|
+ }
|
|
222
|
+ });
|
|
223
|
+ },
|
|
224
|
+ initData(){
|
|
225
|
+ this.getInfo('patient');
|
|
226
|
+ this.getInfo('checkType');
|
|
227
|
+ },
|
|
228
|
+ },
|
|
229
|
+ onLoad(options) {
|
|
230
|
+ console.log(options, "result");
|
|
231
|
+ this.queryObj = options;
|
|
232
|
+ this.initData();
|
|
233
|
+ // #ifdef APP-PLUS
|
|
234
|
+ webHandle("no", "app");
|
|
235
|
+ // #endif
|
|
236
|
+ // #ifdef H5
|
|
237
|
+ webHandle("no", "wx");
|
|
238
|
+ // #endif
|
|
239
|
+ },
|
|
240
|
+ };
|
|
241
|
+</script>
|
|
242
|
+<style lang="less" scoped>
|
|
243
|
+ .Scanning_Result {
|
|
244
|
+ height: 100vh;
|
|
245
|
+ display: flex;
|
|
246
|
+ flex-direction: column;
|
|
247
|
+ background-color: #fafbfd;
|
|
248
|
+ .Scanning_top {
|
|
249
|
+ flex-shrink: 0;
|
|
250
|
+ .Scanning_top_icon {
|
|
251
|
+ padding-top: 26rpx;
|
|
252
|
+ display: flex;
|
|
253
|
+ justify-content: center;
|
|
254
|
+ align-items: center;
|
|
255
|
+
|
|
256
|
+ .cubeic-ok {
|
|
257
|
+ font-size: 58rpx;
|
|
258
|
+ color: #35b34a;
|
|
259
|
+ }
|
|
260
|
+
|
|
261
|
+ .text1 {
|
|
262
|
+ font-size: 48rpx;
|
|
263
|
+ font-weight: bold;
|
|
264
|
+ }
|
|
265
|
+ }
|
|
266
|
+ .Scanning_top_text{
|
|
267
|
+ text-align: center;
|
|
268
|
+ font-size: 28rpx;
|
|
269
|
+ font-weight: bold;
|
|
270
|
+ padding: 8rpx 0 23rpx 0;
|
|
271
|
+ }
|
|
272
|
+ }
|
|
273
|
+
|
|
274
|
+ .Scanning_cont {
|
|
275
|
+ flex: 1;
|
|
276
|
+ min-height: 0;
|
|
277
|
+ display: flex;
|
|
278
|
+ flex-direction: column;
|
|
279
|
+ width: 710rpx;
|
|
280
|
+ margin: 0 20rpx;
|
|
281
|
+ background-color: #fff;
|
|
282
|
+
|
|
283
|
+ .Scanning_cont_head{
|
|
284
|
+ flex-shrink: 0;
|
|
285
|
+ height: 78rpx;
|
|
286
|
+ display: flex;
|
|
287
|
+ border-top: 1rpx solid #EEEEEE;
|
|
288
|
+ border-bottom: 1rpx solid #EEEEEE;
|
|
289
|
+ .Scanning_cont_head_item{
|
|
290
|
+ flex: 1;
|
|
291
|
+ font-size: 28rpx;
|
|
292
|
+ font-weight: bold;
|
|
293
|
+ display: flex;
|
|
294
|
+ justify-content: center;
|
|
295
|
+ align-items: center;
|
|
296
|
+ position: relative;
|
|
297
|
+ &.active{
|
|
298
|
+ color: #49B856;
|
|
299
|
+ &::before{
|
|
300
|
+ content: '';
|
|
301
|
+ width: 70rpx;
|
|
302
|
+ height: 10rpx;
|
|
303
|
+ background-color: #49B856;
|
|
304
|
+ position: absolute;
|
|
305
|
+ left: 50%;
|
|
306
|
+ bottom: 0;
|
|
307
|
+ transform: translateX(-50%);
|
|
308
|
+ border-radius: 6rpx;
|
|
309
|
+ }
|
|
310
|
+ }
|
|
311
|
+ &::after{
|
|
312
|
+ content: '';
|
|
313
|
+ width: 2rpx;
|
|
314
|
+ height: 44rpx;
|
|
315
|
+ background-color: #D1D1D1;
|
|
316
|
+ position: absolute;
|
|
317
|
+ right: 0;
|
|
318
|
+ top: 50%;
|
|
319
|
+ transform: translateY(-50%);
|
|
320
|
+ }
|
|
321
|
+ &:last-of-type::after{
|
|
322
|
+ opacity: 0;
|
|
323
|
+ }
|
|
324
|
+ }
|
|
325
|
+ }
|
|
326
|
+
|
|
327
|
+ .Scanning_cont_list{
|
|
328
|
+ flex: 1;
|
|
329
|
+ min-height: 0;
|
|
330
|
+ display: flex;
|
|
331
|
+ flex-direction: column;
|
|
332
|
+ .Scanning_cont_list_scroll{
|
|
333
|
+ flex: 1;
|
|
334
|
+ min-height: 0;
|
|
335
|
+ }
|
|
336
|
+ .Scanning_cont_list_item{
|
|
337
|
+ height: 70rpx;
|
|
338
|
+ display: flex;
|
|
339
|
+ align-items: center;
|
|
340
|
+ font-size: 28rpx;
|
|
341
|
+ border-bottom: 1rpx solid #CCCCCC;
|
|
342
|
+ &.Scanning_cont_list_head{
|
|
343
|
+ font-weight: bold;
|
|
344
|
+ font-size: 28rpx;
|
|
345
|
+ border-bottom: none;
|
|
346
|
+ flex-shrink: 0;
|
|
347
|
+ }
|
|
348
|
+ .name,
|
|
349
|
+ .value{
|
|
350
|
+ padding: 0 40rpx;
|
|
351
|
+ flex: 1;
|
|
352
|
+ }
|
|
353
|
+ .value {
|
|
354
|
+ view{
|
|
355
|
+ width: 7em;
|
|
356
|
+ text-align: center;
|
|
357
|
+ }
|
|
358
|
+ }
|
|
359
|
+ }
|
|
360
|
+ }
|
|
361
|
+ }
|
|
362
|
+
|
|
363
|
+ .foot_btn {
|
|
364
|
+ flex-shrink: 0;
|
|
365
|
+ line-height: 66rpx;
|
|
366
|
+ display: flex;
|
|
367
|
+ justify-content: center;
|
|
368
|
+
|
|
369
|
+ .btn {
|
|
370
|
+ height: 66rpx;
|
|
371
|
+ flex: 1;
|
|
372
|
+ margin-right: 1%;
|
|
373
|
+ background-image: linear-gradient(to right, #72c172, #3bb197);
|
|
374
|
+ color: #fff;
|
|
375
|
+ border-radius: 8rpx;
|
|
376
|
+ font-size: 28rpx;
|
|
377
|
+ text-align: center;
|
|
378
|
+ &:last-of-type{
|
|
379
|
+ margin-right: 0;
|
|
380
|
+ }
|
|
381
|
+ }
|
|
382
|
+ }
|
|
383
|
+ }
|
|
384
|
+</style>
|