|
@@ -110,20 +110,23 @@
|
110
|
110
|
</div>
|
111
|
111
|
<div>
|
112
|
112
|
医生签字:
|
113
|
|
-
|
|
113
|
+
|
114
|
114
|
<img
|
115
|
|
- v-if="setAdminUserES(projectPrint[0].doctor)"
|
|
115
|
+ v-if="setAdminUserES(advicePrint[0].creator)"
|
116
|
116
|
style="height: 30px"
|
117
|
|
- :src="setAdminUserES(projectPrint[0].doctor)"
|
|
117
|
+ :src="setAdminUserES(advicePrint[0].creator)"
|
118
|
118
|
alt=""
|
119
|
119
|
srcset=""
|
120
|
120
|
/>
|
121
|
|
- <span
|
|
121
|
+ <span
|
122
|
122
|
style="width: 100px; display: inline-block"
|
123
|
123
|
v-else-if="advicePrint[0].doctor != ''"
|
124
|
124
|
>
|
125
|
125
|
{{ advicePrint[0].doctor ? advicePrint[0].doctor : "" }}
|
126
|
126
|
</span>
|
|
127
|
+ <span v-else>
|
|
128
|
+
|
|
129
|
+ </span>
|
127
|
130
|
</div>
|
128
|
131
|
</div>
|
129
|
132
|
</div>
|
|
@@ -260,7 +263,6 @@ export default {
|
260
|
263
|
});
|
261
|
264
|
}
|
262
|
265
|
});
|
263
|
|
- // console.log(projectPrint,'projectPrint')
|
264
|
266
|
this.doctorList_1 = response.data.data.eles;
|
265
|
267
|
// console.log(this.doctorList_1, "医生列表");
|
266
|
268
|
if (this.doctorList_1.length > 0) {
|
|
@@ -286,13 +288,14 @@ export default {
|
286
|
288
|
data2.push(item);
|
287
|
289
|
}
|
288
|
290
|
});
|
289
|
|
-
|
|
291
|
+ this.projectPrint = data;
|
|
292
|
+ console.log("列表", this.projectPrint);
|
290
|
293
|
this.total = total.toFixed(2);
|
291
|
294
|
this.pre_time = this.advicePrint[0].pre_time;
|
292
|
295
|
this.doctor = this.advicePrint[0].doctor;
|
293
|
|
- this.projectPrint = data;
|
|
296
|
+
|
294
|
297
|
this.singleProjectPrint = data2;
|
295
|
|
- console.log("列表", this.projectPrint);
|
|
298
|
+
|
296
|
299
|
var projectlist = response.data.data.projectlist;
|
297
|
300
|
|
298
|
301
|
var projectlist = response.data.data.projectlist;
|
|
@@ -308,13 +311,15 @@ export default {
|
308
|
311
|
},
|
309
|
312
|
// 电子签名
|
310
|
313
|
setAdminUserES(id) {
|
|
314
|
+ // console.log(id, "id");
|
311
|
315
|
if (id == 0) {
|
312
|
316
|
return "";
|
313
|
317
|
}
|
314
|
318
|
if (id in this.operatorMaps) {
|
315
|
|
- console.log(this.operatorMaps, "this.operatorMaps");
|
|
319
|
+ // console.log(this.operatorMaps, "this.operatorMaps");
|
316
|
320
|
return this.operatorMaps[id].url;
|
317
|
321
|
} else {
|
|
322
|
+ // console.log("po");
|
318
|
323
|
return "";
|
319
|
324
|
}
|
320
|
325
|
},
|