|
@@ -221,13 +221,12 @@ export default {
|
221
|
221
|
org_id: 0,
|
222
|
222
|
operatorMaps: {},
|
223
|
223
|
operators: [],
|
224
|
|
- doctorList:[]
|
|
224
|
+ doctorList_1: []
|
225
|
225
|
};
|
226
|
226
|
},
|
227
|
227
|
methods: {
|
228
|
228
|
// 电子签名
|
229
|
229
|
setAdminUserES(id) {
|
230
|
|
- console.log(id,'oo')
|
231
|
230
|
if (id == 0) {
|
232
|
231
|
return "";
|
233
|
232
|
}
|
|
@@ -298,8 +297,18 @@ export default {
|
298
|
297
|
this.advicePrint = advicePrint;
|
299
|
298
|
this.prescriptions = advicePrint;
|
300
|
299
|
|
301
|
|
- this.doctorList = response.data.data.advicePrint.eles
|
302
|
|
-
|
|
300
|
+ this.doctorList_1 = response.data.data.eles;
|
|
301
|
+ console.log(this.doctorList_1, "医生列表");
|
|
302
|
+ if (this.doctorList_1.length > 0) {
|
|
303
|
+ var operatorsLen = this.doctorList_1.length;
|
|
304
|
+ for (var index = 0; index < operatorsLen; index++) {
|
|
305
|
+ this.$set(
|
|
306
|
+ this.operatorMaps,
|
|
307
|
+ this.doctorList_1[index].creator,
|
|
308
|
+ this.doctorList_1[index]
|
|
309
|
+ );
|
|
310
|
+ }
|
|
311
|
+ }
|
303
|
312
|
|
304
|
313
|
console.log("处方222222", this.prescriptions);
|
305
|
314
|
var hisPatient = response.data.data.hisPatient;
|