|
@@ -63,6 +63,9 @@
|
63
|
63
|
>
|
64
|
64
|
</div>
|
65
|
65
|
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
66
|
69
|
<div class="cell" v-show="order.parent_id == 0">
|
67
|
70
|
<label>给药途径</label>
|
68
|
71
|
<el-input
|
|
@@ -83,6 +86,16 @@
|
83
|
86
|
@focus="selectExecFrequencyAction"
|
84
|
87
|
></el-input>
|
85
|
88
|
</div>
|
|
89
|
+
|
|
90
|
+ <div class="cell" v-show="order.parent_id == 0">
|
|
91
|
+ <label>医嘱嘱托</label>
|
|
92
|
+ <input
|
|
93
|
+ class="inputBox"
|
|
94
|
+ style="width:100%"
|
|
95
|
+ v-model="order.remark"
|
|
96
|
+ >
|
|
97
|
+ </div>
|
|
98
|
+
|
86
|
99
|
</div>
|
87
|
100
|
</div>
|
88
|
101
|
</div>
|
|
@@ -198,6 +211,7 @@ export default {
|
198
|
211
|
single_dose_unit: "",
|
199
|
212
|
prescribing_number: "",
|
200
|
213
|
prescribing_number_unit: "",
|
|
214
|
+ remark:"",
|
201
|
215
|
|
202
|
216
|
// 在新增子药才用到的字段
|
203
|
217
|
parent_id: 0, // 父医嘱ID
|
|
@@ -232,6 +246,8 @@ export default {
|
232
|
246
|
this.order.single_dose_unit = "";
|
233
|
247
|
this.order.prescribing_number = "";
|
234
|
248
|
this.order.prescribing_number_unit = "";
|
|
249
|
+ this.order.remark = "";
|
|
250
|
+
|
235
|
251
|
},
|
236
|
252
|
showWithEdit: function(order) {
|
237
|
253
|
this.mode = 2;
|
|
@@ -247,6 +263,8 @@ export default {
|
247
|
263
|
this.order.single_dose_unit = order.single_dose_unit;
|
248
|
264
|
this.order.prescribing_number = order.prescribing_number;
|
249
|
265
|
this.order.prescribing_number_unit = order.prescribing_number_unit;
|
|
266
|
+ this.order.remark = order.remark;
|
|
267
|
+
|
250
|
268
|
},
|
251
|
269
|
showWithNewSubDrug: function(
|
252
|
270
|
parent_id,
|
|
@@ -263,6 +281,8 @@ export default {
|
263
|
281
|
this.order.start_time = parent_start_time;
|
264
|
282
|
this.order.title = "";
|
265
|
283
|
this.order.advice_desc = "";
|
|
284
|
+ this.order.remark = "";
|
|
285
|
+
|
266
|
286
|
// this.order.drug_spec = "";
|
267
|
287
|
// this.order.drug_spec_unit = "";
|
268
|
288
|
this.order.delivery_way =
|
|
@@ -298,14 +318,13 @@ export default {
|
298
|
318
|
this.$emit("did-create-new", {
|
299
|
319
|
title: this.order.title,
|
300
|
320
|
advice_desc: this.order.advice_desc,
|
301
|
|
- // drug_spec: this.order.drug_spec,
|
302
|
|
- // drug_spec_unit: this.order.drug_spec_unit,
|
303
|
321
|
delivery_way: this.order.delivery_way,
|
304
|
322
|
execution_frequency: this.order.execution_frequency,
|
305
|
323
|
single_dose: this.order.single_dose,
|
306
|
324
|
single_dose_unit: this.order.single_dose_unit,
|
307
|
325
|
prescribing_number: this.order.prescribing_number,
|
308
|
|
- prescribing_number_unit: this.order.prescribing_number_unit
|
|
326
|
+ prescribing_number_unit: this.order.prescribing_number_unit,
|
|
327
|
+ remark: this.order.remark
|
309
|
328
|
});
|
310
|
329
|
} else if (this.mode == 2) {
|
311
|
330
|
this.$emit("did-modify", {
|
|
@@ -318,7 +337,9 @@ export default {
|
318
|
337
|
single_dose: this.order.single_dose,
|
319
|
338
|
single_dose_unit: this.order.single_dose_unit,
|
320
|
339
|
prescribing_number: this.order.prescribing_number,
|
321
|
|
- prescribing_number_unit: this.order.prescribing_number_unit
|
|
340
|
+ prescribing_number_unit: this.order.prescribing_number_unit,
|
|
341
|
+ remark: this.order.remark
|
|
342
|
+
|
322
|
343
|
});
|
323
|
344
|
} else if (this.mode == 3) {
|
324
|
345
|
this.$emit("did-create-subdrug", {
|