|
@@ -10,8 +10,26 @@
|
10
|
10
|
<view class="text1"> 操作成功 </view>
|
11
|
11
|
</view>
|
12
|
12
|
</view>
|
|
13
|
+
|
|
14
|
+ <view class="Scanning_top" v-else-if="status == 400">
|
|
15
|
+ <view class="Scanning_top_icon">
|
|
16
|
+ <text class="cubeic-close icon_transport transport-shibai"></text>
|
|
17
|
+ </view>
|
|
18
|
+ <view class="Scanning_top_text">
|
|
19
|
+ <view class="text1"> 操作失败 </view>
|
|
20
|
+ <view class="text1 f30"> 血袋号:{{bloodDTO.bloodCode || '无'}} </view>
|
|
21
|
+ <view class="text1 f30"> 产品码:{{bloodDTO.productCode || '无'}} </view>
|
|
22
|
+ <view class="text1 f30"> 患者:{{bloodDTO.patientName}}<text v-if="bloodDTO.patientNo">({{bloodDTO.patientNo}})</text> </view>
|
|
23
|
+ <view class="text1 f30"> 您扫描的血制品与工单的终点科室不一致,是否收录到此工单? </view>
|
|
24
|
+ <view class="text1 f30 mt8">
|
|
25
|
+ <checkbox-group @change="forceDeptInputBlur">
|
|
26
|
+ <checkbox value="forceDept" :checked="forceDept" color="#49b856" />勾选后本次扫描过程中不再出现此提示
|
|
27
|
+ </checkbox-group>
|
|
28
|
+ </view>
|
|
29
|
+ </view>
|
|
30
|
+ </view>
|
13
|
31
|
|
14
|
|
- <view class="Scanning_top" v-if="status != 200">
|
|
32
|
+ <view class="Scanning_top" v-else>
|
15
|
33
|
<view class="Scanning_top_icon">
|
16
|
34
|
<text class="cubeic-close icon_transport transport-shibai"></text>
|
17
|
35
|
</view>
|
|
@@ -35,6 +53,7 @@
|
35
|
53
|
</view>
|
36
|
54
|
|
37
|
55
|
<view class="foot_btn_spe">
|
|
56
|
+ <view class="btn2" style="width: 98%;" @click="input_common(queryObj.qrcode, 'scan', true)" v-if="status == 400"> 收录到此工单 </view>
|
38
|
57
|
<view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
|
39
|
58
|
<view class="btn3" @click="hand_again()">手动录入</view>
|
40
|
59
|
<view class="btn2" style="width: 98%;" @click="countAndCheck()"> 清点核对 </view>
|
|
@@ -56,6 +75,7 @@
|
56
|
75
|
export default {
|
57
|
76
|
data() {
|
58
|
77
|
return {
|
|
78
|
+ forceDept: false,
|
59
|
79
|
bloodDTO:{},
|
60
|
80
|
status: 200,
|
61
|
81
|
speNum: 0,
|
|
@@ -68,6 +88,59 @@
|
68
|
88
|
};
|
69
|
89
|
},
|
70
|
90
|
methods: {
|
|
91
|
+ // 录入到工单
|
|
92
|
+ input_common(ress1, type, isFlag = false){
|
|
93
|
+ uni.showLoading({
|
|
94
|
+ title: "加载中",
|
|
95
|
+ mask: true,
|
|
96
|
+ });
|
|
97
|
+ let isInput = this.forceDept ? this.forceDept : (isFlag || undefined);
|
|
98
|
+ post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1, forceDept: isInput}).then((ress) => {
|
|
99
|
+ uni.hideLoading();
|
|
100
|
+ if (ress.state == 200 && ress.data.state != 400) {
|
|
101
|
+ //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
|
|
102
|
+ setTimeout(()=>{
|
|
103
|
+ if (type === 'scan') {
|
|
104
|
+ this.Scanning_again(this.forceDept);
|
|
105
|
+ }
|
|
106
|
+ },500)
|
|
107
|
+ //todo
|
|
108
|
+ if(this.forceDept){
|
|
109
|
+ uni.redirectTo({
|
|
110
|
+ url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}&isInput=1`,
|
|
111
|
+ });
|
|
112
|
+ }else{
|
|
113
|
+ uni.redirectTo({
|
|
114
|
+ url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
|
|
115
|
+ });
|
|
116
|
+ }
|
|
117
|
+ }else if (ress.state == 200 && ress.data.state == 400 && ress.data.orderState != 5) {
|
|
118
|
+ if(this.forceDept){
|
|
119
|
+ uni.redirectTo({
|
|
120
|
+ url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
|
|
121
|
+ });
|
|
122
|
+ }else{
|
|
123
|
+ uni.redirectTo({
|
|
124
|
+ url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}`,
|
|
125
|
+ });
|
|
126
|
+ }
|
|
127
|
+ } else {
|
|
128
|
+ if(this.forceDept){
|
|
129
|
+ uni.redirectTo({
|
|
130
|
+ url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
|
|
131
|
+ });
|
|
132
|
+ }else{
|
|
133
|
+ uni.redirectTo({
|
|
134
|
+ url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
|
|
135
|
+ });
|
|
136
|
+ }
|
|
137
|
+ }
|
|
138
|
+ });
|
|
139
|
+ },
|
|
140
|
+ // 勾选后本次扫描过程中不再出现此提示
|
|
141
|
+ forceDeptInputBlur(e) {
|
|
142
|
+ this.forceDept = e.detail.value.length > 0;
|
|
143
|
+ },
|
71
|
144
|
// 手动查询-确认
|
72
|
145
|
speOk(data) {
|
73
|
146
|
console.log(data);
|
|
@@ -106,7 +179,7 @@
|
106
|
179
|
this.showHandViewSpecimen();
|
107
|
180
|
},
|
108
|
181
|
// 手动输入和扫码公共方法
|
109
|
|
- hand_scanning_common(ress1, type) {
|
|
182
|
+ hand_scanning_common(ress1, type, isFlag = false) {
|
110
|
183
|
// ----------------
|
111
|
184
|
uni.showLoading({
|
112
|
185
|
title: "加载中",
|
|
@@ -128,29 +201,18 @@
|
128
|
201
|
if (res.state == 200) {
|
129
|
202
|
res.data = res.data || [];
|
130
|
203
|
if(res.data.length > 1){
|
131
|
|
- uni.navigateTo({
|
132
|
|
- url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}`,
|
133
|
|
- });
|
|
204
|
+ if(this.forceDept){
|
|
205
|
+ uni.navigateTo({
|
|
206
|
+ url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}&isInput=1`,
|
|
207
|
+ });
|
|
208
|
+ }else{
|
|
209
|
+ uni.navigateTo({
|
|
210
|
+ url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}`,
|
|
211
|
+ });
|
|
212
|
+ }
|
134
|
213
|
}else{
|
135
|
|
- post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1}).then((ress) => {
|
136
|
|
- uni.hideLoading();
|
137
|
|
- if (ress.state == 200 && ress.data.state != 400) {
|
138
|
|
- //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
|
139
|
|
- setTimeout(()=>{
|
140
|
|
- if (type === 'scan') {
|
141
|
|
- this.Scanning_again();
|
142
|
|
- }
|
143
|
|
- },500)
|
144
|
|
- //todo
|
145
|
|
- uni.redirectTo({
|
146
|
|
- url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
|
147
|
|
- });
|
148
|
|
- } else {
|
149
|
|
- uni.redirectTo({
|
150
|
|
- url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
|
151
|
|
- });
|
152
|
|
- }
|
153
|
|
- });
|
|
214
|
+ // 继续扫描
|
|
215
|
+ this.input_common(ress1, type, isFlag);
|
154
|
216
|
}
|
155
|
217
|
} else {
|
156
|
218
|
uni.hideLoading();
|
|
@@ -175,29 +237,40 @@
|
175
|
237
|
// ------------------------------
|
176
|
238
|
},
|
177
|
239
|
// 继续扫描
|
178
|
|
- Scanning_again() {
|
|
240
|
+ Scanning_again(isFlag = false) {
|
179
|
241
|
if (!this.SMFlag) {
|
180
|
242
|
return;
|
181
|
243
|
}
|
182
|
244
|
this.SMFlag = false;
|
183
|
245
|
SM().then((ress1) => {
|
184
|
|
- this.hand_scanning_common(ress1, 'scan');
|
|
246
|
+ this.hand_scanning_common(ress1, 'scan', isFlag);
|
185
|
247
|
}).catch(err => {
|
186
|
248
|
this.SMFlag = true;
|
187
|
249
|
});
|
188
|
250
|
},
|
189
|
251
|
// 清点核对
|
190
|
252
|
countAndCheck() {
|
191
|
|
- uni.navigateTo({
|
192
|
|
- url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}`,
|
193
|
|
- });
|
|
253
|
+ if(this.forceDept){
|
|
254
|
+ uni.navigateTo({
|
|
255
|
+ url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}&isInput=1`,
|
|
256
|
+ });
|
|
257
|
+ }else{
|
|
258
|
+ uni.navigateTo({
|
|
259
|
+ url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}`,
|
|
260
|
+ });
|
|
261
|
+ }
|
194
|
262
|
},
|
195
|
263
|
},
|
196
|
264
|
onShow() {
|
197
|
265
|
this.SMFlag = true;
|
198
|
266
|
},
|
199
|
267
|
onLoad(options) {
|
200
|
|
- console.log(options, "result");
|
|
268
|
+ console.log(options, "result", this.forceDept);
|
|
269
|
+ if(options.isInput == 1){
|
|
270
|
+ this.forceDept = true;
|
|
271
|
+ }else{
|
|
272
|
+ this.forceDept = false;
|
|
273
|
+ }
|
201
|
274
|
if (options.status == 200 && options.scanOrHand === 'hand') {
|
202
|
275
|
this.hand_again();
|
203
|
276
|
}
|
|
@@ -208,6 +281,7 @@
|
208
|
281
|
this.Scanning_again();
|
209
|
282
|
},500)
|
210
|
283
|
}
|
|
284
|
+
|
211
|
285
|
this.queryObj = options;
|
212
|
286
|
if (options.bloodDTO) {
|
213
|
287
|
this.bloodDTO = JSON.parse(options.bloodDTO);
|
|
@@ -223,7 +297,10 @@
|
223
|
297
|
},
|
224
|
298
|
};
|
225
|
299
|
</script>
|
226
|
|
-<style lang="less">
|
|
300
|
+<style lang="less" scoped>
|
|
301
|
+ /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
|
|
302
|
+ border-color: #49b856 !important;
|
|
303
|
+ }
|
227
|
304
|
.Scanning_Result {
|
228
|
305
|
padding: 0 20rpx;
|
229
|
306
|
|