|
@@ -569,30 +569,28 @@
|
569
|
569
|
code = ress;
|
570
|
570
|
// 科室扫描
|
571
|
571
|
let postData = {
|
572
|
|
- "idx": 0,
|
573
|
|
- "sum": 1,
|
574
|
|
- "department": {
|
575
|
|
- "hospital": {
|
576
|
|
- "id": this.hosId
|
577
|
|
- },
|
578
|
|
- "qrcode": code
|
579
|
|
- }
|
|
572
|
+ "type": "query",
|
|
573
|
+ "qrCode": code
|
580
|
574
|
};
|
581
|
|
- post("/data/fetchDataList/department", postData).then((res) => {
|
|
575
|
+ post("/dept/scanChangeDept", postData).then((res) => {
|
582
|
576
|
uni.hideLoading();
|
583
|
577
|
if (res.status == 200) {
|
584
|
|
- if (res.totalNum > 0) {
|
585
|
|
- this.currentStartDept = res.list[0];
|
586
|
|
- this.models3 = {
|
587
|
|
- disjunctor: true,
|
588
|
|
- title: "提示",
|
589
|
|
- content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
|
590
|
|
- icon: "warn",
|
591
|
|
- operate: {
|
592
|
|
- ok: "确认建单",
|
593
|
|
- cancel: "取消",
|
594
|
|
- },
|
595
|
|
- };
|
|
578
|
+ if (res.data) {
|
|
579
|
+ if(res.data.deptDTO){
|
|
580
|
+ this.currentStartDept = res.data.deptDTO;
|
|
581
|
+ }else{
|
|
582
|
+ this.currentStartDept = res.data;
|
|
583
|
+ }
|
|
584
|
+ this.models3 = {
|
|
585
|
+ disjunctor: true,
|
|
586
|
+ title: "提示",
|
|
587
|
+ content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
|
|
588
|
+ icon: "warn",
|
|
589
|
+ operate: {
|
|
590
|
+ ok: "确认建单",
|
|
591
|
+ cancel: "取消",
|
|
592
|
+ },
|
|
593
|
+ };
|
596
|
594
|
} else {
|
597
|
595
|
uni.hideLoading();
|
598
|
596
|
uni.showToast({
|