csx 5 years ago
parent
commit
b179c46121

+ 2 - 0
src/pages/advice/DialysisAdviceTable.vue View File

@@ -94,6 +94,8 @@
94 94
               <span v-if="advice.single_dose"> 单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>
95 95
               <span >{{advice.delivery_way}}</span>
96 96
               <span >{{advice.execution_frequency}}</span>
97
+              <span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{advice.remark}})</span>
98
+
97 99
             </td>
98 100
             <td>{{ advice.parent_id == 0 ? parseTime(advice.execution_time, "{m}-{d} {h}:{i}") : "" }}</td>
99 101
             <td>{{ advice.parent_id == 0 ? getName(advice.execution_staff) : "" }}</td>

+ 8 - 0
src/pages/main/dialog/OrdersDialog.vue View File

@@ -73,6 +73,8 @@
73 73
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
74 74
                     <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
75 75
                     <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
76
+                    <span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{advice.remark}})</span>
77
+
76 78
                   </div>
77 79
                 </td>
78 80
 
@@ -286,6 +288,7 @@
286 288
         EditDoctorAdvice(advice.id, {
287 289
           advice_name: advice.title,
288 290
           advice_desc: advice.advice_desc,
291
+          remark:advice.remark,
289 292
           // drug_spec: String(advice.drug_spec),
290 293
           // drug_spec_unit: advice.drug_spec_unit,
291 294
           delivery_way: advice.delivery_way,
@@ -305,6 +308,8 @@
305 308
                 if (advice.id == resp_advice.id) {
306 309
                   advice.advice_name = resp_advice.advice_name;
307 310
                   advice.advice_desc = resp_advice.advice_desc;
311
+                  advice.remark = resp_advice.remark;
312
+
308 313
                   // advice.drug_spec = resp_advice.drug_spec;
309 314
                   // (advice.drug_spec_unit = resp_advice.drug_spec_unit),
310 315
                   (advice.delivery_way = resp_advice.delivery_way),
@@ -837,6 +842,7 @@
837 842
             parent_id: advice.parent_id,
838 843
             title: advice.advice_name,
839 844
             advice_desc: advice.advice_desc,
845
+            remark: advice.remark,
840 846
             // drug_spec: advice.drug_spec,
841 847
             // drug_spec_unit: advice.drug_spec_unit,
842 848
             delivery_way: advice.delivery_way,
@@ -855,6 +861,8 @@
855 861
               parent_id: advice.parent_id,
856 862
               title: advice.advice_name,
857 863
               advice_desc: advice.advice_desc,
864
+              remark: advice.remark,
865
+
858 866
               // drug_spec: advice.drug_spec,
859 867
               // drug_spec_unit: advice.drug_spec_unit,
860 868
               delivery_way: advice.delivery_way,

+ 2 - 4
src/pages/main/dialog/modify_order/ModifyAdviceGroup.vue View File

@@ -266,8 +266,7 @@ export default {
266 266
       EditDoctorAdvice(advice.id, {
267 267
         advice_name: advice.title,
268 268
         advice_desc: advice.advice_desc,
269
-        // drug_spec: String(advice.drug_spec),
270
-        // drug_spec_unit: advice.drug_spec_unit,
269
+        remark:advice.remark,
271 270
         delivery_way: advice.delivery_way,
272 271
         execution_frequency: advice.execution_frequency,
273 272
         single_dose: String(advice.single_dose),
@@ -281,8 +280,7 @@ export default {
281 280
           this.current_advice
282 281
           this.current_advice.advice_name = resp_advice.advice_name
283 282
           this.current_advice.advice_desc = resp_advice.advice_desc
284
-          // this.current_advice.drug_spec = resp_advice.drug_spec
285
-          // this.current_advice.drug_spec_unit = resp_advice.drug_spec_unit,
283
+          this.current_advice.remark = resp_advice.remark
286 284
           this.current_advice.delivery_way = resp_advice.delivery_way,
287 285
           this.current_advice.execution_frequency = resp_advice.execution_frequency,
288 286
           this.current_advice.single_dose = resp_advice.single_dose,

+ 13 - 2
src/pages/main/dialog/modify_order/modify_order_form.vue View File

@@ -83,6 +83,15 @@
83 83
                 @focus="selectExecFrequencyAction"
84 84
               ></el-input>
85 85
             </div>
86
+
87
+            <div class="cell" v-show="order.parent_id == 0">
88
+              <label>医嘱嘱托</label>
89
+              <input
90
+                class="inputBox"
91
+                style="width:100%"
92
+                v-model="order.remark"
93
+              >
94
+            </div>
86 95
           </div>
87 96
         </div>
88 97
       </div>
@@ -196,6 +205,7 @@ export default {
196 205
         advice_desc: "",
197 206
         // drug_spec: "",
198 207
         // drug_spec_unit: "",
208
+        remark:"",
199 209
         delivery_way: "",
200 210
         execution_frequency: "",
201 211
         single_dose: "",
@@ -221,6 +231,8 @@ export default {
221 231
       this.order.parent_id = order.parent_id;
222 232
       this.order.title = order.title;
223 233
       this.order.advice_desc = order.advice_desc;
234
+      this.order.remark = order.remark;
235
+
224 236
       // this.order.drug_spec = order.drug_spec;
225 237
       // this.order.drug_spec_unit = order.drug_spec_unit;
226 238
       this.order.delivery_way =
@@ -258,8 +270,7 @@ export default {
258 270
           parent_id: this.order.parent_id,
259 271
           title: this.order.title,
260 272
           advice_desc: this.order.advice_desc,
261
-          // drug_spec: this.order.drug_spec,
262
-          // drug_spec_unit: this.order.drug_spec_unit,
273
+          remark:this.order.remark,
263 274
           delivery_way: this.order.delivery_way,
264 275
           execution_frequency: this.order.execution_frequency,
265 276
           single_dose: this.order.single_dose,

+ 3 - 1
src/pages/main/dialog/new_order/AddNewOrders.vue View File

@@ -15,7 +15,7 @@
15 15
             <span @click="deleteOrderAction">删除医嘱内容</span>
16 16
       </div>
17 17
       <div class="DialogContent choose" style="height: 6.2rem;" >
18
-        <div class="content clearfix">  
18
+        <div class="content clearfix">
19 19
           <div style="overflow: hidden;">
20 20
             <div class="cell" style="margin-top: 0;">
21 21
               <label>医嘱类型</label>
@@ -283,6 +283,7 @@ export default {
283 283
           prescribing_number_unit: advice.prescribing_number_unit,
284 284
           delivery_way: advice.delivery_way,
285 285
           execution_frequency: advice.execution_frequency,
286
+          remark : advice.remark,
286 287
           subdrugs: []
287 288
         };
288 289
         for (let s_i = 0; s_i < advice.subdrugs.length; s_i++) {
@@ -445,6 +446,7 @@ export default {
445 446
       this.show_dialog_key = 0;
446 447
       order.id = 0;
447 448
       order.subdrugs = [];
449
+      console.log(order)
448 450
       this.advices.push(order);
449 451
     },
450 452
     didModifyOrder: function(order) {

+ 25 - 4
src/pages/main/dialog/new_order/order_form.vue View File

@@ -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", {

+ 4 - 2
src/pages/main/today/statOrder.vue View File

@@ -26,8 +26,10 @@
26 26
               <span>{{advice.advice_desc}}</span>
27 27
               <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
28 28
               <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
29
-              <span>{{advice.delivery_way}}</span>
30
-              <span>{{advice.execution_frequency}}</span>
29
+              <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
30
+              <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
31
+              <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
32
+
31 33
             </td>
32 34
 
33 35
             <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>