|
@@ -62,7 +62,12 @@
|
62
|
62
|
},
|
63
|
63
|
computed: {
|
64
|
64
|
...mapState("user", ["loginInfo"]),
|
65
|
|
- ...mapState(["deptDisplay", "searchDeptParams", "searchDeptResult", 'searchDeptResultList']),
|
|
65
|
+ ...mapState([
|
|
66
|
+ "deptDisplay",
|
|
67
|
+ "searchDeptParams",
|
|
68
|
+ "searchDeptResult",
|
|
69
|
+ "searchDeptResultList",
|
|
70
|
+ ]),
|
66
|
71
|
},
|
67
|
72
|
onUnload() {
|
68
|
73
|
if (this.timer) {
|
|
@@ -74,7 +79,11 @@
|
74
|
79
|
this.init();
|
75
|
80
|
},
|
76
|
81
|
methods: {
|
77
|
|
- ...mapMutations(["changeSearchDeptResult", 'changeSeiminModel', 'changeSearchDeptResultList']),
|
|
82
|
+ ...mapMutations([
|
|
83
|
+ "changeSearchDeptResult",
|
|
84
|
+ "changeSeiminModel",
|
|
85
|
+ "changeSearchDeptResultList",
|
|
86
|
+ ]),
|
78
|
87
|
...mapMutations("user", ["changeLoginInfo"]),
|
79
|
88
|
init() {
|
80
|
89
|
this.loadOldKeyword();
|
|
@@ -126,7 +135,8 @@
|
126
|
135
|
postData.department.nurseSign = 1;
|
127
|
136
|
} else if (
|
128
|
137
|
this.searchDeptParams.type === "selectDept_start_qucikCreateOrder" ||
|
129
|
|
- this.searchDeptParams.type === "selectDept_end_qucikCreateOrder") {
|
|
138
|
+ this.searchDeptParams.type === "selectDept_end_qucikCreateOrder"
|
|
139
|
+ ) {
|
130
|
140
|
//快捷建单选择起点科室或选择终点科室
|
131
|
141
|
postData.department.hospital = {
|
132
|
142
|
id: this.loginInfo.user.currentHospital.id,
|
|
@@ -138,7 +148,7 @@
|
138
|
148
|
if (this.searchDeptParams.departmentStrategy == 205) {
|
139
|
149
|
// 固定科室类型
|
140
|
150
|
postData.department.type = {
|
141
|
|
- id: this.searchDeptParams.deptType
|
|
151
|
+ id: this.searchDeptParams.deptType,
|
142
|
152
|
};
|
143
|
153
|
}
|
144
|
154
|
} else {
|
|
@@ -165,7 +175,7 @@
|
165
|
175
|
if (res.status == 200) {
|
166
|
176
|
this.searchData.push({
|
167
|
177
|
name: keyword,
|
168
|
|
- list: res.list,
|
|
178
|
+ list: res.list || [],
|
169
|
179
|
});
|
170
|
180
|
let searchText = this.searchText.detail ?
|
171
|
181
|
this.searchText.detail.value :
|
|
@@ -184,7 +194,7 @@
|
184
|
194
|
icon: "error",
|
185
|
195
|
content: res.msg || "获取数据失败",
|
186
|
196
|
});
|
187
|
|
- throw new Error(res.msg || '获取数据失败');
|
|
197
|
+ throw new Error(res.msg || "获取数据失败");
|
188
|
198
|
}
|
189
|
199
|
});
|
190
|
200
|
},
|
|
@@ -251,13 +261,15 @@
|
251
|
261
|
//首页切换科室
|
252
|
262
|
this.changeDept_index_handler();
|
253
|
263
|
} else if (
|
254
|
|
- this.searchDeptParams.type === "selectDept_start_qucikCreateOrder") {
|
|
264
|
+ this.searchDeptParams.type === "selectDept_start_qucikCreateOrder"
|
|
265
|
+ ) {
|
255
|
266
|
//快捷建单选择起点科室
|
256
|
267
|
this.searchDeptResultList.start = arr[0];
|
257
|
268
|
this.changeSearchDeptResultList(this.searchDeptResultList);
|
258
|
269
|
this.selectDept_startOrEnd_qucikCreateOrder();
|
259
|
270
|
} else if (
|
260
|
|
- this.searchDeptParams.type === "selectDept_end_qucikCreateOrder") {
|
|
271
|
+ this.searchDeptParams.type === "selectDept_end_qucikCreateOrder"
|
|
272
|
+ ) {
|
261
|
273
|
//快捷建单选择终点科室
|
262
|
274
|
this.searchDeptResultList.end = arr[0];
|
263
|
275
|
this.changeSearchDeptResultList(this.searchDeptResultList);
|
|
@@ -301,9 +313,9 @@
|
301
|
313
|
if (this.searchDeptParams.type === "changeDept_index") {
|
302
|
314
|
// 首页切换科室
|
303
|
315
|
uni.showLoading({
|
304
|
|
- title: '加载中',
|
|
316
|
+ title: "加载中",
|
305
|
317
|
mask: true,
|
306
|
|
- })
|
|
318
|
+ });
|
307
|
319
|
if (
|
308
|
320
|
this.loginInfo.user.currentHospital.id ==
|
309
|
321
|
this.searchDeptParams.hospital.value
|
|
@@ -325,7 +337,7 @@
|
325
|
337
|
icon: "error",
|
326
|
338
|
content: res.msg || "操作失败",
|
327
|
339
|
});
|
328
|
|
- throw new Error(res.msg || '操作失败');
|
|
340
|
+ throw new Error(res.msg || "操作失败");
|
329
|
341
|
}
|
330
|
342
|
});
|
331
|
343
|
}
|
|
@@ -358,8 +370,8 @@
|
358
|
370
|
uni.navigateTo({
|
359
|
371
|
url: this.searchDeptParams.backUrl,
|
360
|
372
|
});
|
361
|
|
- }
|
362
|
|
- }]
|
|
373
|
+ },
|
|
374
|
+ }, ],
|
363
|
375
|
});
|
364
|
376
|
} else {
|
365
|
377
|
this.$refs.seiminModel.showChangeDept({
|
|
@@ -367,7 +379,7 @@
|
367
|
379
|
icon: "error",
|
368
|
380
|
content: res.msg || "操作失败",
|
369
|
381
|
});
|
370
|
|
- throw new Error(res.msg || '操作失败');
|
|
382
|
+ throw new Error(res.msg || "操作失败");
|
371
|
383
|
}
|
372
|
384
|
});
|
373
|
385
|
} else {
|
|
@@ -377,7 +389,7 @@
|
377
|
389
|
icon: "error",
|
378
|
390
|
content: res.msg || "操作失败",
|
379
|
391
|
});
|
380
|
|
- throw new Error(res.msg || '操作失败');
|
|
392
|
+ throw new Error(res.msg || "操作失败");
|
381
|
393
|
}
|
382
|
394
|
});
|
383
|
395
|
},
|
|
@@ -386,7 +398,7 @@
|
386
|
398
|
uni.navigateTo({
|
387
|
399
|
url: this.searchDeptParams.backUrl,
|
388
|
400
|
});
|
389
|
|
- }
|
|
401
|
+ },
|
390
|
402
|
},
|
391
|
403
|
};
|
392
|
404
|
</script>
|