|
@@ -26,7 +26,7 @@
|
26
|
26
|
<view class="btn" @click="hand_again()">手动录入</view>
|
27
|
27
|
</view>
|
28
|
28
|
<view class="column" v-if="patientList.length">
|
29
|
|
- <view class="btn" @click="buildOrder()">建单</view>
|
|
29
|
+ <view class="btn" @click="scanDept()">建单</view>
|
30
|
30
|
</view>
|
31
|
31
|
</view>
|
32
|
32
|
<!-- 手动查询患者弹窗 -->
|
|
@@ -60,6 +60,70 @@
|
60
|
60
|
this.SMFlag = true;
|
61
|
61
|
},
|
62
|
62
|
methods: {
|
|
63
|
+ // 送回病房-扫描科室
|
|
64
|
+ scanDept() {
|
|
65
|
+ if (!this.SMFlag) {
|
|
66
|
+ return;
|
|
67
|
+ }
|
|
68
|
+ this.SMFlag = false;
|
|
69
|
+ let code = "";
|
|
70
|
+ SM().then((ress1) => {
|
|
71
|
+ uni.showLoading({
|
|
72
|
+ title: "加载中",
|
|
73
|
+ mask: true,
|
|
74
|
+ });
|
|
75
|
+ //检验二维码的有效性
|
|
76
|
+ post("/dept/scanning", {
|
|
77
|
+ content: ress1,
|
|
78
|
+ }).then((result) => {
|
|
79
|
+ this.SMFlag = true;
|
|
80
|
+ if (result.state == 200 || result.state == 201) {
|
|
81
|
+ let ress = result.code;
|
|
82
|
+ if (ress) {
|
|
83
|
+ code = ress;
|
|
84
|
+ // 科室扫描
|
|
85
|
+ let postData = {
|
|
86
|
+ "type": "query",
|
|
87
|
+ "qrCode": code
|
|
88
|
+ };
|
|
89
|
+ post("/dept/scanChangeDept", postData).then((res) => {
|
|
90
|
+ uni.hideLoading();
|
|
91
|
+ if (res.status == 200) {
|
|
92
|
+ if (res.data) {
|
|
93
|
+ if(res.data.deptDTO){
|
|
94
|
+ this.currentStartDept = res.data.deptDTO;
|
|
95
|
+ }else{
|
|
96
|
+ this.currentStartDept = res.data;
|
|
97
|
+ }
|
|
98
|
+ this.buildOrder();
|
|
99
|
+ } else {
|
|
100
|
+ uni.hideLoading();
|
|
101
|
+ uni.showToast({
|
|
102
|
+ icon: "none",
|
|
103
|
+ title: "请扫描正确的科室码!",
|
|
104
|
+ });
|
|
105
|
+ }
|
|
106
|
+ } else {
|
|
107
|
+ uni.hideLoading();
|
|
108
|
+ uni.showToast({
|
|
109
|
+ icon: "none",
|
|
110
|
+ title: res.msg || "接口获取数据失败!",
|
|
111
|
+ });
|
|
112
|
+ }
|
|
113
|
+ });
|
|
114
|
+ }
|
|
115
|
+ } else {
|
|
116
|
+ uni.hideLoading();
|
|
117
|
+ uni.showToast({
|
|
118
|
+ icon: "none",
|
|
119
|
+ title: result.info || "接口获取数据失败!",
|
|
120
|
+ });
|
|
121
|
+ }
|
|
122
|
+ });
|
|
123
|
+ }).catch(err => {
|
|
124
|
+ this.SMFlag = true;
|
|
125
|
+ });
|
|
126
|
+ },
|
63
|
127
|
// 手动查询-确认
|
64
|
128
|
patientOk(data) {
|
65
|
129
|
console.log(data);
|
|
@@ -89,7 +153,7 @@
|
89
|
153
|
// 手动查询弹窗
|
90
|
154
|
showHandViewDrugsbag() {
|
91
|
155
|
this.patientModels = {
|
92
|
|
- title: '填写发药单号',
|
|
156
|
+ title: '填写患者住院号',
|
93
|
157
|
disjunctor: true,
|
94
|
158
|
}
|
95
|
159
|
},
|
|
@@ -119,9 +183,9 @@
|
119
|
183
|
sourceId: 4,
|
120
|
184
|
"hosId": this.hosId,
|
121
|
185
|
"startDept": {
|
122
|
|
- "id": this.queryObj.startDeptId
|
|
186
|
+ "id": this.currentStartDept.id
|
123
|
187
|
},
|
124
|
|
- "createDept": this.queryObj.startDeptId,
|
|
188
|
+ "createDept": this.currentStartDept.id,
|
125
|
189
|
"patient": {
|
126
|
190
|
"patientCode": v.patientCode
|
127
|
191
|
},
|