瀏覽代碼

修改样式

See999 5 年之前
父節點
當前提交
0b73fb0dfc

+ 21 - 7
src/pages/main/DetailsPage.vue 查看文件

@@ -17,7 +17,9 @@
17 17
               :key="i"
18 18
               :class="index == i ? 'active' : ''"
19 19
               @click="ClickTab(i)"
20
-            >{{ item }}</li>
20
+            >
21
+              {{ item }}
22
+            </li>
21 23
           </ul>
22 24
         </div>
23 25
 
@@ -28,13 +30,23 @@
28 30
                   <span class="iconfont">2018-01-01&#xe74a;</span>
29 31
         </div>-->
30 32
         <div class="print" style="float: right; display:none">
31
-          <el-button size="mini" type="primary" @click="print" icon="el-icon-printer">打印</el-button>
33
+          <el-button
34
+            size="mini"
35
+            type="primary"
36
+            @click="print"
37
+            icon="el-icon-printer"
38
+            >打印</el-button
39
+          >
32 40
         </div>
33 41
       </div>
34 42
       <div class="Tab">
35 43
         <CaseHistory v-show="index == 0" title="病历"></CaseHistory>
36 44
         <!--<check-tab v-show="index==1" title="化验单"></check-tab>-->
37
-        <dialysis-tab v-show="index == 1" title="透析" v-on:records="jump(val)"></dialysis-tab>
45
+        <dialysis-tab
46
+          v-show="index == 1"
47
+          title="透析"
48
+          v-on:records="jump(val)"
49
+        ></dialysis-tab>
38 50
         <today-tab ref="today" v-show="index == 2" title="今日"></today-tab>
39 51
       </div>
40 52
     </div>
@@ -214,17 +226,19 @@ export default {
214 226
   }
215 227
 }
216 228
 .add {
217
-  width: 1.8rem;
218
-  height: 1.8rem;
229
+  width: 1.6rem;
230
+  height: 1.6rem;
219 231
   background: #f18f68;
220 232
   // box-shadow: 0px 3px 9px 0px rgba(7, 30, 102, 0.15);
221 233
   border-radius: 50%;
222 234
   position: fixed;
223 235
   right: 0.6rem;
224 236
   bottom: 2.25rem;
225
-  font-size: 0.45rem;
237
+  font-size: 0.4rem;
226 238
   text-align: center;
227
-
239
+  @media only screen and (max-width: 767px) {
240
+    display: none;
241
+  }
228 242
   p {
229 243
     width: 30px;
230 244
     text-align: center;

+ 49 - 16
src/pages/main/PatientBox.vue 查看文件

@@ -11,25 +11,38 @@
11 11
       <div class="kehu">
12 12
         <div style="position: relative;flex:2;" class="tx">
13 13
           <img
14
-            :src="patient.patient.avatar.length > 0 ? patient.patient.avatar : '../../assets/product/test.jpg'"
14
+            :src="
15
+              patient.patient.avatar.length > 0
16
+                ? patient.patient.avatar
17
+                : '../../assets/product/test.jpg'
18
+            "
15 19
             alt
16 20
           />
17
-          <span
18
-            class="redpoint"
19
-            v-if="getStatus(patient)"
20
-          >{{getUnReadNum(patient) > 99?getUnReadNum(patient)+"+":getUnReadNum(patient)}}</span>
21
+          <span class="redpoint" v-if="getStatus(patient)">{{
22
+            getUnReadNum(patient) > 99
23
+              ? getUnReadNum(patient) + "+"
24
+              : getUnReadNum(patient)
25
+          }}</span>
21 26
           <div class="right">
22 27
             <h3 class="name">
23
-              {{patient.patient.name}}
24
-              <span class="el-icon-bell yztx" v-if="getStatus(patient)">医嘱</span>
28
+              {{ patient.patient.name }}
29
+              <span class="el-icon-bell yztx" v-if="getStatus(patient)"
30
+                >医嘱</span
31
+              >
25 32
               <span class="yc" v-show="isAbnormal(patient)">异常</span>
26 33
             </h3>
27
-            <span class="num">{{ genderText(patient) }} | {{ age(patient) }}岁</span>
34
+            <span class="num"
35
+              >{{ genderText(patient) }} | {{ age(patient) }}岁</span
36
+            >
28 37
             <!-- 性别、年龄 -->
29 38
           </div>
30 39
         </div>
31
-        <div class="online" style="flex:1.3;" v-show="computeState(patient) != 4">
32
-          <p :class="stateColor(patient)">{{stateText(patient)}}</p>
40
+        <div
41
+          class="online"
42
+          style="flex:1.3;"
43
+          v-show="computeState(patient) != 4"
44
+        >
45
+          <p :class="stateColor(patient)">{{ stateText(patient) }}</p>
33 46
           <!-- <span class="time">剩余时间 : 90:08</span>     -->
34 47
         </div>
35 48
       </div>
@@ -38,15 +51,22 @@
38 51
         <ul>
39 52
           <li>
40 53
             <span class="iconfont">&#xe6f7;</span>
41
-            班次 : {{timeTypeText(patient)}}
54
+            班次 : {{ timeTypeText(patient) }}
42 55
           </li>
43 56
           <li>
44 57
             <span class="iconfont">&#xe6de;</span>
45
-            床位号 : {{patient.dialysis_order&&patient.dialysis_order.device_number&&patient.dialysis_order.device_number.number.length > 0 ? patient.dialysis_order.device_number.number:patient.device_number.number}}
58
+            床位号 :
59
+            {{
60
+              patient.dialysis_order &&
61
+              patient.dialysis_order.device_number &&
62
+              patient.dialysis_order.device_number.number.length > 0
63
+                ? patient.dialysis_order.device_number.number
64
+                : patient.device_number.number
65
+            }}
46 66
           </li>
47 67
           <li>
48 68
             <span class="iconfont">&#xe6f6;</span>
49
-            透析模式 : {{$store.getters.treatment_mode[patient.mode_id].name}}
69
+            透析模式 : {{ $store.getters.treatment_mode[patient.mode_id].name }}
50 70
           </li>
51 71
         </ul>
52 72
       </div>
@@ -291,6 +311,9 @@ export default {
291 311
         font-size: 0.3rem;
292 312
         @include display-flex;
293 313
         @include align-items-center;
314
+        @media only screen and (max-width: 415px) {
315
+          font-size: 0.36rem;
316
+        }
294 317
         .iconfont {
295 318
           margin: 0 0.1rem 0 0;
296 319
           font-size: 0.4rem;
@@ -330,6 +353,9 @@ export default {
330 353
           color: $title-color;
331 354
           font-weight: 600;
332 355
           margin-bottom: 0.1rem;
356
+          @media only screen and (max-width: 415px) {
357
+            font-size: 0.45rem;
358
+          }
333 359
           .yc {
334 360
             background: #ff7979;
335 361
             color: #fff;
@@ -345,6 +371,9 @@ export default {
345 371
         }
346 372
         .num {
347 373
           font-size: 0.3rem;
374
+          @media only screen and (max-width: 415px) {
375
+            font-size: 0.36rem;
376
+          }
348 377
         }
349 378
       }
350 379
     }
@@ -362,6 +391,10 @@ export default {
362 391
         border-radius: 4px;
363 392
         margin: 0 auto;
364 393
         font-size: 0.32rem;
394
+        @media only screen and (max-width: 767px) {
395
+          font-size: 0.36rem;
396
+          width: 1.7rem;
397
+        }
365 398
       }
366 399
       .blue {
367 400
         background: $main-color;
@@ -396,9 +429,9 @@ export default {
396 429
 }
397 430
 .redpoint {
398 431
   display: inline-block;
399
-  height: 30px;
400
-  width: 30px;
401
-  line-height: 26px;
432
+  height: 26px;
433
+  width: 26px;
434
+  line-height: 23px;
402 435
   text-align: center;
403 436
   font-size: 0.8em;
404 437
   border-radius: 20px;

+ 1 - 1
src/pages/main/WaitingArea.vue 查看文件

@@ -101,7 +101,7 @@ export default {
101 101
       menuList: [
102 102
         { value: "1", label: "全部", count: 0 },
103 103
         { value: "3", label: "待开处方", count: 0 },
104
-        { value: "2", label: "待称", count: 0 }
104
+        { value: "2", label: "待称", count: 0 }
105 105
       ],
106 106
 
107 107
       select_index: 0,

+ 73 - 25
src/pages/main/dialog/DoubleDialog.vue 查看文件

@@ -7,46 +7,88 @@
7 7
         <span @click="commitInfo" class="success">保存</span>
8 8
       </div>
9 9
       <div style="height: 8rem" class="DialogContent choose">
10
-        <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="160px">
10
+        <el-form
11
+          :inline="true"
12
+          class="demo-form-inline"
13
+          :model="doubleReview"
14
+          label-width="150px"
15
+        >
11 16
           <el-form-item label="透析物品核查 : ">
12
-            <el-radio v-model="doubleReview.dialysis_item_check" label="1">正确</el-radio>
13
-            <el-radio v-model="doubleReview.dialysis_item_check" label="2">错误</el-radio>
17
+            <el-radio v-model="doubleReview.dialysis_item_check" label="1"
18
+              >正确</el-radio
19
+            >
20
+            <el-radio v-model="doubleReview.dialysis_item_check" label="2"
21
+              >错误</el-radio
22
+            >
14 23
           </el-form-item>
15
-          <el-form-item label="差错描述 : " label-width="160px">
24
+          <el-form-item label="差错描述 : " label-width="150px">
16 25
             <el-input v-model="doubleReview.dialysis_item_desc"></el-input>
17 26
           </el-form-item>
18 27
         </el-form>
19
-        <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="160px">
28
+        <el-form
29
+          :inline="true"
30
+          class="demo-form-inline"
31
+          :model="doubleReview"
32
+          label-width="150px"
33
+        >
20 34
           <el-form-item label="透析参数核查 : ">
21
-            <el-radio v-model="doubleReview.dialysis_parameter_check" label="1">正确</el-radio>
22
-            <el-radio v-model="doubleReview.dialysis_parameter_check" label="2">错误</el-radio>
35
+            <el-radio v-model="doubleReview.dialysis_parameter_check" label="1"
36
+              >正确</el-radio
37
+            >
38
+            <el-radio v-model="doubleReview.dialysis_parameter_check" label="2"
39
+              >错误</el-radio
40
+            >
23 41
           </el-form-item>
24
-          <el-form-item label="差错描述 : " label-width="160px">
42
+          <el-form-item label="差错描述 : " label-width="150px">
25 43
             <el-input v-model="doubleReview.dialysis_parameter_desc"></el-input>
26 44
           </el-form-item>
27 45
         </el-form>
28
-        <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="160px">
46
+        <el-form
47
+          :inline="true"
48
+          class="demo-form-inline"
49
+          :model="doubleReview"
50
+          label-width="150px"
51
+        >
29 52
           <el-form-item label="血管通路核查 : ">
30 53
             <!--<el-radio-group v-model="form.appetite">-->
31 54
             <!--<el-radio label="正确"></el-radio>-->
32 55
             <!--<el-radio label="整改"></el-radio>-->
33 56
             <!--</el-radio-group>-->
34
-            <el-radio v-model="doubleReview.vascular_access_verification" label="1">正确</el-radio>
35
-            <el-radio v-model="doubleReview.vascular_access_verification" label="2">错误</el-radio>
57
+            <el-radio
58
+              v-model="doubleReview.vascular_access_verification"
59
+              label="1"
60
+              >正确</el-radio
61
+            >
62
+            <el-radio
63
+              v-model="doubleReview.vascular_access_verification"
64
+              label="2"
65
+              >错误</el-radio
66
+            >
36 67
           </el-form-item>
37
-          <el-form-item label="差错描述 : " label-width="160px">
68
+          <el-form-item label="差错描述 : " label-width="150px">
38 69
             <el-input v-model="doubleReview.vascular_access_desc"></el-input>
39 70
           </el-form-item>
40 71
         </el-form>
41
-        <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="160px">
72
+        <el-form
73
+          :inline="true"
74
+          class="demo-form-inline"
75
+          :model="doubleReview"
76
+          label-width="150px"
77
+        >
42 78
           <el-form-item label="管道连接核查 : ">
43 79
             <!--<el-radio-group v-model="form.condition">-->
44
-            <el-radio v-model="doubleReview.pipeline_connection_check" label="1">正确</el-radio>
45
-            <el-radio v-model="doubleReview.pipeline_connection_check" label="2">错误</el-radio>
80
+            <el-radio v-model="doubleReview.pipeline_connection_check" label="1"
81
+              >正确</el-radio
82
+            >
83
+            <el-radio v-model="doubleReview.pipeline_connection_check" label="2"
84
+              >错误</el-radio
85
+            >
46 86
             <!--</el-radio-group>-->
47 87
           </el-form-item>
48
-          <el-form-item label="差错描述 : " label-width="160px">
49
-            <el-input v-model="doubleReview.pipeline_connection_desc"></el-input>
88
+          <el-form-item label="差错描述 : " label-width="150px">
89
+            <el-input
90
+              v-model="doubleReview.pipeline_connection_desc"
91
+            ></el-input>
50 92
           </el-form-item>
51 93
         </el-form>
52 94
 
@@ -57,20 +99,27 @@
57 99
               class="text"
58 100
               style="width: 160px"
59 101
               @click="selectCheckTimeAction"
60
-            >{{ check_time_str }}</span>
102
+              >{{ check_time_str }}</span
103
+            >
61 104
             <span class="iconfont">&#xe6f9;</span>
62 105
           </div>
63 106
         </div>
64 107
 
65
-        <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="160px">
66
-          <p
67
-            style="margin: 10px 0 10px 13px;"
68
-            v-if="doubleReview.creater != 0"
69
-          >{{getFirstCheckDesc()}}</p>
108
+        <el-form
109
+          :inline="true"
110
+          class="demo-form-inline"
111
+          :model="doubleReview"
112
+          label-width="160px"
113
+        >
114
+          <p style="margin: 10px 0 10px 13px;" v-if="doubleReview.creater != 0">
115
+            {{ getFirstCheckDesc() }}
116
+          </p>
70 117
           <p
71 118
             style="margin: 10px 0 10px 13px;"
72 119
             v-if="doubleReview.modifier != 0"
73
-          >{{getScondCheckDesc()}}</p>
120
+          >
121
+            {{ getScondCheckDesc() }}
122
+          </p>
74 123
         </el-form>
75 124
 
76 125
         <!-- <div class="button">
@@ -505,4 +554,3 @@ export default {
505 554
   }
506 555
 }
507 556
 </style>
508
-

+ 4 - 4
src/pages/main/dialog/MonitDialog.vue 查看文件

@@ -15,7 +15,7 @@
15 15
           </div>
16 16
         </div>
17 17
         <div class="DialogContent choose" id="dialogTop">
18
-          <!-- <div style="width:100%;overflow:hildden;">
18
+          <div style="width:100%;overflow:hildden;">
19 19
             <table class="table" style="">
20 20
               <tr @click="selectRow(-1, null)">
21 21
                 <th v-if="isShow('监测时间')" width="124px">时间</th>
@@ -67,8 +67,8 @@
67 67
                 <td v-if="isShow('结果')">{{item.result}}</td>
68 68
               </tr>
69 69
             </table>
70
-          </div>-->
71
-          <el-table :data="monitorRecords" border style="width: 100%">
70
+          </div>
71
+          <!-- <el-table :data="monitorRecords" border style="width: 100%">
72 72
               <span v-if="isShow('监测时间')" >
73 73
                 <el-table-column fixed prop="date" label="时间" width="100" align="center">
74 74
                   <template slot-scope="scope">
@@ -210,7 +210,7 @@
210 210
                      </el-table-column>
211 211
                  </span>
212 212
 
213
-          </el-table>
213
+          </el-table> -->
214 214
         </div>
215 215
       </div>
216 216
       <div class="Dialog" v-show="formPanel">

+ 85 - 74
src/pages/main/dialog/OrdersDialog.vue 查看文件

@@ -6,7 +6,7 @@
6 6
         <h1 class="name">临时医嘱</h1>
7 7
         <span class="success">&nbsp;</span>
8 8
       </div>
9
-      <div class="yzNav" style="width:100%;">
9
+       <div class="yzNav" style="width:100%;">
10 10
         <span
11 11
           @click="openNewAdvice"
12 12
           :class="{ forbid: this.$store.getters.user.user.user_type == 3 }"
@@ -45,77 +45,80 @@
45 45
         <span v-if="currentSubAdvices.length > 0" @click="deleteSubAdviceAction">删除子医嘱</span>
46 46
       </div>
47 47
       <div class="DialogContent choose" id="dialogTop" style="height:6.5rem;">
48
+       
48 49
         <div class="content clearfix">
49
-          <table class="table">
50
-            <tr @click="cancelAdviceSelect">
51
-              <th width="11%">开嘱医生</th>
52
-              <th width="14%">开始时间</th>
53
-              <th width="40%">医嘱内容</th>
54
-              <th width="14%">执行时间</th>
55
-              <th width="11%">执行护士</th>
56
-              <th v-if="template_id != 6" width="10%">核对人员</th>
57
-            </tr>
58
-            <template v-for="(group, group_index) in advice_groups">
59
-              <tr
60
-                v-for="(advice, advice_index) in group.advices"
61
-                :key="advice.id"
62
-                :class="{ 'row-class-active': current_group_index == group_index && current_advice_index < 0 }"
63
-              >
64
-                <td
65
-                  v-if="advice_index == 0"
66
-                  :rowspan="group.advices.length"
67
-                  @click="selectGroupAdviceAction(group_index, -1, null,group)"
68
-                >
69
-                  <span v-if="advice.parent_id==0">{{getXuserName(advice.advice_doctor)}}</span>
70
-                  <span v-else></span>
71
-                </td>
72
-
73
-                <td
74
-                  v-if="advice_index == 0"
75
-                  :rowspan="group.advices.length"
76
-                  @click="selectGroupAdviceAction(group_index, -1, null,group)"
77
-                >
78
-                  <span>{{uParseTime(advice.start_time, '{m}-{d} {h}:{i}')}}</span>
79
-                </td>
80
-
81
-                <td
82
-                  :class="{ 'advice_content': advice.parent_id == 0, 'subadvice_content': advice.parent_id > 0, 'td-active':current_group_index == group_index  && advice.is_selected == 1 }"
83
-                  @click="selectAdviceAction(group_index, advice_index, advice)"
84
-                >
85
-                  <div class="txt">
86
-                    <span>{{advice.advice_name }}</span>
87
-                    <span v-if="advice.advice_desc">({{ advice.advice_desc }}{{advice.drug_spec_unit}})</span>
88
-                    <span v-if="advice.prescribing_number">&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
89
-                    <span v-if="advice.single_dose && template_id == 6" >{{advice.single_dose}}{{advice.single_dose_unit}}</span>
90
-                    <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
91
-
92
-                    <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
93
-                    <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
94
-                    <span
95
-                      v-if="advice.parent_id == 0 && advice.remark.length > 0"
96
-                    >({{advice.remark}})</span>
97
-                  </div>
98
-                </td>
99
-
100
-                <td
101
-                  :class="{'td-active':current_group_index == group_index  && advice.is_selected == 1}"
102
-                  @click="selectAdviceAction(group_index,advice_index, advice)"
103
-                >{{uParseTime(advice.execution_time, '{m}-{d} {h}:{i}')}}</td>
104
-
105
-                <td
106
-                  :class="{'td-active':current_group_index == group_index  && advice.is_selected == 1}"
107
-                  @click="selectAdviceAction(group_index,advice_index, advice)"
108
-
109
-                > {{getXuserName(advice.execution_staff)}}
110
-                </td>
111
-                <td v-if="template_id != 6"
112
-                  :class="{'td-active':current_group_index == group_index  && advice.is_selected == 1}"
113
-                  @click="selectAdviceAction(group_index,advice_index, advice)"
114
-                >{{getXuserName(advice.checker)}}</td>
50
+          <div class="orderTable">
51
+
52
+            <table class="table">
53
+              <tr @click="cancelAdviceSelect">
54
+                <th width="12%">开嘱医生</th>
55
+                <th width="20%">开始时间</th>
56
+                <th width="36%">医嘱内容</th>
57
+                <th width="20%">执行时间</th>
58
+                <th width="12%">执行护士</th>
59
+                <th v-if="template_id != 6" width="10%">核对人员</th>
115 60
               </tr>
116
-            </template>
117
-          </table>
118
-
61
+              <template v-for="(group, group_index) in advice_groups">
62
+                <tr
63
+                  v-for="(advice, advice_index) in group.advices"
64
+                  :key="advice.id"
65
+                  :class="{ 'row-class-active': current_group_index == group_index && current_advice_index < 0 }"
66
+                >
67
+                  <td
68
+                    v-if="advice_index == 0"
69
+                    :rowspan="group.advices.length"
70
+                    @click="selectGroupAdviceAction(group_index, -1, null,group)"
71
+                  >
72
+                    <span v-if="advice.parent_id==0">{{getXuserName(advice.advice_doctor)}}</span>
73
+                    <span v-else></span>
74
+                  </td>
75
+
76
+                  <td
77
+                    v-if="advice_index == 0"
78
+                    :rowspan="group.advices.length"
79
+                    @click="selectGroupAdviceAction(group_index, -1, null,group)"
80
+                  >
81
+                    <span>{{uParseTime(advice.start_time, '{m}-{d} {h}:{i}')}}</span>
82
+                  </td>
83
+
84
+                  <td
85
+                    :class="{ 'advice_content': advice.parent_id == 0, 'subadvice_content': advice.parent_id > 0, 'td-active':current_group_index == group_index  && advice.is_selected == 1 }"
86
+                    @click="selectAdviceAction(group_index, advice_index, advice)"
87
+                  >
88
+                    <div class="txt">
89
+                      <span>{{advice.advice_name }}</span>
90
+                      <span v-if="advice.advice_desc">({{ advice.advice_desc }}{{advice.drug_spec_unit}})</span>
91
+                      <span v-if="advice.prescribing_number">&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
92
+                      <span v-if="advice.single_dose && template_id == 6" >{{advice.single_dose}}{{advice.single_dose_unit}}</span>
93
+                      <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
94
+
95
+                      <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
96
+                      <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
97
+                      <span
98
+                        v-if="advice.parent_id == 0 && advice.remark.length > 0"
99
+                      >({{advice.remark}})</span>
100
+                    </div>
101
+                  </td>
102
+
103
+                  <td
104
+                    :class="{'td-active':current_group_index == group_index  && advice.is_selected == 1}"
105
+                    @click="selectAdviceAction(group_index,advice_index, advice)"
106
+                  >{{uParseTime(advice.execution_time, '{m}-{d} {h}:{i}')}}</td>
107
+
108
+                  <td
109
+                    :class="{'td-active':current_group_index == group_index  && advice.is_selected == 1}"
110
+                    @click="selectAdviceAction(group_index,advice_index, advice)"
111
+
112
+                  > {{getXuserName(advice.execution_staff)}}
113
+                  </td>
114
+                  <td v-if="template_id != 6"
115
+                    :class="{'td-active':current_group_index == group_index  && advice.is_selected == 1}"
116
+                    @click="selectAdviceAction(group_index,advice_index, advice)"
117
+                  >{{getXuserName(advice.checker)}}</td>
118
+                </tr>
119
+              </template>
120
+            </table>
121
+          </div>
119 122
           <!-- <el-table
120 123
               :data="tableData"
121 124
               border
@@ -1364,6 +1367,11 @@
1364 1367
 
1365 1368
 
1366 1369
 <style style="stylesheet/scss" lang="scss" scoped>
1370
+#dialogTop{
1371
+  @media only screen and (max-width: 415px){
1372
+    height: 13.8rem !important;
1373
+  }
1374
+}
1367 1375
 .DialogContent {
1368 1376
   .content {
1369 1377
     .yzNav {
@@ -1372,17 +1380,20 @@
1372 1380
     }
1373 1381
   }
1374 1382
 }
1375
-.table {
1383
+.orderTable{
1376 1384
   width: 100%;
1385
+}
1386
+.table {
1387
+  width: 768px;
1377 1388
   tr {
1378 1389
     th {
1379 1390
       background: $main-color;
1380 1391
       color: #fff;
1381
-      height: 0.88rem;
1382
-      line-height: 0.88rem;
1392
+      height: 1.2rem;
1393
+      line-height: 1.2rem;
1383 1394
     }
1384 1395
     td {
1385
-      line-height: 0.4rem;
1396
+      line-height: 0.6rem;
1386 1397
       .txt {
1387 1398
         // float: left;
1388 1399
         padding: 0 10px 0 10px;

+ 18 - 20
src/pages/main/dialog/TreatmentDialog.vue 查看文件

@@ -29,9 +29,6 @@
29 29
             ></el-input>
30 30
           </el-form-item>
31 31
           <el-form-item label="透析小结 : ">
32
-
33
-              <el-input readonly v-model="dialysisSummary.summaryContentSelect" placeholder="请选择" @focus="showSubMenu('summary')" ></el-input>
34
-
35 32
             <el-input
36 33
               readonly
37 34
               v-model="dialysisSummary.summaryContentSelect"
@@ -57,8 +54,12 @@
57 54
       </div>
58 55
     </div>
59 56
 
60
-    <check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm" :propsForm="propForm"></check-box-sub-menu>
61
-
57
+    <check-box-sub-menu
58
+      :visibility="visibility"
59
+      v-on:menu-cancle="menuCancle"
60
+      v-on:menu-comfirm="menuComfirm"
61
+      :propsForm="propForm"
62
+    ></check-box-sub-menu>
62 63
   </div>
63 64
 </template>
64 65
 
@@ -72,7 +73,7 @@ export default {
72 73
   name: "TreatmentDialog",
73 74
   data() {
74 75
     return {
75
-      isShowDialog:true,
76
+      isShowDialog: true,
76 77
       visibility: false,
77 78
       propForm: {
78 79
         title: "",
@@ -155,18 +156,17 @@ export default {
155 156
       y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
156 157
     // this.patient.id = this.patient_prop.id
157 158
 
158
-    if (this.record != null && this.record.id != '') {
159
+    if (this.record != null && this.record.id != "") {
159 160
       for (const key in this.record) {
160 161
         this.dialysisSummary[key] = this.record[key];
161 162
       }
162
-      if(this.record.mission != 'undefined'){
163
-        this.dialysisSummary.propagandaAndEducationContent = this.record.mission
163
+      if (this.record.mission != "undefined") {
164
+        this.dialysisSummary.propagandaAndEducationContent = this.record.mission;
164 165
       }
165
-      if(this.record.dialysis_summary != 'undefined'){
166
-        this.dialysisSummary.summaryContent = this.record.dialysis_summary
166
+      if (this.record.dialysis_summary != "undefined") {
167
+        this.dialysisSummary.summaryContent = this.record.dialysis_summary;
167 168
       }
168 169
     }
169
-
170 170
   },
171 171
   methods: {
172 172
     lastInputFocus: function(event) {
@@ -206,14 +206,13 @@ export default {
206 206
           break;
207 207
       }
208 208
     },
209
-    menuCancle: function () {
210
-        this.visibility = false
211
-        this.isShowDialog = true
209
+    menuCancle: function() {
210
+      this.visibility = false;
211
+      this.isShowDialog = true;
212 212
     },
213
-    menuComfirm: function (val) {
214
-
215
-      this.visibility = false
216
-      this.isShowDialog = true
213
+    menuComfirm: function(val) {
214
+      this.visibility = false;
215
+      this.isShowDialog = true;
217 216
 
218 217
       switch (val.type) {
219 218
         case 1:
@@ -354,4 +353,3 @@ export default {
354 353
   font-size: 0.45rem;
355 354
 }
356 355
 </style>
357
-

+ 24 - 8
src/pages/main/dialog/modify_order/modify_order_form.vue 查看文件

@@ -101,7 +101,7 @@
101 101
               <el-input
102 102
                 placeholder="选择执行频率"
103 103
                 readonly
104
-                style="width:96%"
104
+                style="width:100%"
105 105
                 :disabled="mode == 3"
106 106
                 v-model="order.execution_frequency"
107 107
                 @focus="selectExecFrequencyAction"
@@ -112,7 +112,7 @@
112 112
               <label>医嘱嘱托</label>
113 113
               <input
114 114
                 class="inputBox"
115
-                style="width:96%"
115
+                style="width:100%"
116 116
                 v-model="order.remark"
117 117
               />
118 118
             </div>
@@ -399,10 +399,10 @@ export default {
399 399
     margin: 0.35rem 0.3rem 0 0.4rem;
400 400
     label {
401 401
       display: block;
402
-      height: 0.7rem;
403
-      line-height: 0.7rem;
402
+      height: 0.9rem;
403
+      line-height: 0.9rem;
404 404
       color: $title-color;
405
-      font-size: 0.36rem;
405
+      font-size: 0.45rem;
406 406
     }
407 407
     .el-input__inner {
408 408
       font-size: 0.32rem;
@@ -420,9 +420,9 @@ export default {
420 420
       border-radius: 2px;
421 421
       padding: 0.14rem 0;
422 422
       padding-left: 5px;
423
-      @media only screen and (max-width: 767px) {
424
-        padding: 0.38rem 0;
425
-      }
423
+      // @media only screen and (max-width: 767px) {
424
+      //   padding: 0.38rem 0;
425
+      // }
426 426
     }
427 427
 
428 428
     .textarea {
@@ -441,3 +441,19 @@ export default {
441 441
   }
442 442
 }
443 443
 </style>
444
+<style lang="scss">
445
+.content {
446
+  .cell {
447
+    .inputBox {
448
+      @media only screen and (max-width: 767px) {
449
+        padding: 0.32rem 0 !important;
450
+        padding-left: 5px !important;
451
+        font-size: 0.45rem !important;
452
+      }
453
+    }
454
+    .el-input__inner {
455
+      font-size: 0.45rem;
456
+    }
457
+  }
458
+}
459
+</style>

+ 114 - 68
src/pages/main/dialog/new_order/AddNewOrders.vue 查看文件

@@ -14,26 +14,69 @@
14 14
         <span @click="modifyOrderAction">修改医嘱内容</span>
15 15
         <span @click="deleteOrderAction">删除医嘱内容</span>
16 16
       </div>
17
-      <div class="DialogContent choose" style="height: 6.2rem;">
18
-        <div class="content clearfix">
19
-          <div style="overflow: hidden;">
20
-            <div class="cell" style="margin-top: 0;">
21
-              <label>医嘱类型</label>
22
-              <el-input ref="advice_type" value="临时" disabled></el-input>
23
-            </div>
24
-            <div class="cell" style="margin-top: 0;">
25
-              <label>开始时间</label>
26
-              <el-input :value="start_time_str" readonly @focus="selectStartTimeAction"></el-input>
27
-            </div>
17
+      <div class="content clearfix backgroundColor">
18
+        <div style="overflow: hidden;">
19
+          <div class="cell" style="margin-top: 0;">
20
+            <label>医嘱类型</label>
21
+            <el-input ref="advice_type" value="临时" disabled></el-input>
28 22
           </div>
29
-          <div style="overflow: hidden;margin-top: 15px">
30
-            <div class="cell" style="margin-top: 0;">
31
-              <label>开嘱医生: {{$store.getters.user.user.user_name}}</label>
32
-            </div>
33
-            <div class="cell" style="margin-top: 0;">
34
-              <label>开嘱时间 {{record_date_str}}</label>
35
-            </div>
23
+          <div class="cell" style="margin-top: 0;">
24
+            <label>开始时间</label>
25
+            <el-input
26
+              :value="start_time_str"
27
+              readonly
28
+              @focus="selectStartTimeAction"
29
+            ></el-input>
36 30
           </div>
31
+        </div>
32
+        <div style="overflow: hidden;margin-top: 15px">
33
+          <div class="cell" style="margin-top: 0;">
34
+            <label>开嘱医生: {{ $store.getters.user.user.user_name }}</label>
35
+          </div>
36
+          <div class="cell" style="margin-top: 0;">
37
+            <label>开嘱时间 {{ record_date_str }}</label>
38
+          </div>
39
+        </div>
40
+
41
+        <!-- <el-table :data="advices" border style="width: 100%" :row-class-name="tableRowClassName" @row-click="clickAdviceAction">
42
+            <el-table-column fixed prop="date" label="医嘱内容" width="150">
43
+              <template slot-scope="scope">
44
+                   {{ scope.row.title }}
45
+              </template>
46
+            </el-table-column>
47
+            <el-table-column prop="name" label="药品规格" width="120">
48
+              <template slot-scope="scope">
49
+              {{ scope.row.prescribing_number }}{{ scope.row.prescribing_number_unit }}
50
+              </template>
51
+            </el-table-column>
52
+            <el-table-column prop="province" label="开药数量" width="120">
53
+              <template slot-scope="scope">
54
+              {{ scope.row.prescribing_number }}{{ scope.row.prescribing_number_unit }}
55
+              </template>
56
+            </el-table-column>
57
+            <el-table-column prop="city" label="单次用量" width="120">
58
+              <template slot-scope="scope">
59
+
60
+              </template>
61
+            </el-table-column>
62
+            <el-table-column prop="address" label="给药途径" width="300">
63
+               <template slot-scope="scope">
64
+                   {{ scope.row.delivery_way }}
65
+               </template>
66
+            </el-table-column>
67
+            <el-table-column prop="zip" label="执行频率" width="120">
68
+              <template slot-scope="scope">
69
+                  {{ scope.row.execution_frequency }}
70
+              </template>
71
+            </el-table-column>
72
+          </el-table>-->
73
+      </div>
74
+      <div
75
+        id="newDialogContent"
76
+        class="DialogContent choose"
77
+        style="height: 6.2rem;"
78
+      >
79
+        <div class="newAddTable">
37 80
           <table class="table">
38 81
             <tr>
39 82
               <th width="26%">医嘱内容</th>
@@ -47,19 +90,30 @@
47 90
               <tr
48 91
                 :key="advice_index"
49 92
                 @click="clickAdviceAction(advice_index)"
50
-                :class="{ 'row-class-active': (advice_index == selecting_advice_index && selecting_subdrug_index < 0) }"
93
+                :class="{
94
+                  'row-class-active':
95
+                    advice_index == selecting_advice_index &&
96
+                    selecting_subdrug_index < 0
97
+                }"
51 98
               >
52 99
                 <td
53 100
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
54
-                >{{ advice.title }}</td>
101
+                >
102
+                  {{ advice.title }}
103
+                </td>
55 104
 
56
-                <td v-if="advice.advice_desc">{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
105
+                <td v-if="advice.advice_desc">
106
+                  {{ advice.advice_desc }}{{ advice.drug_spec_unit }}
107
+                </td>
57 108
 
58
-                <td
59
-                  v-if="advice.prescribing_number"
60
-                >{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
109
+                <td v-if="advice.prescribing_number">
110
+                  {{ advice.prescribing_number
111
+                  }}{{ advice.prescribing_number_unit }}
112
+                </td>
61 113
                 <td v-else></td>
62
-                <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
114
+                <td v-if="advice.single_dose">
115
+                  {{ advice.single_dose }} {{ advice.single_dose_unit }}
116
+                </td>
63 117
                 <td v-else></td>
64 118
 
65 119
                 <td>{{ advice.delivery_way }}</td>
@@ -70,21 +124,29 @@
70 124
                 v-for="(subdrug, subdrug_index) in advice.subdrugs"
71 125
                 :key="advice_index + '_' + subdrug_index"
72 126
                 @click="clickSubdrugAction(advice_index, subdrug_index)"
73
-                :class="{ 'row-class-active': (advice_index == selecting_advice_index && subdrug_index == selecting_subdrug_index) }"
127
+                :class="{
128
+                  'row-class-active':
129
+                    advice_index == selecting_advice_index &&
130
+                    subdrug_index == selecting_subdrug_index
131
+                }"
74 132
               >
75 133
                 <td
76 134
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
77
-                >{{ subdrug.title }}</td>
78
-                <td>{{ subdrug.advice_desc }} {{subdrug.drug_spec_unit}}</td>
135
+                >
136
+                  {{ subdrug.title }}
137
+                </td>
138
+                <td>{{ subdrug.advice_desc }} {{ subdrug.drug_spec_unit }}</td>
79 139
                 <td>
80
-                  <span
81
-                    v-if="subdrug.prescribing_number"
82
-                  >{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span>
140
+                  <span v-if="subdrug.prescribing_number"
141
+                    >{{ subdrug.prescribing_number
142
+                    }}{{ subdrug.prescribing_number_unit }}</span
143
+                  >
83 144
                 </td>
84 145
                 <td>
85
-                  <span
86
-                    v-if="subdrug.single_dose"
87
-                  >{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span>
146
+                  <span v-if="subdrug.single_dose"
147
+                    >{{ subdrug.single_dose }}
148
+                    {{ subdrug.single_dose_unit }}</span
149
+                  >
88 150
                 </td>
89 151
 
90 152
                 <td></td>
@@ -92,38 +154,6 @@
92 154
               </tr>
93 155
             </template>
94 156
           </table>
95
-          <!-- <el-table :data="advices" border style="width: 100%" :row-class-name="tableRowClassName" @row-click="clickAdviceAction">
96
-            <el-table-column fixed prop="date" label="医嘱内容" width="150">
97
-              <template slot-scope="scope">
98
-                   {{ scope.row.title }}
99
-              </template>
100
-            </el-table-column>
101
-            <el-table-column prop="name" label="药品规格" width="120">
102
-              <template slot-scope="scope">
103
-              {{ scope.row.prescribing_number }}{{ scope.row.prescribing_number_unit }}
104
-              </template>
105
-            </el-table-column>
106
-            <el-table-column prop="province" label="开药数量" width="120">
107
-              <template slot-scope="scope">
108
-              {{ scope.row.prescribing_number }}{{ scope.row.prescribing_number_unit }}
109
-              </template>
110
-            </el-table-column>
111
-            <el-table-column prop="city" label="单次用量" width="120">
112
-              <template slot-scope="scope">
113
-
114
-              </template>
115
-            </el-table-column>
116
-            <el-table-column prop="address" label="给药途径" width="300">
117
-               <template slot-scope="scope">
118
-                   {{ scope.row.delivery_way }}
119
-               </template>
120
-            </el-table-column>
121
-            <el-table-column prop="zip" label="执行频率" width="120">
122
-              <template slot-scope="scope">
123
-                  {{ scope.row.execution_frequency }}
124
-              </template>
125
-            </el-table-column>
126
-          </el-table>-->
127 157
         </div>
128 158
       </div>
129 159
     </div>
@@ -548,8 +578,24 @@ export default {
548 578
 </script>
549 579
 
550 580
 <style style="stylesheet/scss" lang="scss" scoped>
551
-.table {
581
+#newDialogContent {
582
+  @media only screen and (max-width: 415px) {
583
+    height: 10.8rem !important;
584
+  }
585
+  @media only screen and (min-width: 768px) {
586
+    height: 7.8rem !important;
587
+  }
588
+}
589
+.backgroundColor {
590
+  background: #fff;
591
+}
592
+.newAddTable {
552 593
   width: 100%;
594
+  // overflow: auto;
595
+}
596
+.table {
597
+  width: 768px;
598
+  overflow-x: scroll;
553 599
   // margin-top: 0rem;
554 600
   tr {
555 601
     th {
@@ -573,7 +619,7 @@ export default {
573 619
       height: 0.6rem;
574 620
       line-height: 0.6rem;
575 621
       color: $pgh-color;
576
-      font-size: 0.32rem;
622
+      font-size: 0.45rem;
577 623
     }
578 624
     select {
579 625
       width: 100%;

+ 57 - 52
src/pages/main/dialog/new_order/order_form.vue 查看文件

@@ -1,6 +1,6 @@
1 1
 <template>
2 2
   <div v-if="visibility">
3
-    <div v-if="sub_dialog_key == 0" class="Dialog" >
3
+    <div v-if="sub_dialog_key == 0" class="Dialog">
4 4
       <div class="DialogTit">
5 5
         <div class="back" @click="backAction">
6 6
           <span class="iconfont">&#xe720;</span>返回
@@ -11,18 +11,20 @@
11 11
       <div class="DialogContent choose advice-top">
12 12
         <div class="content clearfix">
13 13
           <div>
14
-
15
-
16 14
             <div class="cell">
17 15
               <label>医嘱名称</label>
18
-              <input class="inputBox"  v-model="order.title">
16
+              <input class="inputBox" style="width:96%" v-model="order.title" />
19 17
               <!-- <el-input v-model="order.title"></el-input> -->
20 18
             </div>
21 19
             <div class="cell">
22 20
               <label>药品规格</label>
23 21
               <!--<input class="inputBox" style="width:62.5%" v-model="order.advice_desc">-->
24 22
 
25
-              <input class="inputBox" style="width:60%" v-model="order.advice_desc">
23
+              <input
24
+                class="inputBox"
25
+                style="width:60%"
26
+                v-model="order.advice_desc"
27
+              />
26 28
               <input
27 29
                 type="text"
28 30
                 placeholder="单位"
@@ -31,11 +33,9 @@
31 33
                 style="width:35%"
32 34
                 v-model="order.drug_spec_unit"
33 35
                 @focus="selectDrugSpecUnitAction"
34
-              >
36
+              />
35 37
             </div>
36 38
 
37
-
38
-
39 39
             <div class="cell">
40 40
               <label>开药数量</label>
41 41
               <input
@@ -43,7 +43,7 @@
43 43
                 class="inputBox"
44 44
                 style="width:60%"
45 45
                 v-model="order.prescribing_number"
46
-              >
46
+              />
47 47
               <input
48 48
                 type="text"
49 49
                 placeholder="单位"
@@ -52,14 +52,17 @@
52 52
                 style="width:35%"
53 53
                 v-model="order.prescribing_number_unit"
54 54
                 @focus="selectPrescribingNumUnitAction"
55
-              >
55
+              />
56 56
             </div>
57 57
 
58
-
59
-
60 58
             <div class="cell">
61 59
               <label>单次用量</label>
62
-              <input type="number" class="inputBox" style="width:62.5%" v-model="order.single_dose">
60
+              <input
61
+                type="number"
62
+                class="inputBox"
63
+                style="width:62.5%"
64
+                v-model="order.single_dose"
65
+              />
63 66
               <input
64 67
                 type="text"
65 68
                 placeholder="单位"
@@ -68,10 +71,9 @@
68 71
                 style="width:35%"
69 72
                 v-model="order.single_dose_unit"
70 73
                 @focus="selectSingleDoseAction"
71
-              >
74
+              />
72 75
             </div>
73 76
 
74
-
75 77
             <div class="cell" v-show="order.parent_id == 0">
76 78
               <label>给药途径</label>
77 79
               <el-input
@@ -94,17 +96,14 @@
94 96
               ></el-input>
95 97
             </div>
96 98
 
97
-
98 99
             <div class="cell" v-show="order.parent_id == 0">
99 100
               <label>医嘱嘱托</label>
100 101
               <input
101 102
                 class="inputBox"
102 103
                 style="width:100%"
103 104
                 v-model="order.remark"
104
-              >
105
+              />
105 106
             </div>
106
-
107
-
108 107
           </div>
109 108
         </div>
110 109
       </div>
@@ -220,7 +219,7 @@ export default {
220 219
         single_dose_unit: "",
221 220
         prescribing_number: "",
222 221
         prescribing_number_unit: "",
223
-        remark:"",
222
+        remark: "",
224 223
 
225 224
         // 在新增子药才用到的字段
226 225
         parent_id: 0, // 父医嘱ID
@@ -256,7 +255,6 @@ export default {
256 255
       this.order.prescribing_number = "";
257 256
       this.order.prescribing_number_unit = "";
258 257
       this.order.remark = "";
259
-
260 258
     },
261 259
     showWithEdit: function(order) {
262 260
       this.mode = 2;
@@ -273,7 +271,6 @@ export default {
273 271
       this.order.prescribing_number = order.prescribing_number;
274 272
       this.order.prescribing_number_unit = order.prescribing_number_unit;
275 273
       this.order.remark = order.remark;
276
-
277 274
     },
278 275
     showWithNewSubDrug: function(
279 276
       parent_id,
@@ -336,12 +333,10 @@ export default {
336 333
           remark: this.order.remark,
337 334
           drug_spec: this.order.drug_spec,
338 335
 
339
-          drug_spec_unit: this.order.drug_spec_unit,
340
-
336
+          drug_spec_unit: this.order.drug_spec_unit
341 337
         });
342 338
       } else if (this.mode == 2) {
343 339
         this.$emit("did-modify", {
344
-
345 340
           title: this.order.title,
346 341
           advice_desc: this.order.advice_desc,
347 342
           drug_spec: this.order.drug_spec,
@@ -353,7 +348,6 @@ export default {
353 348
           prescribing_number: this.order.prescribing_number,
354 349
           prescribing_number_unit: this.order.prescribing_number_unit,
355 350
           remark: this.order.remark
356
-
357 351
         });
358 352
       } else if (this.mode == 3) {
359 353
         this.$emit("did-create-subdrug", {
@@ -379,22 +373,19 @@ export default {
379 373
     },
380 374
     didSelectSingleDoseUnit: function(index) {
381 375
       this.didCloseSingleOptionDialog();
382
-      if(index == -1){
383
-        this.order.single_dose_unit = '';
384
-
385
-      }else{
376
+      if (index == -1) {
377
+        this.order.single_dose_unit = "";
378
+      } else {
386 379
         this.order.single_dose_unit = this.single_dose_unit_options[index].name;
387 380
       }
388
-
389 381
     },
390 382
     selectDrugSpecUnitAction: function() {
391 383
       this.sub_dialog_key = 5;
392 384
     },
393 385
     didSelectDrugSpecUnit: function(index) {
394
-      if(index == -1){
395
-        this.order.drug_spec_unit = '';
396
-
397
-      }else{
386
+      if (index == -1) {
387
+        this.order.drug_spec_unit = "";
388
+      } else {
398 389
         this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
399 390
       }
400 391
 
@@ -406,22 +397,22 @@ export default {
406 397
     didSelectPrescribingNumUnit: function(index) {
407 398
       this.didCloseSingleOptionDialog();
408 399
 
409
-      if(index == -1){
410
-        this.order.prescribing_number_unit = '';
411
-
412
-      }else{
413
-        this.order.prescribing_number_unit = this.prescribing_number_unit_options[index].name;
400
+      if (index == -1) {
401
+        this.order.prescribing_number_unit = "";
402
+      } else {
403
+        this.order.prescribing_number_unit = this.prescribing_number_unit_options[
404
+          index
405
+        ].name;
414 406
       }
415
-
416 407
     },
417 408
     selectDeliveryWayAction: function() {
418 409
       this.sub_dialog_key = 3;
419 410
     },
420 411
     didSelectDeliveryWay: function(index) {
421 412
       this.didCloseSingleOptionDialog();
422
-      if(index == -1){
423
-        this.order.delivery_way = ""
424
-        return
413
+      if (index == -1) {
414
+        this.order.delivery_way = "";
415
+        return;
425 416
       }
426 417
       this.order.delivery_way = this.delivery_way_options[index].name;
427 418
     },
@@ -430,9 +421,9 @@ export default {
430 421
     },
431 422
     didSelectExecFrequency: function(index) {
432 423
       this.didCloseSingleOptionDialog();
433
-      if(index == -1){
434
-        this.order.execution_frequency = ""
435
-        return
424
+      if (index == -1) {
425
+        this.order.execution_frequency = "";
426
+        return;
436 427
       }
437 428
       this.order.execution_frequency = this.execution_frequency_options[
438 429
         index
@@ -454,10 +445,10 @@ export default {
454 445
     margin: 0.35rem 0.3rem 0 0.4rem;
455 446
     label {
456 447
       display: block;
457
-      height: 0.7rem;
458
-      line-height: 0.7rem;
448
+      height: 0.9rem;
449
+      line-height: 0.9rem;
459 450
       color: $title-color;
460
-      font-size: 0.36rem;
451
+      font-size: 0.45rem;
461 452
     }
462 453
     .el-input__inner {
463 454
       font-size: 0.32rem;
@@ -493,5 +484,19 @@ export default {
493 484
   }
494 485
 }
495 486
 </style>
496
-
497
-
487
+<style lang="scss">
488
+.content {
489
+  .cell {
490
+    .inputBox {
491
+      @media only screen and (max-width: 767px) {
492
+        padding: 0.38rem 0 !important;
493
+        padding-left: 5px !important;
494
+        font-size: 0.45rem !important;
495
+      }
496
+    }
497
+    .el-input__inner {
498
+      font-size: 0.45rem;
499
+    }
500
+  }
501
+}
502
+</style>

+ 18 - 10
src/pages/main/dialog/new_order/select_advice_template_dialog.vue 查看文件

@@ -20,18 +20,24 @@
20 20
                 "
21 21
                 class="select_all_btn"
22 22
                 @click="selectTemplateAllAdviceAction(template)"
23
-              >全选</div>
23
+              >
24
+                全选
25
+              </div>
24 26
               <div
25 27
                 v-show="
26 28
                   isFold(template.id) && isTemplateSelectingAllAdvices(template)
27 29
                 "
28 30
                 class="select_all_btn"
29 31
                 @click="cancelSelectTemplateAllAdviceAction(template)"
30
-              >取消全选</div>
32
+              >
33
+                取消全选
34
+              </div>
31 35
 
32 36
               <span v-if="isFold(template.id)" class="iconfont">&#xe749;</span>
33 37
               <span v-if="!isFold(template.id)" class="iconfont">&#xe74a;</span>
34
-              <div @click="foldTemplateAction(template.id)" class="name">{{ template.name }}</div>
38
+              <div @click="foldTemplateAction(template.id)" class="name">
39
+                {{ template.name }}
40
+              </div>
35 41
             </div>
36 42
             <div
37 43
               v-show="isFold(template.id)"
@@ -46,9 +52,10 @@
46 52
                   {{ advice.prescribing_number }}
47 53
                   {{ advice.prescribing_number_unit }}
48 54
                 </span>
49
-                <span
50
-                  v-if="advice.single_dose"
51
-                >单次用量{{ advice.single_dose }}{{ advice.single_dose_unit }}</span>
55
+                <span v-if="advice.single_dose"
56
+                  >单次用量{{ advice.single_dose
57
+                  }}{{ advice.single_dose_unit }}</span
58
+                >
52 59
               </span>
53 60
               <van-checkbox
54 61
                 v-else
@@ -62,9 +69,10 @@
62 69
                   {{ advice.prescribing_number }}
63 70
                   {{ advice.prescribing_number_unit }}
64 71
                 </span>
65
-                <span
66
-                  v-if="advice.single_dose"
67
-                >单次用量{{ advice.single_dose }}{{ advice.single_dose_unit }}</span>
72
+                <span v-if="advice.single_dose"
73
+                  >单次用量{{ advice.single_dose
74
+                  }}{{ advice.single_dose_unit }}</span
75
+                >
68 76
                 <span>{{ advice.delivery_way }}</span>
69 77
                 <span>{{ advice.execution_frequency }}</span>
70 78
                 <!--{{ advice.advice_name }} {{ advice.advice_desc }} {{ advice.prescribing_number }}{{ advice.prescribing_number_unit }} 单次用量{{ advice.single_dose }}{{ advice.single_dose_unit }} {{ advice.delivery_way }} {{ advice.execution_frequency }}-->
@@ -251,7 +259,7 @@ export default {
251 259
   min-height: 5rem;
252 260
   overflow-y: scroll;
253 261
   @media only screen and (max-width: 811px) {
254
-    max-height: 15.8rem !important;
262
+    max-height: 11.8rem !important;
255 263
   }
256 264
   ul {
257 265
     li {

+ 86 - 71
src/pages/main/dialog/subMenu/checkBoxSubMenu.vue 查看文件

@@ -5,8 +5,14 @@
5 5
         <span class="iconfont">&#xe720;</span>返回
6 6
       </div>
7 7
       <h1 class="name">{{ propsForm.title }}</h1>
8
-      <span v-if="propsForm.isMultiple == 1" @click="comfirm" class="success"></span>
9
-      <span v-if="propsForm.isMultiple == 2" @click="comfirm" class="success">确定</span>
8
+      <span
9
+        v-if="propsForm.isMultiple == 1"
10
+        @click="comfirm"
11
+        class="success"
12
+      ></span>
13
+      <span v-if="propsForm.isMultiple == 2" @click="comfirm" class="success"
14
+        >确定</span
15
+      >
10 16
     </div>
11 17
 
12 18
     <div v-if="propsForm.isMultiple == 1" class="optionsBox">
@@ -19,7 +25,9 @@
19 25
             :key="item.id"
20 26
             value="item"
21 27
             :class="propsForm.selectId == item.id ? 'tick' : ''"
22
-          >{{ item.name }}</li>
28
+          >
29
+            {{ item.name }}
30
+          </li>
23 31
           <!--<li v-if="propsForm.isHasOther == 1 && this.$store.getters.user.template_info.template_id == 2" @click="itemClick(-1)"  :key="-1" value="-1" :class="propsForm.selectId == -1? 'tick':'' ">其他</li>-->
24 32
         </ul>
25 33
       </div>
@@ -34,92 +42,89 @@
34 42
               v-for="(item, index) in propsForm.list"
35 43
               :key="index"
36 44
               :name="item.name"
37
-            >{{ item.name }}</van-checkbox>
45
+              >{{ item.name }}</van-checkbox
46
+            >
38 47
           </van-checkbox-group>
39 48
         </li>
40
-
41 49
       </ul>
42 50
       <!--<div style="margin-top: 10px" v-if="propsForm.isShowOther == 2">-->
43
-        <!--<el-form>-->
44
-          <!--<el-form-item label-width="90px" label="其他"  >-->
45
-            <!--<el-input clearable v-model="other" ></el-input>-->
46
-          <!--</el-form-item>-->
47
-        <!--</el-form>-->
51
+      <!--<el-form>-->
52
+      <!--<el-form-item label-width="90px" label="其他"  >-->
53
+      <!--<el-input clearable v-model="other" ></el-input>-->
54
+      <!--</el-form-item>-->
55
+      <!--</el-form>-->
48 56
       <!--</div>-->
49
-
50 57
     </div>
51 58
   </div>
52 59
 </template>
53 60
 
54 61
 <script>
55
-  export default {
56
-    name: 'checkBoxSubMenu',
57
-    created () {
62
+export default {
63
+  name: "checkBoxSubMenu",
64
+  created() {},
65
+  data() {
66
+    return {
67
+      result: [],
68
+      id: 0,
69
+      selectName: "",
70
+      other: ""
71
+    };
72
+  },
73
+  props: {
74
+    propsForm: {
75
+      type: Object
58 76
     },
59
-    data () {
60
-      return {
61
-        result: [],
62
-        id: 0,
63
-        selectName: '',
64
-        other: ''
65
-      }
77
+    visibility: {
78
+      type: Boolean,
79
+      default: false
80
+    }
81
+  },
82
+  methods: {
83
+    cancle: function() {
84
+      this.$emit("menu-cancle");
66 85
     },
67
-    props: {
68
-      propsForm: {
69
-        type: Object
70
-      },
71
-      visibility: {
72
-        type: Boolean,
73
-        default: false
74
-      }
86
+    comfirm: function() {
87
+      this.$emit("menu-comfirm", this.getValue());
88
+      // this.other = ""
75 89
     },
76
-    methods: {
77
-      cancle: function () {
78
-        this.$emit('menu-cancle')
79
-      },
80
-      comfirm: function () {
81
-        this.$emit('menu-comfirm', this.getValue())
82
-        // this.other = ""
83
-      },
84
-      getValue: function () {
85
-        let form = {}
86
-        if (this.propsForm.isMultiple == 2) {
87
-          form['type'] = this.propsForm.type
88
-          form['result'] = this.propsForm.result
89
-          // form['other'] = this.other
90
+    getValue: function() {
91
+      let form = {};
92
+      if (this.propsForm.isMultiple == 2) {
93
+        form["type"] = this.propsForm.type;
94
+        form["result"] = this.propsForm.result;
95
+        // form['other'] = this.other
90 96
 
91
-          // form["click_ref"] = this.propsForm.click_ref
92
-        } else {
93
-          form['type'] = this.propsForm.type
94
-          form['selectId'] = this.propsForm.selectId
95
-          // form["click_ref"] = this.propsForm.click_ref
96
-        }
97
-        return form
98
-      },
99
-      itemClick: function (id) {
100
-        if (id == -2) {
101
-          this.$emit('menu-empty', this.getValue())
102
-        }
103
-        this.propsForm.selectId = id
104
-        this.$emit('menu-comfirm', this.getValue())
97
+        // form["click_ref"] = this.propsForm.click_ref
98
+      } else {
99
+        form["type"] = this.propsForm.type;
100
+        form["selectId"] = this.propsForm.selectId;
101
+        // form["click_ref"] = this.propsForm.click_ref
105 102
       }
103
+      return form;
106 104
     },
107
-    watch: {
108
-      visibility (val) {
109
-        //初始化数据操作
110
-
105
+    itemClick: function(id) {
106
+      if (id == -2) {
107
+        this.$emit("menu-empty", this.getValue());
111 108
       }
109
+      this.propsForm.selectId = id;
110
+      this.$emit("menu-comfirm", this.getValue());
111
+    }
112
+  },
113
+  watch: {
114
+    visibility(val) {
115
+      //初始化数据操作
112 116
     }
113 117
   }
118
+};
114 119
 </script>
115 120
 
116 121
 <style style="stylesheet/scss" lang="scss" scoped>
117
-  .optionsBox {
122
+.optionsBox {
118 123
   background: #fff;
119 124
   max-height: 10rem;
120 125
   min-height: 5rem;
121 126
   @media only screen and (max-width: 812px) {
122
-  min-height: 8rem !important;
127
+    min-height: 8rem !important;
123 128
   }
124 129
   @media only screen and (max-width: 415px) {
125 130
     height: 16.8rem !important;
@@ -128,9 +133,12 @@
128 133
     max-height: 8rem;
129 134
     min-height: 7rem !important;
130 135
   }
131
-  @media only screen and (max-width: 768px) {
136
+  @media only screen and (max-width: 767px) {
132 137
     max-height: 16rem !important;
133 138
   }
139
+  @media only screen and (max-width: 768px) {
140
+    max-height: 11.8rem !important;
141
+  }
134 142
   @media only screen and (min-width: 666px) and (max-width: 737px) {
135 143
     max-height: 8rem;
136 144
     min-height: 7rem !important;
@@ -141,9 +149,12 @@
141 149
     @media only screen and (min-width: 666px) and (max-width: 737px) {
142 150
       max-height: 8rem;
143 151
     }
144
-    @media only screen and (max-width: 768px) {
152
+    @media only screen and (max-width: 767px) {
145 153
       max-height: 16rem;
146 154
     }
155
+    @media only screen and (max-width: 768px) {
156
+      max-height: 11.8rem !important;
157
+    }
147 158
     li {
148 159
       height: 1.2rem;
149 160
       line-height: 1.2rem;
@@ -169,20 +180,24 @@
169 180
       }
170 181
     }
171 182
   }
172
-  }
173
-  .CheckBox {
183
+}
184
+.CheckBox {
174 185
   background: #fff;
175 186
   max-height: 6.8rem;
176 187
   min-height: 5rem;
177 188
   overflow-y: scroll;
178 189
   @media only screen and (max-width: 812px) {
179
-  max-height: 8rem !important;
180
-  min-height: 8rem !important;
190
+    max-height: 8rem !important;
191
+    min-height: 8rem !important;
181 192
   }
182
-  @media only screen and (max-width: 768px) {
193
+  @media only screen and (max-width: 767px) {
183 194
     max-height: 16rem !important;
184 195
     min-height: 8rem !important;
185 196
   }
197
+  @media only screen and (min-width: 768px) {
198
+    max-height: 11.8rem !important;
199
+    min-height: 8rem !important;
200
+  }
186 201
   @media only screen and (min-width: 813px) and (max-width: 1024px) {
187 202
     max-height: 10.8rem !important;
188 203
   }
@@ -191,5 +206,5 @@
191 206
       line-height: 1.2rem;
192 207
     }
193 208
   }
194
-  }
209
+}
195 210
 </style>

+ 157 - 119
src/pages/main/today/statOrder.vue 查看文件

@@ -2,7 +2,7 @@
2 2
   <div class="plate-box">
3 3
     <h2 class="title border">
4 4
       <span class="line"></span>
5
-      <p>{{title}}</p>
5
+      <p>{{ title }}</p>
6 6
       <span class="line"></span>
7 7
     </h2>
8 8
 
@@ -17,163 +17,201 @@
17 17
           <th v-if="template_id != 6" width="9.4%">核对护士</th>
18 18
         </tr>
19 19
 
20
-        <template v-for="(group) in advice_groups">
20
+        <template v-for="group in advice_groups">
21 21
           <tr v-for="(advice, i) in group.advices" :key="advice.id">
22
-            <td
23
-              v-if="i == 0"
24
-              :rowspan="group.advices.length"
25
-            >{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
22
+            <td v-if="i == 0" :rowspan="group.advices.length">
23
+              {{
24
+                doctor_map[advice.advice_doctor] != undefined
25
+                  ? doctor_map[advice.advice_doctor].name
26
+                  : ""
27
+              }}
28
+            </td>
26 29
 
27
-            <td
28
-              v-if="i == 0"
29
-              :rowspan="group.advices.length"
30
-            >{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
30
+            <td v-if="i == 0" :rowspan="group.advices.length">
31
+              {{ parseTime(advice.start_time, "{m}-{d} {h}:{i}") }}
32
+            </td>
31 33
 
32
-            <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
33
-              <span>{{advice.advice_name }}</span>
34
+            <td
35
+              :class="
36
+                advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'
37
+              "
38
+            >
39
+              <span>{{ advice.advice_name }}</span>
34 40
 
35
-              <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
36
-              <span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
37 41
               <span
38
-                v-if="advice.prescribing_number"
39
-              >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
40
-              <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
42
+                >{{ advice.drug_spec }}{{ advice.drug_spec_unit }} *
43
+                {{ advice.prescribing_number
44
+                }}{{ advice.prescribing_number_unit }}</span
45
+              >
46
+              <span v-if="advice.advice_desc"
47
+                >{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span
48
+              >
49
+              <span v-if="advice.prescribing_number"
50
+                >{{ advice.prescribing_number
51
+                }}{{ advice.prescribing_number_unit }}</span
52
+              >
53
+              <span v-if="advice.single_dose"
54
+                >单次用量{{ advice.single_dose
55
+                }}{{ advice.single_dose_unit }}</span
56
+              >
41 57
 
42
-              <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
43
-              <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
44
-              <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
58
+              <span v-if="advice.parent_id == 0">{{
59
+                advice.delivery_way
60
+              }}</span>
61
+              <span v-if="advice.parent_id == 0">{{
62
+                advice.execution_frequency
63
+              }}</span>
64
+              <span v-if="advice.parent_id == 0 && advice.remark.length > 0"
65
+                >({{ advice.remark }})</span
66
+              >
45 67
             </td>
46 68
 
47
-            <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
69
+            <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
48 70
 
49
-            <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
71
+            <td>
72
+              {{
73
+                advice.execution_staff != 0
74
+                  ? doctor_map[advice.execution_staff] != undefined
75
+                    ? doctor_map[advice.execution_staff].name
76
+                    : ""
77
+                  : ""
78
+              }}
79
+            </td>
50 80
 
51
-            <td
52
-              v-if="template_id != 6"
53
-            >{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
81
+            <td v-if="template_id != 6">
82
+              {{
83
+                advice.checker != 0
84
+                  ? doctor_map[advice.checker] != undefined
85
+                    ? doctor_map[advice.checker].name
86
+                    : ""
87
+                  : ""
88
+              }}
89
+            </td>
54 90
           </tr>
55 91
         </template>
56 92
       </table>
57 93
 
58 94
       <div class="NoData" v-show="advice_groups.length == 0">
59
-        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
95
+        <img
96
+          style="margin-top: 50px; margin-bottom: 50px"
97
+          src="@/assets/login/data.jpg"
98
+          alt
99
+        />
60 100
       </div>
61 101
     </div>
62 102
   </div>
63 103
 </template>
64 104
 <script>
65
-  import { parseTime } from '@/utils';
105
+import { parseTime } from "@/utils";
66 106
 
67
-  export default {
68
-    name: 'statOrder',
69
-    data () {
70
-      return {
71
-        title: '临时医嘱 ',
72
-        template_id: 0,
73
-        tableDate: []
74
-      }
107
+export default {
108
+  name: "statOrder",
109
+  data() {
110
+    return {
111
+      title: "临时医嘱 ",
112
+      template_id: 0,
113
+      tableDate: []
114
+    };
115
+  },
116
+  props: {
117
+    doctor_map: {
118
+      type: Object
75 119
     },
76
-    props: {
77
-      doctor_map: {
78
-        type: Object
79
-      },
80
-      advice_groups: {
81
-        type: Array,
82
-        default: () => {
83
-          return []
84
-        }
120
+    advice_groups: {
121
+      type: Array,
122
+      default: () => {
123
+        return [];
85 124
       }
125
+    }
126
+  },
127
+  created() {
128
+    this.template_id = this.$store.getters.user.template_info.template_id;
129
+  },
130
+  methods: {
131
+    setAdvices(advices) {
132
+      if (advices == null) {
133
+        advices = [];
134
+      }
135
+      this.tableDate.splice(0, this.tableDate.length);
136
+      this.tableDate.push(...advices);
86 137
     },
87
-    created () {
88
-      this.template_id = this.$store.getters.user.template_info.template_id
138
+    parseTime(time, layout) {
139
+      if (time == 0) {
140
+        return "";
141
+      }
142
+      return parseTime(time, layout);
89 143
     },
90
-    methods: {
91
-      setAdvices (advices) {
92
-        if (advices == null) {
93
-          advices = []
94
-        }
95
-        this.tableDate.splice(0, this.tableDate.length)
96
-        this.tableDate.push(...advices)
97
-      },
98
-      parseTime (time, layout) {
99
-        if (time == 0) {
100
-          return '';
101
-        }
102
-        return parseTime(time, layout)
103
-      },
104
-      createMedicalOrder (row) {
105
-        if (row.parent_id > 0) {
106
-          var spliceIndex = -1
107
-          for (let index = this.tableDate.length - 1; ; index--) {
108
-            if (this.tableDate[index].parent_id === row.parent_id) {
109
-              spliceIndex = index
110
-              break;
111
-            } else if (this.tableDate[index].id === row.parent_id) {
112
-              spliceIndex = index
113
-              break;
114
-            }
115
-          }
116
-          if (spliceIndex > -1) {
117
-            spliceIndex += 1
118
-            if (spliceIndex === this.tableDate.length) {
119
-              this.tableDate.push(row)
120
-            } else {
121
-              var swapData = this.tableDate.splice(spliceIndex)
122
-              this.tableDate.push(row)
123
-              this.tableDate = this.tableDate.concat(swapData)
124
-            }
144
+    createMedicalOrder(row) {
145
+      if (row.parent_id > 0) {
146
+        var spliceIndex = -1;
147
+        for (let index = this.tableDate.length - 1; ; index--) {
148
+          if (this.tableDate[index].parent_id === row.parent_id) {
149
+            spliceIndex = index;
150
+            break;
151
+          } else if (this.tableDate[index].id === row.parent_id) {
152
+            spliceIndex = index;
153
+            break;
125 154
           }
126
-        } else {
127
-          this.tableDate.unshift(row)
128 155
         }
129
-      },
130
-      delMedicalOrder (row) {
131
-        if (row.parent_id > 0) {
132
-          var rslen = this.tableDate.length
133
-          for (let i = 0; i < rslen; i++) {
134
-            if (this.tableDate[i].id == row.id) {
135
-              this.tableDate.splice(i, 1)
136
-              break;
137
-            }
138
-          }
139
-        } else {
140
-          var resetTableData = this.tableDate
141
-          this.tableDate = []
142
-          var that = this
143
-          var rslen = resetTableData.length
144
-          for (let i = 0; i < rslen; i++) {
145
-            if (
146
-              resetTableData[i].id != row.id &&
147
-              resetTableData[i].parent_id != row.id
148
-            ) {
149
-              that.tableDate.push(resetTableData[i])
150
-            }
156
+        if (spliceIndex > -1) {
157
+          spliceIndex += 1;
158
+          if (spliceIndex === this.tableDate.length) {
159
+            this.tableDate.push(row);
160
+          } else {
161
+            var swapData = this.tableDate.splice(spliceIndex);
162
+            this.tableDate.push(row);
163
+            this.tableDate = this.tableDate.concat(swapData);
151 164
           }
152 165
         }
153
-      },
154
-      executionMedicalOrder (row) {
155
-        var alen = this.tableDate.length
156
-        for (let index = 0; index < alen; index++) {
157
-          if (this.tableDate[index].id == row.id) {
158
-            this.tableDate[index].execution_state = 1
159
-            this.tableDate[index].execution_staff = row.execution_staff
160
-            this.tableDate[index].execution_time = row.execution_time
161
-            this.tableDate[index].checker = row.checker
166
+      } else {
167
+        this.tableDate.unshift(row);
168
+      }
169
+    },
170
+    delMedicalOrder(row) {
171
+      if (row.parent_id > 0) {
172
+        var rslen = this.tableDate.length;
173
+        for (let i = 0; i < rslen; i++) {
174
+          if (this.tableDate[i].id == row.id) {
175
+            this.tableDate.splice(i, 1);
162 176
             break;
163 177
           }
164 178
         }
179
+      } else {
180
+        var resetTableData = this.tableDate;
181
+        this.tableDate = [];
182
+        var that = this;
183
+        var rslen = resetTableData.length;
184
+        for (let i = 0; i < rslen; i++) {
185
+          if (
186
+            resetTableData[i].id != row.id &&
187
+            resetTableData[i].parent_id != row.id
188
+          ) {
189
+            that.tableDate.push(resetTableData[i]);
190
+          }
191
+        }
192
+      }
193
+    },
194
+    executionMedicalOrder(row) {
195
+      var alen = this.tableDate.length;
196
+      for (let index = 0; index < alen; index++) {
197
+        if (this.tableDate[index].id == row.id) {
198
+          this.tableDate[index].execution_state = 1;
199
+          this.tableDate[index].execution_staff = row.execution_staff;
200
+          this.tableDate[index].execution_time = row.execution_time;
201
+          this.tableDate[index].checker = row.checker;
202
+          break;
203
+        }
165 204
       }
166 205
     }
167 206
   }
207
+};
168 208
 </script>
169 209
 
170
-
171
-
172 210
 <style rel="stylesheet/scss" lang="scss" scoped>
173 211
 .table {
174 212
   width: 1000px;
175 213
   overflow: hidden;
176
-  font-size: 0.34rem;
214
+  font-size: 0.45rem;
177 215
   text-align: center;
178 216
   border: $border-color;
179 217
   tr {
@@ -186,8 +224,8 @@
186 224
       color: #fff;
187 225
       padding: 0;
188 226
       margin: 0;
189
-      height: 0.88rem;
190
-      line-height: 0.88rem;
227
+      height: 1.2rem;
228
+      line-height: 1.2rem;
191 229
       font-weight: normal;
192 230
     }
193 231
 

+ 33 - 11
src/styles/style.scss 查看文件

@@ -31,6 +31,10 @@ body {
31 31
   @include align-items-center;
32 32
   width: 100%;
33 33
   @include justify-content-center;
34
+  @media only screen and (max-width: 767px) {
35
+    line-height: 1.2rem;
36
+    font-size: 0.45rem;
37
+  }
34 38
   .line {
35 39
     width: 0.2rem;
36 40
     height: 0.04rem;
@@ -63,6 +67,10 @@ body {
63 67
     @include align-items-center;
64 68
     width: 100%;
65 69
     @include justify-content-center;
70
+    @media only screen and (max-width: 767px) {
71
+      line-height: 1.2rem;
72
+      font-size: 0.45rem;
73
+    }
66 74
   }
67 75
   .line {
68 76
     width: 0.2rem;
@@ -211,8 +219,8 @@ body {
211 219
   @include justify-content-around;
212 220
   background: #fff;
213 221
   span {
214
-    height: 0.8rem;
215
-    line-height: 0.8rem;
222
+    height: 1.2rem;
223
+    line-height: 1.2rem;
216 224
     background: #fff;
217 225
     border-radius: 5px;
218 226
     border: 1px $border-color solid;
@@ -220,8 +228,8 @@ body {
220 228
     @include text-align;
221 229
     margin: 0.25rem 0;
222 230
     color: #34495e;
223
-    font-size: 0.32rem;
224
-    padding: 0 0.3rem;
231
+    font-size: 0.4rem;
232
+    padding: 0 0.16rem;
225 233
   }
226 234
   .forbid {
227 235
     color: $forbid-color;
@@ -473,13 +481,13 @@ body {
473 481
       @media only screen and (max-width: 415px) {
474 482
         height: 14.8rem !important;
475 483
       }
476
-      @media only screen and (min-width: 666px) and (max-width: 737px) {
477
-        height: 8.8rem !important;
478
-      }
479
-      @media only screen and (min-width: 737px) and (max-width: 768px) {
480
-        height: 14.8rem !important;
481
-      }
482
-      @media only screen and (min-width: 813px) and (max-width: 1024px) {
484
+      // @media only screen and (min-width: 666px) and (max-width: 737px) {
485
+      //   height: 8.8rem !important;
486
+      // }
487
+      // @media only screen and (min-width: 737px) and (max-width: 768px) {
488
+      //   height: 14.8rem !important;
489
+      // }
490
+      @media only screen and (min-width: 768px) {
483 491
         height: 11.8rem !important;
484 492
       }
485 493
       .item {
@@ -613,6 +621,20 @@ body {
613 621
     height: 30px !important;
614 622
   }
615 623
 }
624
+.van-checkbox__icon {
625
+  @media only screen and (min-width: 768px) {
626
+    line-height: 30px !important;
627
+    height: 30px !important;
628
+  }
629
+}
630
+.van-checkbox__icon .van-icon {
631
+  @media only screen and (min-width: 768px) {
632
+    font-size: 20px !important;
633
+    line-height: 30px !important;
634
+    width: 30px !important;
635
+    height: 30px !important;
636
+  }
637
+}
616 638
 
617 639
 // .van-checkbox__icon .van-icon {
618 640
 //   @media only screen and (max-width: 812px) {