Browse Source

Merge branch 'new_pad_branch' of http://git.shengws.com/zhangbj/xt_pad into new_pad_branch

csx 5 years ago
parent
commit
baf2ff3dd7

+ 3 - 0
src/pages/main/dialog/AcceptsDialog.vue View File

@@ -475,6 +475,9 @@ export default {
475 475
   .el-radio {
476 476
     margin-right: 14px;
477 477
     width: 2.2rem;
478
+    @media only screen and (min-width: 768px) {
479
+      margin-bottom: 0.34rem;
480
+    }
478 481
   }
479 482
   .el-radio__inner {
480 483
     width: 16px !important;

+ 27 - 10
src/pages/main/dialog/new_order/AddNewOrders.vue View File

@@ -6,7 +6,7 @@
6 6
           <span class="iconfont">&#xe720;</span>返回
7 7
         </div>
8 8
         <h1 class="name">新增医嘱</h1>
9
-        <span class="success" @click="comfirmAction">完成</span>
9
+        <span class="success" @click="comfirmAction">保存</span>
10 10
       </div>
11 11
       <div class="yzNav" style="width:100%;">
12 12
         <span class="newSpan" @click="addOrderByTemplateAction">选择模板</span>
@@ -18,7 +18,12 @@
18 18
         <div style="overflow: hidden;">
19 19
           <div class="cell" style="margin-top: 0;">
20 20
             <label>医嘱类型</label>
21
-            <el-input class="typeInput" ref="advice_type" value="临时" disabled></el-input>
21
+            <el-input
22
+              class="typeInput"
23
+              ref="advice_type"
24
+              value="临时"
25
+              disabled
26
+            ></el-input>
22 27
           </div>
23 28
           <div class="cell" style="margin-top: 0;">
24 29
             <label>开始时间</label>
@@ -38,7 +43,11 @@
38 43
             <label>开嘱时间 {{ record_date_str }}</label>
39 44
           </div>
40 45
         </div>
41
-        <div id="newDialogContent" class="DialogContent choose" style="height: 6.2rem;">
46
+        <div
47
+          id="newDialogContent"
48
+          class="DialogContent choose"
49
+          style="height: 6.2rem;"
50
+        >
42 51
           <div class="newAddTable">
43 52
             <table class="table">
44 53
               <tr>
@@ -61,16 +70,20 @@
61 70
                 >
62 71
                   <td
63 72
                     style="text-align: left; padding-left: 5px; padding-right: 5px;"
64
-                  >{{ advice.title }}</td>
65
-                  <td v-if="advice.advice_desc">{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</td>
73
+                  >
74
+                    {{ advice.title }}
75
+                  </td>
76
+                  <td v-if="advice.advice_desc">
77
+                    {{ advice.advice_desc }}{{ advice.drug_spec_unit }}
78
+                  </td>
66 79
                   <td v-if="advice.prescribing_number">
67 80
                     {{ advice.prescribing_number
68 81
                     }}{{ advice.prescribing_number_unit }}
69 82
                   </td>
70 83
                   <td v-else></td>
71
-                  <td
72
-                    v-if="advice.single_dose"
73
-                  >{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
84
+                  <td v-if="advice.single_dose">
85
+                    {{ advice.single_dose }} {{ advice.single_dose_unit }}
86
+                  </td>
74 87
                   <td v-else></td>
75 88
                   <td>{{ advice.delivery_way }}</td>
76 89
                   <td>{{ advice.execution_frequency }}</td>
@@ -87,8 +100,12 @@
87 100
                 >
88 101
                   <td
89 102
                     style="text-align: left; padding-right: 5px; padding-left: 25px;"
90
-                  >{{ subdrug.title }}</td>
91
-                  <td>{{ subdrug.advice_desc }} {{ subdrug.drug_spec_unit }}</td>
103
+                  >
104
+                    {{ subdrug.title }}
105
+                  </td>
106
+                  <td>
107
+                    {{ subdrug.advice_desc }} {{ subdrug.drug_spec_unit }}
108
+                  </td>
92 109
                   <td>
93 110
                     <span v-if="subdrug.prescribing_number">
94 111
                       {{ subdrug.prescribing_number

+ 16 - 8
src/pages/main/dialog/new_order/single_option_dialog.vue View File

@@ -5,7 +5,7 @@
5 5
         <span class="iconfont">&#xe720;</span>返回
6 6
       </div>
7 7
       <h1 class="name">{{ title }}</h1>
8
-      <span class="success"></span>
8
+      <span class="success" style="width:36px;"></span>
9 9
     </div>
10 10
 
11 11
     <div class="optionsBox">
@@ -82,17 +82,21 @@ export default {
82 82
 .optionsBox {
83 83
   background: #fff;
84 84
   min-height: 5rem;
85
-  @media only screen and (max-width: 812px) {
86
-    min-height: 8rem !important;
85
+  @media only screen and (max-width: 767px) {
86
+    min-height: 13.8rem;
87 87
   }
88
+  // @media only screen and (max-width: 812px) {
89
+  //   min-height: 11.8rem;
90
+  // }
88 91
   ul {
89 92
     overflow-y: scroll;
90
-    max-height: 9rem;
93
+    max-height: 16rem;
91 94
     li {
92
-      height: 1rem;
93
-      line-height: 1rem;
95
+      height: 1.2rem;
96
+      line-height: 1.2rem;
94 97
       border-bottom: 1px #e5e5e5 solid;
95 98
       padding: 0 0.38rem;
99
+      font-size: 0.45rem;
96 100
     }
97 101
     .tick {
98 102
       position: relative;
@@ -117,10 +121,14 @@ export default {
117 121
   max-height: 6.8rem;
118 122
   min-height: 5rem;
119 123
   overflow-y: scroll;
120
-  @media only screen and (max-width: 812px) {
121
-    max-height: 8rem !important;
124
+  @media only screen and (max-width: 767px) {
125
+    max-height: 11.8rem !important;
122 126
     min-height: 8rem !important;
123 127
   }
128
+  // @media only screen and (max-width: 812px) {
129
+  //   max-height: 8rem !important;
130
+  //   min-height: 8rem !important;
131
+  // }
124 132
   ul {
125 133
     li {
126 134
       line-height: 1rem;

+ 1 - 1
src/pages/personal/ElectronicSignature.vue View File

@@ -484,7 +484,7 @@ export default {
484 484
   //   height: 400px !important;
485 485
   // }
486 486
   @media only screen and (min-width: 768px) {
487
-    width: 1000px !important;
487
+    width: 768px !important;
488 488
     height: 400px !important;
489 489
   }
490 490
 }