Browse Source

Merge remote-tracking branch 'origin/20220812' into 20220812

mainqaq 2 years ago
parent
commit
e61e90561d

+ 22 - 1
src/xt_pages/Pharmacy/DispensingDetails.vue View File

@@ -71,7 +71,7 @@
71 71
         :class="signAndWeighBoxPatients"
72 72
         border
73 73
       >
74
-        <el-table-column type="index" label="序号" align="center">
74
+        <el-table-column type="index" label="序号" align="center" width="100">
75 75
         </el-table-column>
76 76
         <el-table-column label="患者名称" align="center">
77 77
           <template slot-scope="scope">
@@ -212,4 +212,25 @@ export default {
212 212
 </script>
213 213
 
214 214
 <style rel="stylesheet/css" lang="scss" scoped>
215
+
216
+/deep/ .el-table--scrollable-x .el-table__body-wrapper {
217
+  overflow: auto;
218
+}
219
+/deep/ .gutter {
220
+  width: 15px !important;
221
+  display: inline-block !important;
222
+}
223
+/deep/ .el-table__fixed-right-patch {
224
+  width: 15px !important;
225
+}
226
+
227
+/deep/ .el-table__fixed-right {
228
+  bottom: 0 !important;
229
+  left: auto;
230
+  right: 0;
231
+}
232
+/deep/ .el-table__body-wrapper::-webkit-scrollbar {
233
+  width: 15px !important;
234
+  height: 15px !important;
235
+}
215 236
 </style>

+ 28 - 9
src/xt_pages/Pharmacy/DrugDispensing.vue View File

@@ -223,21 +223,19 @@
223 223
         </div>
224 224
       </div>
225 225
 
226
-      <el-dialog
227
-        title="设置"
228
-        :visible.sync="dialogVisible"
229
-        width="30%">
230
-        <span>请选择药品是否要通过药房管理出库</span>
231
-        <span>
226
+      <el-dialog title="设置" :visible.sync="dialogVisible" width="30%">
227
+        <span style="font-size: 17px">请选择药品是否要通过药房管理出库</span>
228
+        <span style="display: block; padding: 18px 25px">
232 229
           <el-radio v-model="is_open" label="1">是</el-radio>
233 230
           <el-radio v-model="is_open" label="2">否</el-radio>
234 231
         </span>
235
-        <span>
232
+        <div style="height: 50px; background: #c7ebfc; border-radius: 5px;padding: 7px;">
233
+          <i class="el-icon-info" style="color: #3399ff;font-size: 17px;"></i>
236 234
           若选择为是,则通过药房发药的药品都会在发药之后进行出库,否则按原来的方式进行出库管理
237
-        </span>
235
+        </div>
238 236
         <span slot="footer" class="dialog-footer">
239 237
           <el-button @click="dialogVisible = false">取 消</el-button>
240
-          <el-button type="primary" @click="SaveSetting">确 定</el-button>
238
+          <el-button type="primary" @click="SaveSetting">保 存</el-button>
241 239
         </span>
242 240
       </el-dialog>
243 241
     </div>
@@ -616,4 +614,25 @@ export default {
616 614
     justify-content: flex-end;
617 615
   }
618 616
 }
617
+
618
+/deep/ .el-table--scrollable-x .el-table__body-wrapper {
619
+  overflow: auto;
620
+}
621
+/deep/ .gutter {
622
+  width: 15px !important;
623
+  display: inline-block !important;
624
+}
625
+/deep/ .el-table__fixed-right-patch {
626
+  width: 15px !important;
627
+}
628
+
629
+/deep/ .el-table__fixed-right {
630
+  bottom: 0 !important;
631
+  left: auto;
632
+  right: 0;
633
+}
634
+/deep/ .el-table__body-wrapper::-webkit-scrollbar {
635
+  width: 15px !important;
636
+  height: 15px !important;
637
+}
619 638
 </style>

+ 21 - 0
src/xt_pages/Pharmacy/PatientDispensing.vue View File

@@ -529,4 +529,25 @@ export default {
529 529
     justify-content: flex-end;
530 530
   }
531 531
 }
532
+
533
+/deep/ .el-table--scrollable-x .el-table__body-wrapper {
534
+  overflow: auto;
535
+}
536
+/deep/ .gutter {
537
+  width: 15px !important;
538
+  display: inline-block !important;
539
+}
540
+/deep/ .el-table__fixed-right-patch {
541
+  width: 15px !important;
542
+}
543
+
544
+/deep/ .el-table__fixed-right {
545
+  bottom: 0 !important;
546
+  left: auto;
547
+  right: 0;
548
+}
549
+/deep/ .el-table__body-wrapper::-webkit-scrollbar {
550
+  width: 15px !important;
551
+  height: 15px !important;
552
+}
532 553
 </style>

+ 6 - 1
src/xt_pages/Pharmacy/print/drugPrint.vue View File

@@ -150,7 +150,9 @@ export default {
150 150
       //     scanStyles: false,
151 151
       //   });
152 152
       this.printJson({
153
-        title: `<div style="width:100%;text-align:center;font-size:16px;font-weight:bold;">${this.org_name}医院 领药单</div>
153
+        title: `
154
+        <div>
155
+        <div style="width: 940px;text-align:center;font-size:16px;font-weight:bold;">${this.org_name}医院 领药单</div>
154 156
         <div style="width: 940px;border-bottom: 1px solid;display: flex;margin: 30px auto;font-size:14px;">
155 157
         <div style="width: 230px;padding: 10px 0;">药品名称:${this.name}</div>
156 158
         <div style="width: 230px;padding: 10px 0;">规格:${this.specifications}</div>
@@ -213,6 +215,9 @@ export default {
213 215
 </script>
214 216
 
215 217
 <style lang="scss" scoped>
218
+/deep/ .el-dialog{
219
+  width: 60%;
220
+}
216 221
 .print_style {
217 222
   position: absolute;
218 223
   right: 10px;

+ 1 - 0
src/xt_pages/Pharmacy/print/patientPrint.vue View File

@@ -13,6 +13,7 @@
13 13
       <div class="list_title">
14 14
         <div>患者名称:{{name}}</div>
15 15
         <div>发药状态:{{state}}</div>
16
+        <div>日期:</div>
16 17
       </div>
17 18
 
18 19
       <el-table