28169 1 год назад
Родитель
Сommit
69f4bbffd4

+ 20 - 20
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue Просмотреть файл

@@ -3680,27 +3680,27 @@ export default {
3680 3680
              
3681 3681
             }
3682 3682
 
3683
-            var delghTwo = 0;
3684
-            if (
3685
-              this.records[recordIndex].advices &&
3686
-              this.records[recordIndex].advices.length < 10
3687
-            ) {
3688
-              delghTwo = 10 - this.records[recordIndex].advices.length;
3689
-            } else {
3690
-              delghTwo = 0;
3691
-            }
3683
+            // var delghTwo = 0;
3684
+            // if (
3685
+            //   this.records[recordIndex].advices &&
3686
+            //   this.records[recordIndex].advices.length < 8
3687
+            // ) {
3688
+            //   delghTwo = 8 - this.records[recordIndex].advices.length;
3689
+            // } else {
3690
+            //   delghTwo = 0;
3691
+            // }
3692 3692
 
3693
-            if (delghTwo > 0) {
3694
-              if (
3695
-                typeof this.records[recordIndex].advices === "undefined" ||
3696
-                this.records[recordIndex].advices == null
3697
-              ) {
3698
-                this.records[recordIndex].advices = [];
3699
-              }
3700
-              for (let index = 0; index < delghTwo; index++) {
3701
-                this.records[recordIndex].advices.push([]);
3702
-              }
3703
-            }
3693
+            // if (delghTwo > 0) {
3694
+            //   if (
3695
+            //     typeof this.records[recordIndex].advices === "undefined" ||
3696
+            //     this.records[recordIndex].advices == null
3697
+            //   ) {
3698
+            //     this.records[recordIndex].advices = [];
3699
+            //   }
3700
+            //   for (let index = 0; index < delghTwo; index++) {
3701
+            //     this.records[recordIndex].advices.push([]);
3702
+            //   }
3703
+            // }
3704 3704
 
3705 3705
 
3706 3706
 

+ 13 - 0
src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue Просмотреть файл

@@ -453,6 +453,7 @@
453 453
                   v-model="form.drug_spec_unit"
454 454
                   style="width: 100px;"
455 455
                   filterable
456
+                  clearable
456 457
                   placeholder="选择"
457 458
                 >
458 459
                   <el-option
@@ -474,6 +475,7 @@
474 475
                 v-model="form.prescribing_number_unit"
475 476
                 style="width: 56%;"
476 477
                 filterable
478
+                clearable
477 479
                 placeholder="选择"
478 480
               >
479 481
                 <el-option
@@ -493,6 +495,7 @@
493 495
                 v-model="form.single_dose_unit"
494 496
                 style="width: 56%;"
495 497
                 filterable
498
+                clearable
496 499
                 placeholder="选择"
497 500
               >
498 501
                 <el-option
@@ -511,6 +514,7 @@
511 514
                 v-model="form.delivery_way"
512 515
                 :disabled="form.parent_id == 0 ? false : true"
513 516
                 filterable
517
+                clearable
514 518
                 placeholder="请选择(输入可搜索)"
515 519
               >
516 520
                 <el-option
@@ -531,6 +535,7 @@
531 535
                 v-model="form.execution_frequency"
532 536
                 :disabled="form.parent_id == 0 ? false : true"
533 537
                 filterable
538
+                clearable
534 539
                 placeholder="请选择(输入可搜索)"
535 540
               >
536 541
                 <el-option
@@ -543,6 +548,13 @@
543 548
             </el-form-item>
544 549
           </el-col>
545 550
         </el-row>
551
+        <el-row>
552
+           <el-col :span="12">
553
+            <el-form-item label="医嘱嘱托:" prop="remark">
554
+              <el-input v-model="form.remark" style="width:200px"></el-input>
555
+            </el-form-item>
556
+           </el-col>
557
+        </el-row>
546 558
       </el-form>
547 559
       <div slot="footer" class="dialog-footer" v-show="showAdviceForm">
548 560
         <el-button @click="hideForm">取 消</el-button>
@@ -1020,6 +1032,7 @@
1020 1032
               this.doctor_advice[this.currentIndex].drug_id = advice.drug_id
1021 1033
               this.doctor_advice[this.currentIndex].drug_name_id = advice.drug_name_id
1022 1034
               this.doctor.advice[this.currentIndex].way = advice.way
1035
+              
1023 1036
               this.currentIndex = -1
1024 1037
               return false
1025 1038
             }

+ 9 - 1
src/xt_pages/dialysis/details/dialog/adviceDialog/EditGroupAdvice.vue Просмотреть файл

@@ -551,6 +551,14 @@
551 551
               </el-select>
552 552
             </el-form-item>
553 553
           </el-col>
554
+          
555
+        </el-row>
556
+        <el-row>
557
+           <el-col :span="12">
558
+            <el-form-item label="医嘱嘱托:" prop="remark">
559
+              <el-input v-model="nameForm.remark" style="width:200px"></el-input>
560
+            </el-form-item>
561
+           </el-col>
554 562
         </el-row>
555 563
       </el-form>
556 564
       <div slot="footer" class="dialog-footer">
@@ -933,7 +941,7 @@ export default {
933 941
               drug_name_id:_this.groupForm.drug_name_id,
934 942
               drug_id:_this.groupForm.drug_id,
935 943
               way:_this.groupForm.way,
936
-
944
+           
937 945
             };
938 946
             let mode = "2";
939 947
             if (

+ 6 - 6
src/xt_pages/workforce/remind_print_setting_one.vue Просмотреть файл

@@ -96,7 +96,7 @@
96 96
                     {{main_collection.dialysissolution.anticoagulant_shouji}}iu
97 97
                    </span>
98 98
                    <span v-if="main_collection.dialysissolution.anticoagulant == 17">
99
-                    {{main_collection.dialysissolution.anticoagulant_shouji}}iu
99
+                    {{main_collection.dialysissolution.anticoagulant_shouji}}mg
100 100
                    </span>
101 101
                  
102 102
                 </div>
@@ -149,7 +149,7 @@
149 149
                     {{main_collection.dialysissolution.anticoagulant_shouji}}iu
150 150
                    </span>
151 151
                    <span v-if="main_collection.prescription.anticoagulant == 17">
152
-                    {{main_collection.prescription.anticoagulant_shouji}}iu
152
+                    {{main_collection.prescription.anticoagulant_shouji}}mg
153 153
                    </span>
154 154
                  
155 155
                 </div>
@@ -204,7 +204,7 @@
204 204
                     iu/h
205 205
                    </span>
206 206
                    <span v-if="main_collection.dialysissolution.anticoagulant == 17">
207
-                    iu/h
207
+                    mg/h
208 208
                    </span>
209 209
               
210 210
                 </div>
@@ -260,7 +260,7 @@
260 260
                     iu/h
261 261
                    </span>
262 262
                    <span v-if="main_collection.prescription.anticoagulant == 17">
263
-                    iu/h
263
+                    mg/h
264 264
                    </span>
265 265
               
266 266
                 </div>
@@ -316,7 +316,7 @@
316 316
                    iu
317 317
                    </span>
318 318
                    <span v-if="main_collection.dialysissolution.anticoagulant == 17">
319
-                   iu
319
+                   mg
320 320
                    </span>
321 321
           
322 322
                 </div>
@@ -372,7 +372,7 @@
372 372
                    iu
373 373
                    </span>
374 374
                    <span v-if="main_collection.prescription.anticoagulant == 17">
375
-                   iu
375
+                   mg
376 376
                    </span>
377 377
           
378 378
                 </div>