|
@@ -29,7 +29,7 @@
|
29
|
29
|
<view class="btn" @click="scanDeptOrUser()"> 扫一扫 </view>
|
30
|
30
|
</view>
|
31
|
31
|
<!-- 弹窗 -->
|
32
|
|
- <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate"></showModel>
|
|
32
|
+ <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @ok="ok1" @cancel="cancel1" @know="know1" :operate="models1.operate"></showModel>
|
33
|
33
|
</view>
|
34
|
34
|
</template>
|
35
|
35
|
<script>
|
|
@@ -59,6 +59,35 @@
|
59
|
59
|
this.SMFlag = true;
|
60
|
60
|
},
|
61
|
61
|
methods: {
|
|
62
|
+ ok1(){
|
|
63
|
+ this.models1.disjunctor = false;
|
|
64
|
+ uni.showLoading({
|
|
65
|
+ title: '加载中',
|
|
66
|
+ mask: true,
|
|
67
|
+ })
|
|
68
|
+ post("/medicalWaste/checkComplete", {
|
|
69
|
+ handoverId: this.handoverId || undefined,
|
|
70
|
+ deptId: +this.queryObj.deptId,
|
|
71
|
+ hosId: this.hosId,
|
|
72
|
+ clinicalWasteTypeIds: this.infoList.map(v => v.id).toString(),
|
|
73
|
+ })
|
|
74
|
+ .then((res) => {
|
|
75
|
+ uni.hideLoading();
|
|
76
|
+ if (res.status == 200) {
|
|
77
|
+ uni.navigateTo({
|
|
78
|
+ url: `/pages/receiptpage/receiptpage`,
|
|
79
|
+ });
|
|
80
|
+ } else {
|
|
81
|
+ uni.showToast({
|
|
82
|
+ icon: "none",
|
|
83
|
+ title: res.msg || "接口获取数据失败!",
|
|
84
|
+ });
|
|
85
|
+ }
|
|
86
|
+ });
|
|
87
|
+ },
|
|
88
|
+ cancel1(){
|
|
89
|
+ this.models1.disjunctor = false;
|
|
90
|
+ },
|
62
|
91
|
// 扫科室或人
|
63
|
92
|
scanDeptOrUser() {
|
64
|
93
|
if (!this.SMFlag) {
|
|
@@ -78,15 +107,15 @@
|
78
|
107
|
this.SMFlag = true;
|
79
|
108
|
// 200检测通过,201没有有效期也通过。
|
80
|
109
|
if (result.state == 200 || result.state == 201) {
|
|
110
|
+
|
81
|
111
|
let data = {
|
82
|
112
|
code: result.code, //二维码
|
83
|
113
|
};
|
84
|
114
|
|
85
|
|
- post("/medicalWaste/checkComplete", {
|
86
|
|
- code: result.code,
|
|
115
|
+ post("/medicalWaste/scanByCode", {
|
87
|
116
|
deptId: +this.queryObj.deptId,
|
|
117
|
+ code: result.code,
|
88
|
118
|
hosId: this.hosId,
|
89
|
|
- clinicalWasteTypeIds: this.infoList.map(v => v.id).toString(),
|
90
|
119
|
})
|
91
|
120
|
.then((res) => {
|
92
|
121
|
uni.hideLoading();
|
|
@@ -136,16 +165,15 @@
|
136
|
165
|
//知道了
|
137
|
166
|
know1() {
|
138
|
167
|
this.models1.disjunctor = false;
|
139
|
|
- uni.navigateTo({
|
140
|
|
- url: `/pages/receiptpage/receiptpage`,
|
141
|
|
- });
|
142
|
168
|
},
|
143
|
169
|
// 被服送回弹窗
|
144
|
170
|
showModel1(data, type) {
|
145
|
171
|
let content = '';
|
146
|
172
|
if(type === 'dept'){
|
|
173
|
+ this.handoverId = undefined;
|
147
|
174
|
content = `您与<strong class="red">${data.dept}</strong>成功交接,总重量为<strong class="red">${this.weightTotal}kg</strong>,<strong class="red">${this.countTotal}袋</strong>医废`;
|
148
|
175
|
}else if(type === 'user'){
|
|
176
|
+ this.handoverId = data.id;
|
149
|
177
|
content = `您与<strong class="red">${data.name}</strong>,<strong class="red">${data.dept?data.dept.dept:''}</strong>成功交接,总重量为<strong class="red">${this.weightTotal}kg</strong>,<strong class="red">${this.countTotal}袋</strong>医废`;
|
150
|
178
|
}
|
151
|
179
|
|
|
@@ -155,7 +183,8 @@
|
155
|
183
|
content,
|
156
|
184
|
icon: "warn",
|
157
|
185
|
operate: {
|
158
|
|
- know: "知道了",
|
|
186
|
+ ok: "确定",
|
|
187
|
+ cancel: "取消",
|
159
|
188
|
},
|
160
|
189
|
};
|
161
|
190
|
},
|