|
@@ -6,10 +6,8 @@
|
6
|
6
|
|
7
|
7
|
<view class="Scanning_cont">
|
8
|
8
|
<scroll-view scroll-y class="scrollContent">
|
9
|
|
- <checkbox-group @change="checkboxChange">
|
10
|
9
|
<view class="column" v-for="(item, index) in patientList" :key="item.id">
|
11
|
10
|
<view class="top">
|
12
|
|
- <checkbox :value="item.id" :checked="item.checked"/>
|
13
|
11
|
<text class="orders green">{{index + 1}}</text>
|
14
|
12
|
<view class="name">姓名:</view>
|
15
|
13
|
<view class="value">{{item.patientName}}</view>
|
|
@@ -19,7 +17,6 @@
|
19
|
17
|
<view class="value">{{item.residenceNo}}</view>
|
20
|
18
|
</view>
|
21
|
19
|
</view>
|
22
|
|
- </checkbox-group>
|
23
|
20
|
</scroll-view>
|
24
|
21
|
</view>
|
25
|
22
|
|
|
@@ -63,33 +60,11 @@
|
63
|
60
|
this.SMFlag = true;
|
64
|
61
|
},
|
65
|
62
|
methods: {
|
66
|
|
- checkboxChange (e) {
|
67
|
|
- var items = this.patientList,
|
68
|
|
- values = e.detail.value;
|
69
|
|
- for (var i = 0, lenI = items.length; i < lenI; ++i) {
|
70
|
|
- const item = items[i]
|
71
|
|
- if(values.includes(item.id)){
|
72
|
|
- this.$set(item,'checked',true)
|
73
|
|
- }else{
|
74
|
|
- this.$set(item,'checked',false)
|
75
|
|
- }
|
76
|
|
- }
|
77
|
|
- console.log(8888,this.patientList)
|
78
|
|
- },
|
79
|
63
|
// 送回病房-扫描科室
|
80
|
64
|
scanDept() {
|
81
|
65
|
if (!this.SMFlag) {
|
82
|
66
|
return;
|
83
|
67
|
}
|
84
|
|
- let isList = this.patientList.filter(i=>i.checked)
|
85
|
|
- if(isList.length==0){
|
86
|
|
- uni.showToast({
|
87
|
|
- icon: 'error',
|
88
|
|
- title: '请勾选患者',
|
89
|
|
- duration: 2000,
|
90
|
|
- });
|
91
|
|
- return
|
92
|
|
- }
|
93
|
68
|
this.SMFlag = false;
|
94
|
69
|
let code = "";
|
95
|
70
|
SM().then((ress1) => {
|
|
@@ -203,22 +178,20 @@
|
203
|
178
|
"workOrder": [],
|
204
|
179
|
};
|
205
|
180
|
this.patientList.forEach(v => {
|
206
|
|
- if(v.checked){
|
207
|
|
- postData.workOrder.push({
|
208
|
|
- sourceId: 4,
|
209
|
|
- "hosId": this.hosId,
|
210
|
|
- "startDept": {
|
211
|
|
- "id": this.currentStartDept.id
|
212
|
|
- },
|
213
|
|
- "createDept": this.currentStartDept.id,
|
214
|
|
- "patient": {
|
215
|
|
- "patientCode": v.patientCode
|
216
|
|
- },
|
217
|
|
- "worker": {
|
218
|
|
- "id": userId
|
219
|
|
- },
|
220
|
|
- })
|
221
|
|
- }
|
|
181
|
+ postData.workOrder.push({
|
|
182
|
+ sourceId: 4,
|
|
183
|
+ "hosId": this.hosId,
|
|
184
|
+ "startDept": {
|
|
185
|
+ "id": this.currentStartDept.id
|
|
186
|
+ },
|
|
187
|
+ "createDept": this.currentStartDept.id,
|
|
188
|
+ "patient": {
|
|
189
|
+ "patientCode": v.patientCode
|
|
190
|
+ },
|
|
191
|
+ "worker": {
|
|
192
|
+ "id": userId
|
|
193
|
+ },
|
|
194
|
+ })
|
222
|
195
|
})
|
223
|
196
|
post("/workerOrder/returnSickRoom", postData).then((res) => {
|
224
|
197
|
console.log(res)
|
|
@@ -298,7 +271,6 @@
|
298
|
271
|
post("/patient/patientByCode ", { code: ress1 }).then((ress) => {
|
299
|
272
|
uni.hideLoading();
|
300
|
273
|
if (ress.status == 200) {
|
301
|
|
- ress.data.checked = true
|
302
|
274
|
let flag = this.patientList.find(v => v.id == ress.data.id);
|
303
|
275
|
if(flag){
|
304
|
276
|
uni.showToast({
|
|
@@ -324,7 +296,7 @@
|
324
|
296
|
onLoad(options) {
|
325
|
297
|
console.log(options, "options");
|
326
|
298
|
this.queryObj = options;
|
327
|
|
- this.patientList = [{id: options.patientId, patientName: options.patientName, residenceNo: options.patientResidenceNo, patientCode: options.patientCode, checked:true}]
|
|
299
|
+ this.patientList = [{id: options.patientId, patientName: options.patientName, residenceNo: options.patientResidenceNo, patientCode: options.patientCode}]
|
328
|
300
|
// #ifdef APP-PLUS
|
329
|
301
|
webHandle("no", "app");
|
330
|
302
|
// #endif
|