Browse Source

打印单

XMLWAN 2 years ago
parent
commit
f2c2558778

+ 12 - 0
src/router/modules/dialysis.js View File

803
         noCache: true
803
         noCache: true
804
       }
804
       }
805
     },
805
     },
806
+    {
807
+      path: '/dialysis/print/batch/fiftyThree',
808
+      component: () =>
809
+        import('@/xt_pages/dialysis/batch_print/batch_print_order_fiftyThree'),
810
+      hidden: true,
811
+      is_menu: false,
812
+      name: 'batch_print_order_fiftyThree',
813
+      meta: {
814
+        title: '批量打印',
815
+        noCache: true
816
+      }
817
+    },
806
   ]
818
   ]
807
 }
819
 }

+ 11 - 0
src/xt_pages/dialysis/bloodPresssWatch.vue View File

337
           @click="batchPrintAction"
337
           @click="batchPrintAction"
338
           type="primary"
338
           type="primary"
339
           >批量打印</el-button>
339
           >批量打印</el-button>
340
+      </template>
341
+         <template v-if="this.template_id == 53">
342
+        <el-button
343
+          size="small"
344
+          icon="el-icon-printer"
345
+          :disabled="selecting_schs.length == 0"
346
+          @click="batchPrintAction"
347
+          type="primary"
348
+          >批量打印</el-button>
340
       </template>
349
       </template>
341
       <template v-if="this.template_id == 59">
350
       <template v-if="this.template_id == 59">
342
         <el-button
351
         <el-button
2106
         this.$router.push({ path: "/dialysis/print/batch/six" });
2115
         this.$router.push({ path: "/dialysis/print/batch/six" });
2107
       }else if (this.template_id == 51) {
2116
       }else if (this.template_id == 51) {
2108
         this.$router.push({ path: "/dialysis/print/batch/fiftyOne" });
2117
         this.$router.push({ path: "/dialysis/print/batch/fiftyOne" });
2118
+      }else if (this.template_id == 53) {
2119
+        this.$router.push({ path: "/dialysis/print/batch/fiftyThree" });
2109
       }else if (this.template_id == 59) {
2120
       }else if (this.template_id == 59) {
2110
         this.$router.push({ path: "/dialysis/print/batch/fiftynine" });
2121
         this.$router.push({ path: "/dialysis/print/batch/fiftynine" });
2111
       }else if (this.template_id == 60) {
2122
       }else if (this.template_id == 60) {

+ 3 - 3
src/xt_pages/management/components/UserForm.vue View File

684
               >桶
684
               >桶
685
             </el-form-item>
685
             </el-form-item>
686
             <span style="color:red" v-show="showone"
686
             <span style="color:red" v-show="showone"
687
-              >您已个月未更换,请注意检测</span
687
+              >您已个月未更换,请注意检测</span
688
             >
688
             >
689
           </el-col>
689
           </el-col>
690
         </el-row>
690
         </el-row>
711
             >
711
             >
712
               <el-checkbox v-model="userform.germ_checked">更换</el-checkbox>
712
               <el-checkbox v-model="userform.germ_checked">更换</el-checkbox>
713
               <span style="color:red" v-show="showone"
713
               <span style="color:red" v-show="showone"
714
-                >您已个月未更换,请注意检测</span
714
+                >您已个月未更换,请注意检测</span
715
               >
715
               >
716
             </el-form-item>
716
             </el-form-item>
717
           </el-col>
717
           </el-col>
750
             >
750
             >
751
               <el-checkbox v-model="userform.clean">清洁:</el-checkbox>
751
               <el-checkbox v-model="userform.clean">清洁:</el-checkbox>
752
               <span style="color:red" v-show="showone"
752
               <span style="color:red" v-show="showone"
753
-                >您已个月未清洁,请检查</span
753
+                >您已个月未清洁,请检查</span
754
               >
754
               >
755
             </el-form-item>
755
             </el-form-item>
756
           </el-col>
756
           </el-col>

+ 2 - 2
src/xt_pages/management/home.vue View File

1275
                                       <el-form-item label="规格:">
1275
                                       <el-form-item label="规格:">
1276
                                           <el-input style="width:100px" v-model="userform.norms"></el-input><span style="color:#606266;">桶</span>
1276
                                           <el-input style="width:100px" v-model="userform.norms"></el-input><span style="color:#606266;">桶</span>
1277
                                       </el-form-item>
1277
                                       </el-form-item>
1278
-                                       <span class="warn" v-show="warnShow">您已个月未更换,请注意检测</span>
1278
+                                       <span class="warn" v-show="warnShow">您已个月未更换,请注意检测</span>
1279
                                    </el-col>
1279
                                    </el-col>
1280
                                 </el-row>
1280
                                 </el-row>
1281
                                 <el-row>
1281
                                 <el-row>
1292
                                    <el-col :span="8">
1292
                                    <el-col :span="8">
1293
                                      <el-form-item label="细菌过滤器:">
1293
                                      <el-form-item label="细菌过滤器:">
1294
                                        <el-checkbox v-model="userform.germ_checked">更换</el-checkbox>
1294
                                        <el-checkbox v-model="userform.germ_checked">更换</el-checkbox>
1295
-                                       <span class="warn" v-show="warnShowTwo">您已个月未更换,请注意检测</span>
1295
+                                       <span class="warn" v-show="warnShowTwo">您已个月未更换,请注意检测</span>
1296
                                      </el-form-item>
1296
                                      </el-form-item>
1297
 
1297
 
1298
                                      </el-col>
1298
                                      </el-col>

+ 8 - 10
src/xt_pages/user/firstDiseasePrint.vue View File

43
                 </div> 
43
                 </div> 
44
             </div>
44
             </div>
45
 
45
 
46
-             <div class="inline_block" style="width:100%;">
46
+             <div class="inline_block" style="width:100%;height:100%">
47
               <span style="font-size:20px">初步诊断:</span>
47
               <span style="font-size:20px">初步诊断:</span>
48
               <div v-html="hosDetail.tentative_diagnosis" class="printP" style="text-indent:20px">
48
               <div v-html="hosDetail.tentative_diagnosis" class="printP" style="text-indent:20px">
49
-
50
               </div>
49
               </div>
51
              </div>
50
              </div>
52
 
51
 
53
-             <div class="inline_block" style="width:100%;">
52
+             <div class="inline_block" style="width:100%;height:100%">
54
               <span style="font-size:20px"> 诊断依据:</span>
53
               <span style="font-size:20px"> 诊断依据:</span>
55
-              <div v-html="hosDetail.diagnostic_basis" class="printP" style="text-indent:20px">
56
-
57
-              </div>
54
+              <span v-html="hosDetail.diagnostic_basis" class="printP" style="text-indent:20px">
55
+              </span>
58
              </div>
56
              </div>
59
 
57
 
60
              <div class="inline_block" style="width:100%;">
58
              <div class="inline_block" style="width:100%;">
61
                 <span  style="font-size:20px">鉴别诊断:</span> 
59
                 <span  style="font-size:20px">鉴别诊断:</span> 
62
-                <div v-html="hosDetail.differential_diagnosis" class="printP" style="text-indent:20px">
60
+                <span v-html="hosDetail.differential_diagnosis" class="printP" style="text-indent:20px">
63
 
61
 
64
-                </div>
62
+                </span>
65
               </div>
63
               </div>
66
 
64
 
67
               <div class="inline_block" style="width:100%;">
65
               <div class="inline_block" style="width:100%;">
68
                  <span style="font-size:20px">诊疗计划:</span>
66
                  <span style="font-size:20px">诊疗计划:</span>
69
-                <div v-html="hosDetail.treatment_plan" class="printP" style="text-indent:20px">
67
+                <span v-html="hosDetail.treatment_plan" class="printP" style="text-indent:20px">
70
 
68
 
71
-                </div>
69
+                </span>
72
               </div>
70
               </div>
73
 
71
 
74
              <div class="inline_block" style="float:right;margin-right:50px">
72
              <div class="inline_block" style="float:right;margin-right:50px">