Browse Source

修改样式1

See999 5 years ago
parent
commit
342e2a98d8
40 changed files with 5999 additions and 5250 deletions
  1. 19 11
      src/pages/advice/AdvicePage.vue
  2. 48 71
      src/pages/advice/DialysisAdviceTable.vue
  3. 50 73
      src/pages/advice/NormalAdviceTable.vue
  4. 9 2
      src/pages/advice/index.vue
  5. 68 41
      src/pages/layout/SideBar.vue
  6. 116 67
      src/pages/main/DetailsPage.vue
  7. 23 44
      src/pages/main/DialysisArea.vue
  8. 339 315
      src/pages/main/PatientBox.vue
  9. 1 1
      src/pages/main/Print.vue
  10. 51 24
      src/pages/main/PrintIndex.vue
  11. 207 108
      src/pages/main/RecordPage.vue
  12. 24 47
      src/pages/main/WaitingArea.vue
  13. 35 36
      src/pages/main/add_urgent_schedule.vue
  14. 119 48
      src/pages/main/dialog/LongDialog.vue
  15. 1171 1105
      src/pages/main/dialog/OrdersDialog.vue
  16. 5 11
      src/pages/main/dialog/TwoMenu.vue
  17. 103 93
      src/pages/main/dialog/modify_order/ModifyAdviceGroup.vue
  18. 25 16
      src/pages/main/dialog/new_order/AddNewOrders.vue
  19. 39 32
      src/pages/main/dialog/new_order/select_advice_template_dialog.vue
  20. 32 13
      src/pages/main/dialog/subMenu/checkBoxSubMenu.vue
  21. 1141 1092
      src/pages/main/dialysis/AdviceTable.vue
  22. 86 42
      src/pages/main/dialysis/CheckTab.vue
  23. 66 50
      src/pages/main/dialysis/DialysisTab.vue
  24. 42 17
      src/pages/main/dialysis/InspectionItemTable.vue
  25. 149 132
      src/pages/main/dialysis/MissionTable.vue
  26. 49 42
      src/pages/main/dialysis/RecordTable.vue
  27. 174 174
      src/pages/main/index.vue
  28. 15 5
      src/pages/main/records/CaseHistory.vue
  29. 3 0
      src/pages/main/records/RecordsTab.vue
  30. 1264 1132
      src/pages/main/today/TodayTab.vue
  31. 130 93
      src/pages/main/today/acceptsAssessment.vue
  32. 43 24
      src/pages/main/today/detailsInfo.vue
  33. 65 59
      src/pages/main/today/dialysisComputer.vue
  34. 30 26
      src/pages/main/today/dialysisOff.vue
  35. 36 23
      src/pages/main/today/statOrder.vue
  36. 59 76
      src/pages/monitoring/index.vue
  37. 13 15
      src/pages/personal/ElectronicSignature.vue
  38. 95 75
      src/pages/personal/index.vue
  39. 7 2
      src/styles/media.scss
  40. 48 13
      src/styles/style.scss

+ 19 - 11
src/pages/advice/AdvicePage.vue View File

6
           <span class="title"></span>
6
           <span class="title"></span>
7
         </div>
7
         </div>
8
       </van-col>
8
       </van-col>
9
-      <van-col :span="8">
9
+      <van-col :span="14">
10
         <div class="department">
10
         <div class="department">
11
           <ul>
11
           <ul>
12
-            <li v-for="(item,i) in ['透析临嘱','普通医嘱']" :key="i" :class="index == i? 'active':'' " @click="ClickTab(i)" >{{item}}</li>
12
+            <li
13
+              v-for="(item,i) in ['透析临嘱','普通医嘱']"
14
+              :key="i"
15
+              :class="index == i? 'active':'' "
16
+              @click="ClickTab(i)"
17
+            >{{item}}</li>
13
           </ul>
18
           </ul>
14
         </div>
19
         </div>
15
       </van-col>
20
       </van-col>
16
 
21
 
17
-
18
-      <van-col :span="5">
19
-        <router-link to="/add_urgent_schedule">
20
-        </router-link>
22
+      <van-col :span="4">
23
+        <router-link to="/add_urgent_schedule"></router-link>
21
         <div class="search" style="visibility: hidden">
24
         <div class="search" style="visibility: hidden">
22
           <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" class="field">
25
           <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" class="field">
23
             <i class="iconfont" slot="left-icon">&#xe741;</i>
26
             <i class="iconfont" slot="left-icon">&#xe741;</i>
24
-            <van-button slot="button" size="small" type="info" style="border: none;" @click="searchWithKeyword">搜索</van-button>
27
+            <van-button
28
+              slot="button"
29
+              size="small"
30
+              type="info"
31
+              style="border: none;"
32
+              @click="searchWithKeyword"
33
+            >搜索</van-button>
25
           </van-field>
34
           </van-field>
26
         </div>
35
         </div>
27
       </van-col>
36
       </van-col>
28
     </van-row>
37
     </van-row>
29
 
38
 
30
-
31
     <div class="area">
39
     <div class="area">
32
-      <DialysisAdviceTable v-show="index==0"> </DialysisAdviceTable>
40
+      <DialysisAdviceTable v-show="index==0"></DialysisAdviceTable>
33
       <NormalAdviceTable v-show="index==1"></NormalAdviceTable>
41
       <NormalAdviceTable v-show="index==1"></NormalAdviceTable>
34
     </div>
42
     </div>
35
-
36
   </div>
43
   </div>
37
 </template>
44
 </template>
38
 
45
 
92
       line-height: 0.64rem;
99
       line-height: 0.64rem;
93
       padding: 0 0.3rem;
100
       padding: 0 0.3rem;
94
       color: $title-color;
101
       color: $title-color;
102
+
95
       &.active {
103
       &.active {
96
         background: $main-color;
104
         background: $main-color;
97
         color: #fff;
105
         color: #fff;
123
   background-color: #ff7978;
131
   background-color: #ff7978;
124
   border: none;
132
   border: none;
125
   @media only screen and (max-width: 812px) {
133
   @media only screen and (max-width: 812px) {
126
-  min-width: 60px !important;
134
+    min-width: 60px !important;
127
   }
135
   }
128
 }
136
 }
129
 </style>
137
 </style>

+ 48 - 71
src/pages/advice/DialysisAdviceTable.vue View File

2
   <div class="mainBox">
2
   <div class="mainBox">
3
     <div class="choice">
3
     <div class="choice">
4
       <ul>
4
       <ul>
5
-        <el-popover
6
-          placement="bottom"
7
-          trigger="click"
8
-          v-model="show_patient_type_selector"
9
-        >
5
+        <el-popover placement="bottom" trigger="click" v-model="show_patient_type_selector">
10
           <li slot="reference">
6
           <li slot="reference">
11
             {{ patient_types[patient_selected].text
7
             {{ patient_types[patient_selected].text
12
-            }}<span class="iconfont">&#xe74a;</span>
8
+            }}
9
+            <span class="iconfont">&#xe74a;</span>
13
           </li>
10
           </li>
14
           <div class="popover-demo-content">
11
           <div class="popover-demo-content">
15
             <ul>
12
             <ul>
18
                 :key="type.value"
15
                 :key="type.value"
19
                 @click="handlePaitentType(type.value)"
16
                 @click="handlePaitentType(type.value)"
20
                 :class="advice_type_selected == type.value ? 'tick' : ''"
17
                 :class="advice_type_selected == type.value ? 'tick' : ''"
21
-              >
22
-                {{ type.text }}
23
-              </li>
18
+              >{{ type.text }}</li>
24
             </ul>
19
             </ul>
25
           </div>
20
           </div>
26
         </el-popover>
21
         </el-popover>
27
 
22
 
28
-        <el-popover
29
-          placement="bottom"
30
-          trigger="click"
31
-          v-model="show_zone_selector"
32
-        >
23
+        <el-popover placement="bottom" trigger="click" v-model="show_zone_selector">
33
           <li slot="reference">
24
           <li slot="reference">
34
             {{ zones[zone_selected].text
25
             {{ zones[zone_selected].text
35
-            }}<span class="iconfont">&#xe74a;</span>
26
+            }}
27
+            <span class="iconfont">&#xe74a;</span>
36
           </li>
28
           </li>
37
           <div class="popover-demo-content">
29
           <div class="popover-demo-content">
38
             <ul>
30
             <ul>
41
                 :key="zone.value"
33
                 :key="zone.value"
42
                 @click="handleZoneChange(index)"
34
                 @click="handleZoneChange(index)"
43
                 :class="zone_selected == index ? 'tick' : ''"
35
                 :class="zone_selected == index ? 'tick' : ''"
44
-              >
45
-                {{ zone.text }}
46
-              </li>
36
+              >{{ zone.text }}</li>
47
             </ul>
37
             </ul>
48
           </div>
38
           </div>
49
         </el-popover>
39
         </el-popover>
50
-        <el-popover
51
-          placement="bottom"
52
-          trigger="click"
53
-          v-model="show_sch_type_selector"
54
-        >
40
+        <el-popover placement="bottom" trigger="click" v-model="show_sch_type_selector">
55
           <li slot="reference">
41
           <li slot="reference">
56
             {{ schedule_types[schedule_type_selected].text
42
             {{ schedule_types[schedule_type_selected].text
57
-            }}<span class="iconfont">&#xe74a;</span>
43
+            }}
44
+            <span
45
+              class="iconfont"
46
+            >&#xe74a;</span>
58
           </li>
47
           </li>
59
           <div class="popover-demo-content">
48
           <div class="popover-demo-content">
60
             <ul>
49
             <ul>
65
                 :class="
54
                 :class="
66
                   schedule_type_selected == scheduleType.value ? 'tick' : ''
55
                   schedule_type_selected == scheduleType.value ? 'tick' : ''
67
                 "
56
                 "
68
-              >
69
-                {{ scheduleType.text }}
70
-              </li>
57
+              >{{ scheduleType.text }}</li>
71
             </ul>
58
             </ul>
72
           </div>
59
           </div>
73
         </el-popover>
60
         </el-popover>
87
       </ul>
74
       </ul>
88
     </div>
75
     </div>
89
 
76
 
90
-    <div
91
-      style="width:100%;overflow:hildden;overflow-x:auto;"
92
-      class="DialysisAdvice"
93
-    >
77
+    <div style="width:100%;overflow:hildden;overflow-x:auto;" class="DialysisAdvice">
94
       <div class="blueBorder"></div>
78
       <div class="blueBorder"></div>
95
       <table class="table">
79
       <table class="table">
96
         <tr>
80
         <tr>
124
           </tr>
108
           </tr>
125
           <template v-for="schedule in schedules">
109
           <template v-for="schedule in schedules">
126
             <template v-for="(group, group_index) in schedule.new_advice">
110
             <template v-for="(group, group_index) in schedule.new_advice">
127
-              <tr
128
-                v-for="(advice, advice_index) in group.advices"
129
-                @click="clickfunction(schedule)"
130
-              >
111
+              <tr v-for="(advice, advice_index) in group.advices" @click="clickfunction(schedule)">
131
                 <!--<td  v-if="advice_index == 0"-->
112
                 <!--<td  v-if="advice_index == 0"-->
132
                 <!--:rowspan="group.advices.length">{{ advice.parent_id == 0 ? schedule.device_number.number : "" }}</td>-->
113
                 <!--:rowspan="group.advices.length">{{ advice.parent_id == 0 ? schedule.device_number.number : "" }}</td>-->
133
 
114
 
140
                   v-if="advice_index == 0"
121
                   v-if="advice_index == 0"
141
                   :rowspan="group.advices.length"
122
                   :rowspan="group.advices.length"
142
                   style="color:#409eff;"
123
                   style="color:#409eff;"
143
-                >
144
-                  {{ advice.parent_id == 0 ? schedule.patient.name : "" }}
145
-                </td>
124
+                >{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
146
                 <td v-if="advice_index == 0" :rowspan="group.advices.length">
125
                 <td v-if="advice_index == 0" :rowspan="group.advices.length">
147
                   {{
126
                   {{
148
-                    advice.parent_id == 0 ? schedule.patient.dialysis_no : ""
127
+                  advice.parent_id == 0 ? schedule.patient.dialysis_no : ""
149
                   }}
128
                   }}
150
                 </td>
129
                 </td>
151
-                <td v-if="advice_index == 0" :rowspan="group.advices.length">
152
-                  {{ getAdaviceType(advice.advice_type, advice.parent_id) }}
153
-                </td>
130
+                <td
131
+                  v-if="advice_index == 0"
132
+                  :rowspan="group.advices.length"
133
+                >{{ getAdaviceType(advice.advice_type, advice.parent_id) }}</td>
154
                 <td v-if="advice_index == 0" :rowspan="group.advices.length">
134
                 <td v-if="advice_index == 0" :rowspan="group.advices.length">
155
                   {{
135
                   {{
156
-                    advice.parent_id == 0
157
-                      ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
158
-                      : ""
136
+                  advice.parent_id == 0
137
+                  ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
138
+                  : ""
159
                   }}
139
                   }}
160
                 </td>
140
                 </td>
161
                 <td
141
                 <td
166
                   "
146
                   "
167
                 >
147
                 >
168
                   <span>{{ advice.advice_name }}</span>
148
                   <span>{{ advice.advice_name }}</span>
169
-                  <span
170
-                    >{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span
171
-                  >
172
-                  <span v-if="advice.prescribing_number"
173
-                    >{{ advice.prescribing_number
174
-                    }}{{ advice.prescribing_number_unit }}</span
175
-                  >
149
+                  <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
150
+                  <span v-if="advice.prescribing_number">
151
+                    {{ advice.prescribing_number
152
+                    }}{{ advice.prescribing_number_unit }}
153
+                  </span>
176
                   <span v-if="advice.single_dose">
154
                   <span v-if="advice.single_dose">
177
                     单次用量 {{ advice.single_dose
155
                     单次用量 {{ advice.single_dose
178
-                    }}{{ advice.single_dose_unit }}</span
179
-                  >
156
+                    }}{{ advice.single_dose_unit }}
157
+                  </span>
180
                   <span>{{ advice.delivery_way }}</span>
158
                   <span>{{ advice.delivery_way }}</span>
181
                   <span>{{ advice.execution_frequency }}</span>
159
                   <span>{{ advice.execution_frequency }}</span>
182
-                  <span v-if="advice.parent_id == 0 && advice.remark.length > 0"
183
-                    >({{ advice.remark }})</span
184
-                  >
185
-                </td>
186
-                <td>
187
-                  {{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}
160
+                  <span
161
+                    v-if="advice.parent_id == 0 && advice.remark.length > 0"
162
+                  >({{ advice.remark }})</span>
188
                 </td>
163
                 </td>
164
+                <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
189
                 <td>{{ getName(advice.execution_staff) }}</td>
165
                 <td>{{ getName(advice.execution_staff) }}</td>
190
                 <td>{{ getName(advice.checker) }}</td>
166
                 <td>{{ getName(advice.checker) }}</td>
191
                 <td>{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
167
                 <td>{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
198
       </table>
174
       </table>
199
 
175
 
200
       <div class="NoData" v-show="zones.length <= 1">
176
       <div class="NoData" v-show="zones.length <= 1">
201
-        <img
202
-          style="margin-top: 50px; margin-bottom: 50px"
203
-          src="@/assets/login/data.jpg"
204
-          alt=""
205
-        />
177
+        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
206
       </div>
178
       </div>
207
     </div>
179
     </div>
208
 
180
 
214
       month-format="{value} "
186
       month-format="{value} "
215
       date-format="{value} "
187
       date-format="{value} "
216
       @confirm="requestSchedualDoctors"
188
       @confirm="requestSchedualDoctors"
217
-    >
218
-    </mt-datetime-picker>
189
+    ></mt-datetime-picker>
219
   </div>
190
   </div>
220
 </template>
191
 </template>
221
 
192
 
559
   top: 63px;
530
   top: 63px;
560
   right: 0;
531
   right: 0;
561
   z-index: 66;
532
   z-index: 66;
562
-  left: 1.58rem;
533
+  left: 0;
563
   background: #fff;
534
   background: #fff;
564
-  @media only screen and (max-width: 812px) {
565
-    top: 43px !important;
535
+  @media only screen and (max-width: 415px) {
536
+    top: 39px !important;
537
+  }
538
+  @media only screen and (min-width: 376px) and (max-width: 737px) {
539
+    top: 45px !important;
566
   }
540
   }
567
   ul {
541
   ul {
568
     @include display-flex;
542
     @include display-flex;
569
     @include align-items-center;
543
     @include align-items-center;
570
     @include text-align;
544
     @include text-align;
571
     @include justify-content-between;
545
     @include justify-content-between;
572
-    width: 70%;
546
+    width: 80%;
573
     margin: 0 auto;
547
     margin: 0 auto;
574
     font-size: 0.32rem;
548
     font-size: 0.32rem;
575
     color: $pgh-color;
549
     color: $pgh-color;
600
   @media only screen and (max-width: 812px) {
574
   @media only screen and (max-width: 812px) {
601
     padding-top: 80px !important;
575
     padding-top: 80px !important;
602
   }
576
   }
577
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
578
+    padding-top: 118px !important;
579
+  }
603
 }
580
 }
604
 
581
 
605
 .advice_content {
582
 .advice_content {

+ 50 - 73
src/pages/advice/NormalAdviceTable.vue View File

2
   <div class="mainBox">
2
   <div class="mainBox">
3
     <div class="choice">
3
     <div class="choice">
4
       <ul>
4
       <ul>
5
-        <el-popover
6
-          placement="bottom"
7
-          trigger="click"
8
-          v-model="show_patient_type_selector"
9
-        >
5
+        <el-popover placement="bottom" trigger="click" v-model="show_patient_type_selector">
10
           <li slot="reference">
6
           <li slot="reference">
11
             {{ patient_types[patient_selected].text
7
             {{ patient_types[patient_selected].text
12
-            }}<span class="iconfont">&#xe74a;</span>
8
+            }}
9
+            <span class="iconfont">&#xe74a;</span>
13
           </li>
10
           </li>
14
           <div class="popover-demo-content">
11
           <div class="popover-demo-content">
15
             <ul>
12
             <ul>
18
                 :key="type.value"
15
                 :key="type.value"
19
                 @click="handlePaitentType(type.value)"
16
                 @click="handlePaitentType(type.value)"
20
                 :class="advice_type_selected == type.value ? 'tick' : ''"
17
                 :class="advice_type_selected == type.value ? 'tick' : ''"
21
-              >
22
-                {{ type.text }}
23
-              </li>
18
+              >{{ type.text }}</li>
24
             </ul>
19
             </ul>
25
           </div>
20
           </div>
26
         </el-popover>
21
         </el-popover>
27
 
22
 
28
-        <el-popover
29
-          placement="bottom"
30
-          trigger="click"
31
-          v-model="show_zone_selector"
32
-        >
23
+        <el-popover placement="bottom" trigger="click" v-model="show_zone_selector">
33
           <li slot="reference">
24
           <li slot="reference">
34
             {{ zones[zone_selected].text
25
             {{ zones[zone_selected].text
35
-            }}<span class="iconfont">&#xe74a;</span>
26
+            }}
27
+            <span class="iconfont">&#xe74a;</span>
36
           </li>
28
           </li>
37
           <div class="popover-demo-content">
29
           <div class="popover-demo-content">
38
             <ul>
30
             <ul>
41
                 :key="zone.value"
33
                 :key="zone.value"
42
                 @click="handleZoneChange(index)"
34
                 @click="handleZoneChange(index)"
43
                 :class="zone_selected == index ? 'tick' : ''"
35
                 :class="zone_selected == index ? 'tick' : ''"
44
-              >
45
-                {{ zone.text }}
46
-              </li>
36
+              >{{ zone.text }}</li>
47
             </ul>
37
             </ul>
48
           </div>
38
           </div>
49
         </el-popover>
39
         </el-popover>
50
-        <el-popover
51
-          placement="bottom"
52
-          trigger="click"
53
-          v-model="show_sch_type_selector"
54
-        >
40
+        <el-popover placement="bottom" trigger="click" v-model="show_sch_type_selector">
55
           <li slot="reference">
41
           <li slot="reference">
56
             {{ schedule_types[schedule_type_selected].text
42
             {{ schedule_types[schedule_type_selected].text
57
-            }}<span class="iconfont">&#xe74a;</span>
43
+            }}
44
+            <span
45
+              class="iconfont"
46
+            >&#xe74a;</span>
58
           </li>
47
           </li>
59
           <div class="popover-demo-content">
48
           <div class="popover-demo-content">
60
             <ul>
49
             <ul>
65
                 :class="
54
                 :class="
66
                   schedule_type_selected == scheduleType.value ? 'tick' : ''
55
                   schedule_type_selected == scheduleType.value ? 'tick' : ''
67
                 "
56
                 "
68
-              >
69
-                {{ scheduleType.text }}
70
-              </li>
57
+              >{{ scheduleType.text }}</li>
71
             </ul>
58
             </ul>
72
           </div>
59
           </div>
73
         </el-popover>
60
         </el-popover>
87
       </ul>
74
       </ul>
88
     </div>
75
     </div>
89
 
76
 
90
-    <div
91
-      style="width:100%;overflow:hildden;overflow-x:auto;"
92
-      class="NormalAdvice"
93
-    >
77
+    <div style="width:100%;overflow:hildden;overflow-x:auto;" class="NormalAdvice">
94
       <div class="blueBorder"></div>
78
       <div class="blueBorder"></div>
95
       <table class="table">
79
       <table class="table">
96
         <tr>
80
         <tr>
131
               <!--<td>{{ advice.parent_id == 0 && advice.dialysis_order&&advice.dialysis_order.device_number&& advice.dialysis_order.device_number.number.length > 0 ? advice.dialysis_order.device_number.number : schedule.device_number.number }}</td>-->
115
               <!--<td>{{ advice.parent_id == 0 && advice.dialysis_order&&advice.dialysis_order.device_number&& advice.dialysis_order.device_number.number.length > 0 ? advice.dialysis_order.device_number.number : schedule.device_number.number }}</td>-->
132
               <!--<td>{{getNumber(advice)}}</td>-->
116
               <!--<td>{{getNumber(advice)}}</td>-->
133
               <td>{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
117
               <td>{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
134
-              <td>
135
-                {{ advice.parent_id == 0 ? schedule.patient.dialysis_no : "" }}
136
-              </td>
137
-              <td>
138
-                {{ getAdaviceType(advice.advice_type, advice.parent_id) }}
139
-              </td>
118
+              <td>{{ advice.parent_id == 0 ? schedule.patient.dialysis_no : "" }}</td>
119
+              <td>{{ getAdaviceType(advice.advice_type, advice.parent_id) }}</td>
140
               <td>
120
               <td>
141
                 {{
121
                 {{
142
-                  advice.parent_id == 0
143
-                    ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
144
-                    : ""
122
+                advice.parent_id == 0
123
+                ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
124
+                : ""
145
                 }}
125
                 }}
146
               </td>
126
               </td>
147
               <td>
127
               <td>
148
                 <span>{{ advice.advice_name }}</span>
128
                 <span>{{ advice.advice_name }}</span>
149
                 <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
129
                 <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
150
 
130
 
151
-                <span v-if="advice.prescribing_number"
152
-                  >{{ advice.prescribing_number
153
-                  }}{{ advice.prescribing_number_unit }}</span
154
-                >
131
+                <span v-if="advice.prescribing_number">
132
+                  {{ advice.prescribing_number
133
+                  }}{{ advice.prescribing_number_unit }}
134
+                </span>
155
                 <span v-if="advice.single_dose">
135
                 <span v-if="advice.single_dose">
156
                   单次用量 {{ advice.single_dose
136
                   单次用量 {{ advice.single_dose
157
-                  }}{{ advice.single_dose_unit }}</span
158
-                >
137
+                  }}{{ advice.single_dose_unit }}
138
+                </span>
159
                 <span>{{ advice.delivery_way }}</span>
139
                 <span>{{ advice.delivery_way }}</span>
160
                 <span>{{ advice.execution_frequency }}</span>
140
                 <span>{{ advice.execution_frequency }}</span>
161
               </td>
141
               </td>
162
               <td>
142
               <td>
163
                 {{
143
                 {{
164
-                  advice.parent_id == 0
165
-                    ? parseTime(advice.execution_time, "{m}-{d} {h}:{i}")
166
-                    : ""
144
+                advice.parent_id == 0
145
+                ? parseTime(advice.execution_time, "{m}-{d} {h}:{i}")
146
+                : ""
167
                 }}
147
                 }}
168
               </td>
148
               </td>
169
               <td>
149
               <td>
170
                 {{
150
                 {{
171
-                  advice.parent_id == 0 ? getName(advice.execution_staff) : ""
151
+                advice.parent_id == 0 ? getName(advice.execution_staff) : ""
172
                 }}
152
                 }}
173
               </td>
153
               </td>
174
-              <td>
175
-                {{ advice.parent_id == 0 ? getName(advice.checker) : "" }}
176
-              </td>
154
+              <td>{{ advice.parent_id == 0 ? getName(advice.checker) : "" }}</td>
177
               <td>
155
               <td>
178
                 {{
156
                 {{
179
-                  advice.parent_id == 0
180
-                    ? parseTime(advice.check_time, "{m}-{d} {h}:{i}")
181
-                    : ""
157
+                advice.parent_id == 0
158
+                ? parseTime(advice.check_time, "{m}-{d} {h}:{i}")
159
+                : ""
182
                 }}
160
                 }}
183
               </td>
161
               </td>
184
-              <td>
185
-                {{ advice.parent_id == 0 ? getName(advice.advice_doctor) : "" }}
186
-              </td>
162
+              <td>{{ advice.parent_id == 0 ? getName(advice.advice_doctor) : "" }}</td>
187
               <td>
163
               <td>
188
                 {{
164
                 {{
189
-                  advice.parent_id == 0
190
-                    ? parseTime(advice.created_time, "{m}-{d} {h}:{i}")
191
-                    : ""
165
+                advice.parent_id == 0
166
+                ? parseTime(advice.created_time, "{m}-{d} {h}:{i}")
167
+                : ""
192
                 }}
168
                 }}
193
               </td>
169
               </td>
194
             </tr>
170
             </tr>
197
       </table>
173
       </table>
198
 
174
 
199
       <div class="NoData" v-show="zones.length <= 1">
175
       <div class="NoData" v-show="zones.length <= 1">
200
-        <img
201
-          style="margin-top: 50px; margin-bottom: 50px"
202
-          src="@/assets/login/data.jpg"
203
-          alt=""
204
-        />
176
+        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
205
       </div>
177
       </div>
206
     </div>
178
     </div>
207
     <!--<div class="NoData" v-show="zones.length <= 1"><img src="@/assets/login/data.jpg" alt=""></div>-->
179
     <!--<div class="NoData" v-show="zones.length <= 1"><img src="@/assets/login/data.jpg" alt=""></div>-->
214
       month-format="{value} "
186
       month-format="{value} "
215
       date-format="{value} "
187
       date-format="{value} "
216
       @confirm="requestSchedualDoctors"
188
       @confirm="requestSchedualDoctors"
217
-    >
218
-    </mt-datetime-picker>
189
+    ></mt-datetime-picker>
219
   </div>
190
   </div>
220
 </template>
191
 </template>
221
 
192
 
475
   top: 63px;
446
   top: 63px;
476
   right: 0;
447
   right: 0;
477
   z-index: 66;
448
   z-index: 66;
478
-  left: 1.58rem;
449
+  left: 0;
479
   background: #fff;
450
   background: #fff;
480
-  @media only screen and (max-width: 812px) {
481
-    top: 43px !important;
451
+  @media only screen and (max-width: 376px) {
452
+    top: 39px !important;
453
+  }
454
+  @media only screen and (min-width: 376px) and (max-width: 737px) {
455
+    top: 45px !important;
482
   }
456
   }
483
   ul {
457
   ul {
484
     @include display-flex;
458
     @include display-flex;
485
     @include align-items-center;
459
     @include align-items-center;
486
     @include text-align;
460
     @include text-align;
487
     @include justify-content-between;
461
     @include justify-content-between;
488
-    width: 70%;
462
+    width: 80%;
489
     margin: 0 auto;
463
     margin: 0 auto;
490
     font-size: 0.32rem;
464
     font-size: 0.32rem;
491
     color: $pgh-color;
465
     color: $pgh-color;
518
   @media only screen and (max-width: 812px) {
492
   @media only screen and (max-width: 812px) {
519
     padding-top: 80px !important;
493
     padding-top: 80px !important;
520
   }
494
   }
495
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
496
+    padding-top: 115px !important;
497
+  }
521
 }
498
 }
522
 </style>
499
 </style>

+ 9 - 2
src/pages/advice/index.vue View File

1
 <template>
1
 <template>
2
   <div class="mainBox">
2
   <div class="mainBox">
3
-    <side-bar :active_index="2"></side-bar>
4
     <div class="mainContent">
3
     <div class="mainContent">
5
       <AdvicePage></AdvicePage>
4
       <AdvicePage></AdvicePage>
6
     </div>
5
     </div>
6
+    <side-bar :active_index="2"></side-bar>
7
   </div>
7
   </div>
8
 </template>
8
 </template>
9
 
9
 
26
   height: 100%;
26
   height: 100%;
27
 }
27
 }
28
 .mainBox {
28
 .mainBox {
29
+  overflow: hidden;
29
   height: 100%;
30
   height: 100%;
30
   font-size: 0.3rem;
31
   font-size: 0.3rem;
32
+  display: flex;
33
+  flex-direction: column;
34
+  > :first-child {
35
+    flex: 1;
36
+    overflow: auto;
37
+  }
31
   .sideColumn {
38
   .sideColumn {
32
     .column {
39
     .column {
33
       .head {
40
       .head {
78
   }
85
   }
79
 }
86
 }
80
 .mainContent {
87
 .mainContent {
81
-  margin: 0 0 0 1.58rem;
88
+  // margin: 0 0 0 1.58rem;
82
 }
89
 }
83
 </style>
90
 </style>

+ 68 - 41
src/pages/layout/SideBar.vue View File

1
 <template>
1
 <template>
2
-    <div class="sideColumn">
3
-      <div class="column">
4
-        <div class="head"><img :src="$store.getters.user.org.org_logo" alt=""></div>
5
-        <ul class="sidebar">
6
-            <li style="position: relative;" :class="active_index == 0 ? 'active' : ''">
7
-                <router-link to="/main"> <span class="iconfont">&#xe6e6;</span><p>记录</p></router-link>
8
-              <span class="redpoint" v-if="total_read_dot">{{total_read_dot > 99?total_read_dot+'+':total_read_dot}}</span>
9
-            </li>
10
-             <li :class="active_index == 1 ? 'active' : ''">
11
-                <router-link to="/monitoring"><span class="iconfont">&#xe6f5;</span><p>监控</p></router-link>
12
-            </li>
13
-             <li :class="active_index == 2 ? 'active' : ''">
14
-                <router-link to="/advice"><span class="iconfont">&#xe6f4;</span><p>医嘱</p></router-link>
15
-            </li>
16
-             <li :class="active_index == 3 ? 'active' : ''">
17
-                <router-link to="/my"><span class="iconfont">&#xe715;</span><p>我的</p></router-link>
18
-            </li>
19
-        </ul>
20
-       </div>
2
+  <div class="sideColumn">
3
+    <div class="column">
4
+      <!-- <div class="head"><img :src="$store.getters.user.org.org_logo" alt=""></div> -->
5
+      <ul class="sidebar">
6
+        <li style="position: relative;" :class="active_index == 0 ? 'active' : ''">
7
+          <router-link to="/main">
8
+            <span class="iconfont">&#xe6e6;</span>
9
+            <p>记录</p>
10
+          </router-link>
11
+          <span
12
+            class="redpoint"
13
+            v-if="total_read_dot"
14
+          >{{total_read_dot > 99?total_read_dot+'+':total_read_dot}}</span>
15
+        </li>
16
+        <li :class="active_index == 1 ? 'active' : ''">
17
+          <router-link to="/monitoring">
18
+            <span class="iconfont">&#xe6f5;</span>
19
+            <p>监控</p>
20
+          </router-link>
21
+        </li>
22
+        <li :class="active_index == 2 ? 'active' : ''">
23
+          <router-link to="/advice">
24
+            <span class="iconfont">&#xe6f4;</span>
25
+            <p>医嘱</p>
26
+          </router-link>
27
+        </li>
28
+        <li :class="active_index == 3 ? 'active' : ''">
29
+          <router-link to="/my">
30
+            <span class="iconfont">&#xe715;</span>
31
+            <p>我的</p>
32
+          </router-link>
33
+        </li>
34
+      </ul>
21
     </div>
35
     </div>
36
+  </div>
22
 </template>
37
 </template>
23
 
38
 
24
 <script>
39
 <script>
29
       type: Number,
44
       type: Number,
30
       default: 0
45
       default: 0
31
     },
46
     },
32
-    total_read_dot:{
47
+    total_read_dot: {
33
       type: Number,
48
       type: Number,
34
       default: 0
49
       default: 0
35
     }
50
     }
38
 </script>
53
 </script>
39
 
54
 
40
 <style style="stylesheet/scss" lang="scss" scoped>
55
 <style style="stylesheet/scss" lang="scss" scoped>
41
-  .redpoint{
42
-  display:inline-block;
43
-  height:20px;
44
-  width:20px;
45
-  line-height:20px;
46
-  text-align:center;
47
-  font-size:0.74em;
48
-  border-radius:20px;
49
-  color:#fff;
50
-  background:#F56C6C;
56
+.redpoint {
57
+  display: inline-block;
58
+  height: 20px;
59
+  width: 20px;
60
+  line-height: 20px;
61
+  text-align: center;
62
+  font-size: 0.74em;
63
+  border-radius: 20px;
64
+  color: #fff;
65
+  background: #f56c6c;
51
   position: absolute;
66
   position: absolute;
52
   top: -5px;
67
   top: -5px;
53
   right: -15px;
68
   right: -15px;
54
-  }
69
+}
55
 .sideColumn {
70
 .sideColumn {
56
-  float: left;
57
-  width: 1.58rem;
71
+  // float: left;
72
+  // width: 1.58rem;
58
   background: #f5f8fb;
73
   background: #f5f8fb;
59
-  height: 100%;
60
-  border-right: 1px  solid rgba(193, 193, 193, 0.8);
61
-  position: fixed;
74
+  // height: 100%;
75
+  // border-right: 1px solid rgba(193, 193, 193, 0.8);
76
+  border-top: 1px solid rgba(193, 193, 193, 0.8);
77
+  // position: fixed;
78
+  height: 50px;
62
   z-index: 999;
79
   z-index: 999;
63
   .column {
80
   .column {
64
     .head {
81
     .head {
68
       @include justify-content-center;
85
       @include justify-content-center;
69
       margin: 0.5rem auto 0.7rem auto;
86
       margin: 0.5rem auto 0.7rem auto;
70
       width: 1rem;
87
       width: 1rem;
71
-        height: 1rem;
72
-        overflow: hidden;
73
-        border-radius: 50%;
88
+      height: 1rem;
89
+      overflow: hidden;
90
+      border-radius: 50%;
74
       img {
91
       img {
75
         width: 100%;
92
         width: 100%;
76
         height: auto;
93
         height: auto;
80
     .sidebar {
97
     .sidebar {
81
       @include display-flex;
98
       @include display-flex;
82
       @include align-items-center;
99
       @include align-items-center;
83
-      @include flex-direction;
100
+      // @include flex-direction;
84
       @include text-align;
101
       @include text-align;
102
+      flex-direction: row;
103
+      justify-content: space-around;
104
+      height: 50px;
105
+
85
       padding: 0;
106
       padding: 0;
86
       li {
107
       li {
87
-        padding: 0 0 0.8rem 0;
108
+        height: 100%;
109
+        display: flex;
110
+        align-items: center;
111
+        // padding: 0 0 0.8rem 0;
88
         a {
112
         a {
89
           color: #a8b3ba;
113
           color: #a8b3ba;
90
           display: inline-block;
114
           display: inline-block;
91
           padding: 0;
115
           padding: 0;
92
           margin: 0;
116
           margin: 0;
117
+          @media only screen and (min-width: 768px) {
118
+            display: flex;
119
+          }
93
           p {
120
           p {
94
             font-size: 0.32rem;
121
             font-size: 0.32rem;
95
             margin-top: 0.05rem;
122
             margin-top: 0.05rem;

+ 116 - 67
src/pages/main/DetailsPage.vue View File

1
 <template>
1
 <template>
2
-    <div class="mainBox">
3
-        <side-bar :active_index="0"></side-bar>
4
-        <div class="mainContent">
5
-            <div class="navigation">
6
-                <div class="goBack">
7
-                    <span class="back" @click="backAction()"><span class="iconfont">&#xe720;</span>返回</span>
8
-                    <el-popover
9
-                      placement="bottom"
10
-                      trigger="click" :disabled="true">
11
-                      <li slot="reference" class="name">{{ patient_name }}</li>
12
-                    </el-popover>
13
-                </div>
14
-                <div class="nav">
15
-                  <ul>
16
-                     <li v-for="(item,i) in ['病历','透析','今日']" :key="i" :class="index == i? 'active':'' " @click="ClickTab(i)" >{{item}}</li>
17
-                  </ul>
18
-                </div>
2
+  <div class="mainBox">
3
+    <div class="mainContent">
4
+      <div class="navigation">
5
+        <div class="goBack">
6
+          <span class="back" @click="backAction()">
7
+            <span class="iconfont">&#xe720;</span>返回
8
+          </span>
9
+          <el-popover placement="bottom" trigger="click" :disabled="true">
10
+            <li slot="reference" class="name">{{ patient_name }}</li>
11
+          </el-popover>
12
+        </div>
13
+        <div class="nav">
14
+          <ul>
15
+            <li
16
+              v-for="(item,i) in ['病历','透析','今日']"
17
+              :key="i"
18
+              :class="index == i? 'active':'' "
19
+              @click="ClickTab(i)"
20
+            >{{item}}</li>
21
+          </ul>
22
+        </div>
19
 
23
 
20
-                <!-- <div @click="openPicker()" class="time">
24
+        <!-- <div @click="openPicker()" class="time">
21
                   {{pickerVisible}}<span class="iconfont">&#xe74a;</span>
25
                   {{pickerVisible}}<span class="iconfont">&#xe74a;</span>
22
-                </div> -->
23
-                <!-- <div class="time" style="width:1.49rem;">
26
+        </div>-->
27
+        <!-- <div class="time" style="width:1.49rem;">
24
                   <span class="iconfont">2018-01-01&#xe74a;</span>
28
                   <span class="iconfont">2018-01-01&#xe74a;</span>
25
-                </div> -->
26
-
27
-              <div class="print" style="float: right;">
28
-                <el-button size="mini" type="primary" @click="print" icon="el-icon-printer">打印</el-button>
29
-              </div>
30
-
31
-            </div>
32
-            <div class="Tab">
33
-              <CaseHistory v-show="index==0" title="病历"></CaseHistory>
34
-              <!--<check-tab v-show="index==1" title="化验单"></check-tab>-->
35
-              <dialysis-tab v-show="index==1" title="透析" v-on:records="jump(val)"></dialysis-tab>
36
-              <today-tab ref="today" v-show="index==2" title="今日" ></today-tab>
37
-            </div>
38
-
29
+        </div>-->
39
 
30
 
31
+        <div class="print" style="float: right; visibility: hidden;">
32
+          <el-button size="mini" type="primary" @click="print" icon="el-icon-printer">打印</el-button>
40
         </div>
33
         </div>
41
-         <!-- <mt-datetime-picker
34
+      </div>
35
+      <div class="Tab">
36
+        <CaseHistory v-show="index==0" title="病历"></CaseHistory>
37
+        <!--<check-tab v-show="index==1" title="化验单"></check-tab>-->
38
+        <dialysis-tab v-show="index==1" title="透析" v-on:records="jump(val)"></dialysis-tab>
39
+        <today-tab ref="today" v-show="index==2" title="今日"></today-tab>
40
+      </div>
41
+    </div>
42
+    <div class="add" @click="print">
43
+      <p>打印预览</p>
44
+    </div>
45
+    <side-bar :active_index="0"></side-bar>
46
+    <!-- <mt-datetime-picker
42
             v-model="pickerVisible"
47
             v-model="pickerVisible"
43
             type="date"
48
             type="date"
44
             ref="picker"
49
             ref="picker"
45
             year-format="{value} "
50
             year-format="{value} "
46
             month-format="{value} "
51
             month-format="{value} "
47
             date-format="{value} ">
52
             date-format="{value} ">
48
-        </mt-datetime-picker> -->
49
-    </div>
53
+    </mt-datetime-picker>-->
54
+  </div>
50
 </template>
55
 </template>
51
 
56
 
52
 <script>
57
 <script>
56
 import RecordsTab from "./records/RecordsTab";
61
 import RecordsTab from "./records/RecordsTab";
57
 import { Popover } from "vux";
62
 import { Popover } from "vux";
58
 import CheckTab from "./dialysis/CheckTab";
63
 import CheckTab from "./dialysis/CheckTab";
59
-import {parseTime} from "@/utils"
60
-import {GetPatientInfoWithDiseases} from "@/api/patient";
61
-import { Toast } from 'vant';
64
+import { parseTime } from "@/utils";
65
+import { GetPatientInfoWithDiseases } from "@/api/patient";
66
+import { Toast } from "vant";
62
 import CaseHistory from "./records/CaseHistory";
67
 import CaseHistory from "./records/CaseHistory";
63
 
68
 
64
 export default {
69
 export default {
70
     TodayTab,
75
     TodayTab,
71
     DialysisTab,
76
     DialysisTab,
72
     RecordsTab,
77
     RecordsTab,
73
-    Popover,
78
+    Popover
74
   },
79
   },
75
   data() {
80
   data() {
76
     return {
81
     return {
79
       patient_name: "",
84
       patient_name: "",
80
       date: 0,
85
       date: 0,
81
       index: 2,
86
       index: 2,
82
-      patient: null,
87
+      patient: null
83
     };
88
     };
84
   },
89
   },
85
   created() {
90
   created() {
100
     },
105
     },
101
     openPicker() {
106
     openPicker() {
102
       this.$refs.picker.open();
107
       this.$refs.picker.open();
103
-    },print:function () {
104
-      var xtdate = parseTime(this.date, "{y}-{m}-{d}")
105
-      if(this.patient != null){
106
-        this.$router.push('/Print?xtdate='+xtdate+'&xtno='+this.patient.dialysis_no);
108
+    },
109
+    print: function() {
110
+      var xtdate = parseTime(this.date, "{y}-{m}-{d}");
111
+      if (this.patient != null) {
112
+        this.$router.push(
113
+          "/Print?xtdate=" + xtdate + "&xtno=" + this.patient.dialysis_no
114
+        );
107
       }
115
       }
108
-    },GetPatientInfoWithDiseases(id) {
109
-      GetPatientInfoWithDiseases(id).then(response=>{
110
-        if (response.data.state==1) {
111
-          this.patient = response.data.data.patient;
112
-        }else {
116
+    },
117
+    GetPatientInfoWithDiseases(id) {
118
+      GetPatientInfoWithDiseases(id)
119
+        .then(response => {
120
+          if (response.data.state == 1) {
121
+            this.patient = response.data.data.patient;
122
+          } else {
123
+            Toast.fail("网络异常");
124
+            return false;
125
+          }
126
+        })
127
+        .catch(() => {
128
+          // on cancel
113
           Toast.fail("网络异常");
129
           Toast.fail("网络异常");
114
           return false;
130
           return false;
115
-        }
116
-      }).catch(() => {
117
-        // on cancel
118
-        Toast.fail("网络异常");
119
-        return false;
120
-      });
121
-    },jump:function (val) {
122
-      this.index = 2
123
-
131
+        });
132
+    },
133
+    jump: function(val) {
134
+      this.index = 2;
124
     }
135
     }
125
   }
136
   }
126
 };
137
 };
127
 </script>
138
 </script>
128
 
139
 
129
 <style style="stylesheet/scss" lang="scss" scoped>
140
 <style style="stylesheet/scss" lang="scss" scoped>
141
+.mainBox {
142
+  display: flex;
143
+  flex-direction: column;
144
+  height: 100%;
145
+  overflow-x: hidden;
146
+  > :first-child {
147
+    flex: 1;
148
+    overflow-x: hidden;
149
+  }
150
+}
130
 .mainContent {
151
 .mainContent {
131
   position: relative;
152
   position: relative;
132
   .navigation {
153
   .navigation {
136
     @include box-sizing;
157
     @include box-sizing;
137
     @include justify-content-between;
158
     @include justify-content-between;
138
     padding: 0.3rem 0.36rem;
159
     padding: 0.3rem 0.36rem;
139
-    border-bottom: 1px #e5e5e5 solid;
160
+    // border-bottom: 1px #e5e5e5 solid;
140
     position: fixed;
161
     position: fixed;
141
     top: 0;
162
     top: 0;
142
-    left:1.58rem;
163
+    left: 0;
143
     right: 0;
164
     right: 0;
144
     z-index: 100;
165
     z-index: 100;
145
-    background: #fff;
146
-
166
+    background: #258ffc;
167
+    .name {
168
+      color: #fff;
169
+    }
147
     .nav {
170
     .nav {
148
       ul {
171
       ul {
149
         li {
172
         li {
154
           line-height: 0.64rem;
177
           line-height: 0.64rem;
155
           padding: 0 0.3rem;
178
           padding: 0 0.3rem;
156
           cursor: pointer;
179
           cursor: pointer;
180
+          color: #fff;
157
           &.active {
181
           &.active {
158
-            background: $main-color;
159
-            color: #fff;
182
+            // background: $main-color;
183
+            background: #fff;
184
+            color: #258ffc;
185
+            // color: #fff;
160
             border-radius: 30px;
186
             border-radius: 30px;
161
           }
187
           }
162
         }
188
         }
173
     padding-top: 63px;
199
     padding-top: 63px;
174
     // padding-bottom: 0.25rem;
200
     // padding-bottom: 0.25rem;
175
     @media only screen and (max-width: 812px) {
201
     @media only screen and (max-width: 812px) {
176
-    padding-top: 42px !important;
202
+      padding-top: 42px !important;
203
+    }
204
+  }
205
+}
206
+.add {
207
+  width: 1.5rem;
208
+  height: 1.5rem;
209
+  background: #f18f68;
210
+  // box-shadow: 0px 3px 9px 0px rgba(7, 30, 102, 0.15);
211
+  border-radius: 50%;
212
+  position: fixed;
213
+  right: 0.6rem;
214
+  bottom: 2.25rem;
215
+  font-size: 0.4rem;
216
+  text-align: center;
217
+  z-index: 99;
218
+  p {
219
+    width: 30px;
220
+    text-align: center;
221
+    margin: 8px auto 0;
222
+    color: #fff;
223
+    @media only screen and (min-width: 768px) {
224
+      width: 40px !important;
225
+      margin: 11px auto 0;
177
     }
226
     }
178
   }
227
   }
179
 }
228
 }

+ 23 - 44
src/pages/main/DialysisArea.vue View File

3
     <div v-loading="loading">
3
     <div v-loading="loading">
4
       <div class="screening">
4
       <div class="screening">
5
         <ul>
5
         <ul>
6
-          <el-popover
7
-            v-model="zone_options_visible"
8
-            placement="bottom"
9
-            trigger="click"
10
-          >
6
+          <el-popover v-model="zone_options_visible" placement="bottom" trigger="click">
11
             <li slot="reference">
7
             <li slot="reference">
12
               {{
8
               {{
13
-                zones.length <= 1 && zone_selected > 0
14
-                  ? "全部分区"
15
-                  : zones[zone_selected].text
9
+              zones.length <= 1 && zone_selected > 0
10
+              ? "全部分区"
11
+              : zones[zone_selected].text
16
               }}
12
               }}
17
-              <span class="iconfont">&#xe74a;</span>
13
+              <span
14
+                class="iconfont"
15
+              >&#xe74a;</span>
18
             </li>
16
             </li>
19
             <div class="popover-demo-content">
17
             <div class="popover-demo-content">
20
               <ul>
18
               <ul>
23
                   :key="zone.value"
21
                   :key="zone.value"
24
                   @click="handleZoneChange(index)"
22
                   @click="handleZoneChange(index)"
25
                   :class="zone_selected == index ? 'tick' : ''"
23
                   :class="zone_selected == index ? 'tick' : ''"
26
-                >
27
-                  {{ zone.text }}
28
-                </li>
24
+                >{{ zone.text }}</li>
29
               </ul>
25
               </ul>
30
             </div>
26
             </div>
31
           </el-popover>
27
           </el-popover>
32
 
28
 
33
-          <el-popover
34
-            v-model="sch_type_options_visible"
35
-            placement="bottom"
36
-            trigger="click"
37
-          >
29
+          <el-popover v-model="sch_type_options_visible" placement="bottom" trigger="click">
38
             <li slot="reference">
30
             <li slot="reference">
39
               {{ schedual_types[schedual_type_selected].text }}
31
               {{ schedual_types[schedual_type_selected].text }}
40
               <span class="iconfont">&#xe74a;</span>
32
               <span class="iconfont">&#xe74a;</span>
48
                   :class="
40
                   :class="
49
                     schedual_type_selected == schedualType.value ? 'tick' : ''
41
                     schedual_type_selected == schedualType.value ? 'tick' : ''
50
                   "
42
                   "
51
-                >
52
-                  {{ schedualType.text }}
53
-                </li>
43
+                >{{ schedualType.text }}</li>
54
               </ul>
44
               </ul>
55
             </div>
45
             </div>
56
           </el-popover>
46
           </el-popover>
64
       <div class="stateBox">
54
       <div class="stateBox">
65
         <div v-for="(item, index) in filtedScheduals" :key="index">
55
         <div v-for="(item, index) in filtedScheduals" :key="index">
66
           <h2 class="title">{{ item.zone_name }}</h2>
56
           <h2 class="title">{{ item.zone_name }}</h2>
67
-          <patient-box
68
-            class="clearfix"
69
-            :patients="item.scheduals"
70
-          ></patient-box>
57
+          <patient-box class="clearfix" :patients="item.scheduals"></patient-box>
71
         </div>
58
         </div>
72
         <div class="NoData" v-if="filtedScheduals.length == 0 && networkStates">
59
         <div class="NoData" v-if="filtedScheduals.length == 0 && networkStates">
73
-          <img
74
-            style="margin-top: 50px; margin-bottom: 50px"
75
-            src="@/assets/login/data.jpg"
76
-            alt
77
-          />
60
+          <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
78
         </div>
61
         </div>
79
-        <div
80
-          class="NoData"
81
-          v-if="!networkStates"
82
-          style="display: block;text-align: center"
83
-        >
84
-          <p style="margin-top: 100px;font-size: 18px">
85
-            网络异常,请点击重新加载
86
-          </p>
62
+        <div class="NoData" v-if="!networkStates" style="display: block;text-align: center">
63
+          <p style="margin-top: 100px;font-size: 18px">网络异常,请点击重新加载</p>
87
 
64
 
88
           <!--<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/no_network.jpg" alt="">-->
65
           <!--<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/no_network.jpg" alt="">-->
89
           <van-button
66
           <van-button
92
             type="info"
69
             type="info"
93
             style="display:block;margin:0 auto"
70
             style="display:block;margin:0 auto"
94
             @click="reloads()"
71
             @click="reloads()"
95
-            >重新加载
96
-          </van-button>
72
+          >重新加载</van-button>
97
         </div>
73
         </div>
98
       </div>
74
       </div>
99
       <mt-datetime-picker
75
       <mt-datetime-picker
378
 .screening {
354
 .screening {
379
   border-bottom: 1px #e5e5e5 solid;
355
   border-bottom: 1px #e5e5e5 solid;
380
   position: fixed;
356
   position: fixed;
381
-  top: 63px;
357
+  top: 122px;
358
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
359
+    top: 130px;
360
+  }
382
   right: 0;
361
   right: 0;
383
   z-index: 66;
362
   z-index: 66;
384
-  left: 1.58rem;
363
+  left: 0;
385
   background: #fff;
364
   background: #fff;
386
-  @media only screen and (max-width: 812px) {
387
-    top: 50px !important;
388
-  }
365
+  // @media only screen and (max-width: 812px) {
366
+  //   top: 50px !important;
367
+  // }
389
   ul {
368
   ul {
390
     @include display-flex;
369
     @include display-flex;
391
     @include align-items-center;
370
     @include align-items-center;

+ 339 - 315
src/pages/main/PatientBox.vue View File

1
 <template>
1
 <template>
2
   <div>
2
   <div>
3
-    <div class="patient" :class="borderColor(patient)" v-for="(patient, index) in patients" :key="index"
4
-         @click="detailAction(patient)">
3
+    <div
4
+      class="patient"
5
+      :class="borderColor(patient)"
6
+      v-for="(patient, index) in patients"
7
+      :key="index"
8
+      @click="detailAction(patient)"
9
+    >
5
       <!-- <router-link :to="{path:'/details',  query: {patient_id: patient.patient_id, date: patient.schedule_date}}"> -->
10
       <!-- <router-link :to="{path:'/details',  query: {patient_id: patient.patient_id, date: patient.schedule_date}}"> -->
6
       <div class="kehu">
11
       <div class="kehu">
7
-
8
         <div style="position: relative;flex:2;" class="tx">
12
         <div style="position: relative;flex:2;" class="tx">
9
-            <img :src="patient.patient.avatar.length > 0 ? patient.patient.avatar : '../../assets/product/test.jpg'"
10
-                 alt="">
11
-            <span class="redpoint" v-if="getStatus(patient)">{{getUnReadNum(patient) > 99?getUnReadNum(patient)+"+":getUnReadNum(patient)}}</span>
13
+          <img
14
+            :src="patient.patient.avatar.length > 0 ? patient.patient.avatar : '../../assets/product/test.jpg'"
15
+            alt
16
+          />
17
+          <span
18
+            class="redpoint"
19
+            v-if="getStatus(patient)"
20
+          >{{getUnReadNum(patient) > 99?getUnReadNum(patient)+"+":getUnReadNum(patient)}}</span>
12
           <div class="right">
21
           <div class="right">
13
-            <h3 class="name">{{patient.patient.name}}<span class="el-icon-bell yztx" v-if="getStatus(patient)"> 医嘱</span> <span class="yc" v-show="isAbnormal(patient)">异常</span></h3>
22
+            <h3 class="name">
23
+              {{patient.patient.name}}
24
+              <span class="el-icon-bell yztx" v-if="getStatus(patient)">医嘱</span>
25
+              <span class="yc" v-show="isAbnormal(patient)">异常</span>
26
+            </h3>
14
             <span class="num">{{ genderText(patient) }} | {{ age(patient) }}岁</span>
27
             <span class="num">{{ genderText(patient) }} | {{ age(patient) }}岁</span>
15
             <!-- 性别、年龄 -->
28
             <!-- 性别、年龄 -->
16
-
17
           </div>
29
           </div>
18
         </div>
30
         </div>
19
         <div class="online" style="flex:1.3;" v-show="computeState(patient) != 4">
31
         <div class="online" style="flex:1.3;" v-show="computeState(patient) != 4">
20
           <p :class="stateColor(patient)">{{stateText(patient)}}</p>
32
           <p :class="stateColor(patient)">{{stateText(patient)}}</p>
21
           <!-- <span class="time">剩余时间 : 90:08</span>     -->
33
           <!-- <span class="time">剩余时间 : 90:08</span>     -->
22
         </div>
34
         </div>
23
-
24
       </div>
35
       </div>
25
       <!-- </router-link> -->
36
       <!-- </router-link> -->
26
       <div class="function" :class="functionColor(patient)">
37
       <div class="function" :class="functionColor(patient)">
27
         <ul>
38
         <ul>
28
-          <li><span class="iconfont">&#xe6f7;</span>班次 : {{timeTypeText(patient)}}</li>
29
-          <li><span class="iconfont">&#xe6de;</span>床位号 : {{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}}</li>
30
-          <li><span class="iconfont">&#xe6f6;</span>透析模式 : {{$store.getters.treatment_mode[patient.mode_id].name}}</li>
39
+          <li>
40
+            <span class="iconfont">&#xe6f7;</span>
41
+            班次 : {{timeTypeText(patient)}}
42
+          </li>
43
+          <li>
44
+            <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}}
46
+          </li>
47
+          <li>
48
+            <span class="iconfont">&#xe6f6;</span>
49
+            透析模式 : {{$store.getters.treatment_mode[patient.mode_id].name}}
50
+          </li>
31
         </ul>
51
         </ul>
32
       </div>
52
       </div>
33
     </div>
53
     </div>
35
 </template>
55
 </template>
36
 
56
 
37
 <script>
57
 <script>
38
-  import {parseTime} from '@/utils'
39
-  import {jsGetAge} from '@/utils/tools'
40
-  import {
41
-    setDialysisOrWaitSelectedConfig
42
-  } from '@/utils/data_config'
43
-  export default {
44
-    name: 'PatientBox',
45
-    props: {
46
-      patients: Array
47
-    },
48
-    data () {
49
-      return {}
50
-    },
51
-    created(){
52
-      console.log("11111")
53
-      console.log(this.patients)
54
-    },
55
-    methods: {
56
-      getUnReadNum: function (schedual) {
57
-        if (schedual.doctor_advice != null) {
58
-          let doctorAdvice = []
59
-          for (let i = 0; i < schedual.doctor_advice.length; i++) {
60
-            if (schedual.doctor_advice[i].execution_state == 2) {
61
-              doctorAdvice.push(schedual.doctor_advice[i])
62
-            }
58
+import { parseTime } from "@/utils";
59
+import { jsGetAge } from "@/utils/tools";
60
+import { setDialysisOrWaitSelectedConfig } from "@/utils/data_config";
61
+export default {
62
+  name: "PatientBox",
63
+  props: {
64
+    patients: Array
65
+  },
66
+  data() {
67
+    return {};
68
+  },
69
+  created() {
70
+    console.log("11111");
71
+    console.log(this.patients);
72
+  },
73
+  methods: {
74
+    getUnReadNum: function(schedual) {
75
+      if (schedual.doctor_advice != null) {
76
+        let doctorAdvice = [];
77
+        for (let i = 0; i < schedual.doctor_advice.length; i++) {
78
+          if (schedual.doctor_advice[i].execution_state == 2) {
79
+            doctorAdvice.push(schedual.doctor_advice[i]);
63
           }
80
           }
64
-          const sorted = this.groupBy(doctorAdvice, function (item) {
65
-            return [item.groupno]
66
-          })
67
-          return sorted.length
68
         }
81
         }
69
-      },
70
-      getStatus: function (schedual) {
71
-        var isShowDot = false
72
-        if (schedual.doctor_advice != null) {
73
-          for (let i = 0; i < schedual.doctor_advice.length; i++) {
74
-            if (schedual.doctor_advice[i].execution_state == 2) {
75
-              isShowDot = true
76
-            }
82
+        const sorted = this.groupBy(doctorAdvice, function(item) {
83
+          return [item.groupno];
84
+        });
85
+        return sorted.length;
86
+      }
87
+    },
88
+    getStatus: function(schedual) {
89
+      var isShowDot = false;
90
+      if (schedual.doctor_advice != null) {
91
+        for (let i = 0; i < schedual.doctor_advice.length; i++) {
92
+          if (schedual.doctor_advice[i].execution_state == 2) {
93
+            isShowDot = true;
77
           }
94
           }
78
-          return isShowDot
79
-
80
-        } else {
81
-          return false
82
-        }
83
-      },
84
-      stateColor: function (schedual) {
85
-        var state = this.computeState(schedual)
86
-        if (state == 1) {
87
-          return 'blue'
88
-        } else if (state == 2) {
89
-          return 'gray'
90
-        } else if (state == 3) {
91
-          return 'red'
92
-        } else {
93
-          return 'blue'
94
-        }
95
-      },
96
-      functionColor: function (schedual) {
97
-        var state = this.computeState(schedual)
98
-        if (state == 1 || state == 3) {
99
-          return 'blue'
100
-        } else if (state == 2) {
101
-          return 'gray'
102
-        } else {
103
-          return 'blue'
104
-        }
105
-      },
106
-      borderColor: function (schedual) {
107
-        var yc = this.isAbnormal(schedual)
108
-        if (yc == true) {
109
-          return 'red'
110
-        } else {
111
-          return 'gray'
112
         }
95
         }
113
-      },
114
-      stateText: function (schedual) {
115
-        var state = this.computeState(schedual)
116
-        if (state == 1) {
117
-          return '已上机'
118
-        } else if (state == 2) {
119
-          return '已下机'
120
-        } else if (state == 3) {
121
-          return '监测中'
122
-        } else {
123
-          // return schedual.patient.gender == 1 ? "男" : "女"
124
-          return '未上机'
125
-        }
126
-      },
127
-      computeState: function (schedual) {
128
-        if (schedual.dialysis_order == null) {
129
-          // 未上机
130
-          return 4
131
-        } else if (schedual.dialysis_order.stage == 2) {
132
-          // 已下机
133
-          return 2
134
-        } else if (
135
-          schedual.dialysis_order.stage == 1 &&
136
-          schedual.monitoring_records != null &&
137
-          schedual.monitoring_records.length > 1
138
-        ) {
139
-          // 监测中
140
-          return 3
141
-        } else {
142
-          return 1
143
-        }
144
-      },
145
-
146
-      orderState: function (schedual) {
147
-        if (schedual.dialysis_order == null) {
148
-          // 未上机
149
-          return 4
150
-        } else if (schedual.dialysis_order.stage == 2) {
151
-          // 已下机
152
-          return 2
153
-        } else if (
154
-          schedual.dialysis_order.stage == 1 &&
155
-          schedual.monitoring_records != null &&
156
-          schedual.monitoring_records.length > 1
157
-        ) {
158
-          // 监测中
159
-          return 3
160
-        } else {
161
-          return 1
162
-        }
163
-      },
164
-      isAbnormal: function (schedual) {
165
-        return false // schedual.yc;
166
-      },
167
-      timeTypeText: function (schedual) {
168
-        if (schedual.schedule_type == 1) {
169
-          return '上午'
170
-        } else if (schedual.schedule_type == 2) {
171
-          return '下午'
172
-        } else {
173
-          return '晚上'
174
-        }
175
-      },
176
-      genderText: function (schedual) {
177
-        if (schedual.patient.gender == 0) {
178
-          return '未知'
179
-        } else if (schedual.patient.gender == 1) {
180
-          return '男'
181
-        } else {
182
-          return '女'
183
-        }
184
-      },
185
-      age: function (schedual) {
186
-        if (schedual.patient.age == 0) {
187
-
188
-          return jsGetAge(parseTime(schedual.patient.birthday, '{y}-{m}-{d}'), '-')
96
+        return isShowDot;
97
+      } else {
98
+        return false;
99
+      }
100
+    },
101
+    stateColor: function(schedual) {
102
+      var state = this.computeState(schedual);
103
+      if (state == 1) {
104
+        return "blue";
105
+      } else if (state == 2) {
106
+        return "gray";
107
+      } else if (state == 3) {
108
+        return "red";
109
+      } else {
110
+        return "blue";
111
+      }
112
+    },
113
+    functionColor: function(schedual) {
114
+      var state = this.computeState(schedual);
115
+      if (state == 1 || state == 3) {
116
+        return "blue";
117
+      } else if (state == 2) {
118
+        return "gray";
119
+      } else {
120
+        return "blue";
121
+      }
122
+    },
123
+    borderColor: function(schedual) {
124
+      var yc = this.isAbnormal(schedual);
125
+      if (yc == true) {
126
+        return "red";
127
+      } else {
128
+        return "gray";
129
+      }
130
+    },
131
+    stateText: function(schedual) {
132
+      var state = this.computeState(schedual);
133
+      if (state == 1) {
134
+        return "已上机";
135
+      } else if (state == 2) {
136
+        return "已下机";
137
+      } else if (state == 3) {
138
+        return "监测中";
139
+      } else {
140
+        // return schedual.patient.gender == 1 ? "男" : "女"
141
+        return "未上机";
142
+      }
143
+    },
144
+    computeState: function(schedual) {
145
+      if (schedual.dialysis_order == null) {
146
+        // 未上机
147
+        return 4;
148
+      } else if (schedual.dialysis_order.stage == 2) {
149
+        // 已下机
150
+        return 2;
151
+      } else if (
152
+        schedual.dialysis_order.stage == 1 &&
153
+        schedual.monitoring_records != null &&
154
+        schedual.monitoring_records.length > 1
155
+      ) {
156
+        // 监测中
157
+        return 3;
158
+      } else {
159
+        return 1;
160
+      }
161
+    },
189
 
162
 
190
-        } else {
163
+    orderState: function(schedual) {
164
+      if (schedual.dialysis_order == null) {
165
+        // 未上机
166
+        return 4;
167
+      } else if (schedual.dialysis_order.stage == 2) {
168
+        // 已下机
169
+        return 2;
170
+      } else if (
171
+        schedual.dialysis_order.stage == 1 &&
172
+        schedual.monitoring_records != null &&
173
+        schedual.monitoring_records.length > 1
174
+      ) {
175
+        // 监测中
176
+        return 3;
177
+      } else {
178
+        return 1;
179
+      }
180
+    },
181
+    isAbnormal: function(schedual) {
182
+      return false; // schedual.yc;
183
+    },
184
+    timeTypeText: function(schedual) {
185
+      if (schedual.schedule_type == 1) {
186
+        return "上午";
187
+      } else if (schedual.schedule_type == 2) {
188
+        return "下午";
189
+      } else {
190
+        return "晚上";
191
+      }
192
+    },
193
+    genderText: function(schedual) {
194
+      if (schedual.patient.gender == 0) {
195
+        return "未知";
196
+      } else if (schedual.patient.gender == 1) {
197
+        return "男";
198
+      } else {
199
+        return "女";
200
+      }
201
+    },
202
+    age: function(schedual) {
203
+      if (schedual.patient.age == 0) {
204
+        return jsGetAge(
205
+          parseTime(schedual.patient.birthday, "{y}-{m}-{d}"),
206
+          "-"
207
+        );
208
+      } else {
209
+        return schedual.patient.age;
210
+      }
191
 
211
 
192
-          return schedual.patient.age
193
-        }
212
+      // var now = new Date();
213
+      // var nowYear = parseTime(now, "{y}");
214
+      // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
215
+      // // console.log(nowYear)
216
+      // // console.log(birthdayYear)
217
+      // return nowYear - birthdayYear;
218
+    },
219
+    groupBy(array, f) {
220
+      const groups = {};
221
+      array.forEach(function(o) {
222
+        const group = JSON.stringify(f(o));
223
+        groups[group] = groups[group] || [];
224
+        groups[group].push(o);
225
+      });
226
+      return Object.keys(groups).map(function(group) {
227
+        return groups[group];
228
+      });
229
+    },
230
+    detailAction: function(schedual) {
231
+      if (schedual.dialysis_order != null) {
232
+        setDialysisOrWaitSelectedConfig(1);
233
+      } else {
234
+        setDialysisOrWaitSelectedConfig(0);
235
+      }
194
 
236
 
195
-        // var now = new Date();
196
-        // var nowYear = parseTime(now, "{y}");
197
-        // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
198
-        // // console.log(nowYear)
199
-        // // console.log(birthdayYear)
200
-        // return nowYear - birthdayYear;
201
-      }, groupBy (array, f) {
202
-        const groups = {}
203
-        array.forEach(function (o) {
204
-          const group = JSON.stringify(f(o))
205
-          groups[group] = groups[group] || []
206
-          groups[group].push(o)
207
-        })
208
-        return Object.keys(groups).map(function (group) {
209
-          return groups[group]
210
-        })
211
-      },
212
-      detailAction: function (schedual) {
213
-        if(schedual.dialysis_order != null){
214
-          setDialysisOrWaitSelectedConfig(1)
215
-        }else{
216
-          setDialysisOrWaitSelectedConfig(0)
237
+      var patient_id = schedual.patient_id;
238
+      var date = schedual.schedule_date;
239
+      this.$router.push({
240
+        path: "/details",
241
+        query: {
242
+          patient_id: patient_id,
243
+          date: date,
244
+          patient_name: schedual.patient.name
217
         }
245
         }
218
-
219
-        var patient_id = schedual.patient_id
220
-        var date = schedual.schedule_date
221
-        this.$router.push({
222
-          path: '/details',
223
-          query: {
224
-            patient_id: patient_id,
225
-            date: date,
226
-            patient_name: schedual.patient.name
227
-          }
228
-        })
229
-      }
246
+      });
230
     }
247
     }
231
   }
248
   }
249
+};
232
 </script>
250
 </script>
233
 
251
 
234
 <style style="stylesheet/scss" lang="scss" scoped>
252
 <style style="stylesheet/scss" lang="scss" scoped>
235
-  .patient {
253
+.patient {
236
   border: 1px #e5e5ee solid;
254
   border: 1px #e5e5ee solid;
237
   padding: 0.33rem 0;
255
   padding: 0.33rem 0;
238
   width: 47%;
256
   width: 47%;
239
   margin: 0 3% 0.5rem 0;
257
   margin: 0 3% 0.5rem 0;
240
   float: left;
258
   float: left;
241
-  .function {
242
-  padding: 0.3rem 0.32rem 0 0.32rem;
243
-  color: #7b8a97;
244
-  ul {
245
-  @include display-flex;
246
-  @include align-items-center;
247
-  @include text-align;
248
-  @include justify-content-between;
249
-  li {
250
-  font-size: 0.3rem;
251
-  @include display-flex;
252
-  @include align-items-center;
253
-  .iconfont {
254
-  margin: 0 0.1rem 0 0;
255
-  font-size: 0.4rem;
256
-  }
257
-  }
259
+  @media only screen and (max-width: 415px) {
260
+    width: 96% !important;
258
   }
261
   }
262
+  .function {
263
+    padding: 0.3rem 0.32rem 0 0.32rem;
264
+    color: #7b8a97;
265
+    ul {
266
+      @include display-flex;
267
+      @include align-items-center;
268
+      @include text-align;
269
+      @include justify-content-between;
270
+      li {
271
+        font-size: 0.3rem;
272
+        @include display-flex;
273
+        @include align-items-center;
274
+        .iconfont {
275
+          margin: 0 0.1rem 0 0;
276
+          font-size: 0.4rem;
277
+        }
278
+      }
279
+    }
259
   }
280
   }
260
   .blue {
281
   .blue {
261
-  color: $main-color;
262
-  .iconfont {
263
-  color: $main-color;
264
-  }
282
+    color: $main-color;
283
+    .iconfont {
284
+      color: $main-color;
285
+    }
265
   }
286
   }
266
   .kehu {
287
   .kehu {
267
-  @include display-flex;
268
-  @include align-items-center;
269
-  @include text-align;
270
-  @include justify-content-between;
271
-  border-bottom: 1px #e5e5e5 solid;
272
-  padding: 0 0 0.3rem 0.32rem;
273
-  .tx {
274
-  @include display-flex;
275
-  @include align-items-center;
276
-  img {
277
-  width: 1rem;
278
-  height: 1rem;
279
-  border-radius: 50%;
280
-  float: left;
281
-  margin: 0 0.3rem 0 0;
288
+    @include display-flex;
289
+    @include align-items-center;
290
+    @include text-align;
291
+    @include justify-content-between;
292
+    border-bottom: 1px #e5e5e5 solid;
293
+    padding: 0 0 0.3rem 0.32rem;
294
+    .tx {
295
+      @include display-flex;
296
+      @include align-items-center;
297
+      img {
298
+        width: 1rem;
299
+        height: 1rem;
300
+        border-radius: 50%;
301
+        float: left;
302
+        margin: 0 0.3rem 0 0;
303
+      }
304
+      .right {
305
+        float: left;
306
+        text-align: left;
307
+        .name {
308
+          font-size: 0.34rem;
309
+          color: $title-color;
310
+          font-weight: 600;
311
+          margin-bottom: 0.1rem;
312
+          .yc {
313
+            background: #ff7979;
314
+            color: #fff;
315
+            height: 0.38rem;
316
+            line-height: 0.38rem;
317
+            font-size: 0.24rem;
318
+            width: 0.74rem;
319
+            border-radius: 4px;
320
+            display: inline-block;
321
+            text-align: center;
322
+            margin-left: 0.13rem;
323
+          }
324
+        }
325
+        .num {
326
+          font-size: 0.3rem;
327
+        }
328
+      }
329
+    }
330
+
331
+    .online {
332
+      text-align: center;
333
+      width: 50%;
334
+      border-left: 1px #e5e5e5 solid;
335
+      p {
336
+        background: #c6cdd2;
337
+        color: #fff;
338
+        width: 1.35rem;
339
+        height: 0.56rem;
340
+        line-height: 0.56rem;
341
+        border-radius: 4px;
342
+        margin: 0 auto;
343
+        font-size: 0.32rem;
344
+      }
345
+      .blue {
346
+        background: $main-color;
347
+      }
348
+      .red {
349
+        background: #f18f68;
350
+      }
351
+      .green {
352
+        background: #5bd18b;
353
+      }
354
+      .gray {
355
+        background: #a8b3ba;
356
+      }
357
+      .lightGray {
358
+        background: #c6cdd2;
359
+      }
360
+      .time {
361
+        font-size: 0.26rem;
362
+        color: #34495e;
363
+      }
364
+    }
282
   }
365
   }
283
-  .right {
284
-  float: left;
285
-  text-align: left;
286
-  .name {
287
-  font-size: 0.34rem;
288
-  color: $title-color;
289
-  font-weight: 600;
290
-  margin-bottom: 0.1rem;
291
-  .yc {
292
-  background: #ff7979;
293
-  color: #fff;
294
-  height: 0.38rem;
295
-  line-height: 0.38rem;
296
-  font-size: 0.24rem;
297
-  width: 0.74rem;
298
-  border-radius: 4px;
366
+}
367
+.red {
368
+  border: 1px #ff7979 solid;
369
+}
370
+.redpoint {
299
   display: inline-block;
371
   display: inline-block;
372
+  height: 20px;
373
+  width: 20px;
374
+  line-height: 18px;
300
   text-align: center;
375
   text-align: center;
301
-  margin-left: 0.13rem;
302
-  }
303
-  }
304
-  .num {
305
-  font-size: 0.3rem;
306
-  }
307
-  }
308
-  }
309
-
310
-  .online {
311
-  text-align: center;
312
-  width: 50%;
313
-  border-left: 1px #e5e5e5 solid;
314
-  p {
315
-  background: #c6cdd2;
376
+  font-size: 0.8em;
377
+  border-radius: 20px;
316
   color: #fff;
378
   color: #fff;
317
-  width: 1.35rem;
318
-  height: 0.56rem;
319
-  line-height: 0.56rem;
320
-  border-radius: 4px;
321
-  margin: 0 auto;
322
-  font-size: 0.32rem;
323
-  }
324
-  .blue {
325
-  background: $main-color;
326
-  }
327
-  .red {
328
-  background: #f18f68;
329
-  }
330
-  .green {
331
-  background: #5bd18b;
332
-  }
333
-  .gray {
334
-  background: #a8b3ba;
335
-  }
336
-  .lightGray {
337
-  background: #c6cdd2;
338
-  }
339
-  .time {
340
-  font-size: 0.26rem;
341
-  color: #34495e;
342
-  }
343
-  }
344
-  }
345
-  }
346
-  .red {
347
-  border: 1px #ff7979 solid;
348
-  }
349
-  .redpoint{
350
-  display:inline-block;
351
-  height:20px;
352
-  width:20px;
353
-  line-height:18px;
354
-  text-align:center;
355
-  font-size:0.8em;
356
-  border-radius:20px;
357
-  color:#fff;
358
-  background:#F56C6C;
379
+  background: #f56c6c;
359
   position: absolute;
380
   position: absolute;
360
   top: -8px;
381
   top: -8px;
361
   left: 0.7rem;
382
   left: 0.7rem;
362
-  border:1px solid #fff;
363
-  }
364
-  .yztx{
365
-    margin: 0 5px;
366
-    padding: 3px 10px;
367
-    background-color: #f56C6C;
368
-    color: #fff;
369
-    border-radius: 15px;
370
-    font-size: 14px;
383
+  border: 1px solid #fff;
384
+}
385
+.yztx {
386
+  margin: 0 5px;
387
+  padding: 3px 10px;
388
+  background-color: #f56c6c;
389
+  color: #fff;
390
+  border-radius: 15px;
391
+  font-size: 14px;
392
+  @media only screen and (max-width: 376px) {
393
+    font-size: 0.34rem !important;
371
   }
394
   }
395
+}
372
 </style>
396
 </style>
373
 
397
 

+ 1 - 1
src/pages/main/Print.vue View File

2458
   }
2458
   }
2459
 
2459
 
2460
   .mainContent {
2460
   .mainContent {
2461
-  margin: 0 0 0 1.58rem;
2461
+  // margin: 0 0 0 1.58rem;
2462
   }
2462
   }
2463
 </style>
2463
 </style>

+ 51 - 24
src/pages/main/PrintIndex.vue View File

1
 <template>
1
 <template>
2
-  <div class="mainBox" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" style="width: 100%;height: 100%">
3
-    <side-bar :active_index="0" v-if="isShow == true"></side-bar>
2
+  <div
3
+    class="mainBox"
4
+    v-loading="loading"
5
+    element-loading-text="加载中"
6
+    element-loading-spinner="el-icon-loading"
7
+    element-loading-background="rgba(0, 0, 0, 0.8)"
8
+    style="width: 100%;height: 100%"
9
+  >
4
     <div class="mainContent">
10
     <div class="mainContent">
5
       <div class="navigation" v-if="isShow == true">
11
       <div class="navigation" v-if="isShow == true">
6
         <div class="goBack">
12
         <div class="goBack">
7
-          <span class="back" @click="backAction()"><span class="iconfont">&#xe720;</span>返回</span>
13
+          <span class="back" @click="backAction()">
14
+            <span class="iconfont">&#xe720;</span>返回
15
+          </span>
8
         </div>
16
         </div>
9
         <!--<div class="print" style="float: right">-->
17
         <!--<div class="print" style="float: right">-->
10
-          <!--&lt;!&ndash;<el-button size="mini" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>&ndash;&gt;-->
18
+        <!--&lt;!&ndash;<el-button size="mini" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>&ndash;&gt;-->
11
         <!--</div>-->
19
         <!--</div>-->
12
       </div>
20
       </div>
13
-      <DialysisPrintOrderOne style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==1"> </DialysisPrintOrderOne>
14
-      <DialysisPrintOrderTwo style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==2||org_template_info.template_id ==0"></DialysisPrintOrderTwo>
15
-      <DialysisPrintOrderFive style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==5"></DialysisPrintOrderFive>
16
-
21
+      <DialysisPrintOrderOne
22
+        style="margin-top:60px;"
23
+        v-bind:childResponse="childResponse"
24
+        v-if="org_template_info.template_id ==1"
25
+      ></DialysisPrintOrderOne>
26
+      <DialysisPrintOrderTwo
27
+        style="margin-top:60px;"
28
+        v-bind:childResponse="childResponse"
29
+        v-if="org_template_info.template_id ==2||org_template_info.template_id ==0"
30
+      ></DialysisPrintOrderTwo>
31
+      <DialysisPrintOrderFive
32
+        style="margin-top:60px;"
33
+        v-bind:childResponse="childResponse"
34
+        v-if="org_template_info.template_id ==5"
35
+      ></DialysisPrintOrderFive>
17
     </div>
36
     </div>
37
+    <side-bar :active_index="0" v-if="isShow == true"></side-bar>
18
   </div>
38
   </div>
19
 </template>
39
 </template>
20
 
40
 
26
 import { jsGetAge, uParseTime } from "@/utils/tools";
46
 import { jsGetAge, uParseTime } from "@/utils/tools";
27
 import { fetchAllAdminUsers } from "@/api/doctor";
47
 import { fetchAllAdminUsers } from "@/api/doctor";
28
 import LabelBox from "./printItem/LabelBox";
48
 import LabelBox from "./printItem/LabelBox";
29
-import DialysisPrintOrderOne from './template/DialysisPrintOrderOne';
30
-import DialysisPrintOrderTwo from './template/DialysisPrintOrderTwo';
31
-import DialysisPrintOrderFive from './template/DialysisPrintOrderFive';
49
+import DialysisPrintOrderOne from "./template/DialysisPrintOrderOne";
50
+import DialysisPrintOrderTwo from "./template/DialysisPrintOrderTwo";
51
+import DialysisPrintOrderFive from "./template/DialysisPrintOrderFive";
32
 
52
 
33
 export default {
53
 export default {
34
   name: "PrintIndex",
54
   name: "PrintIndex",
109
       adminUser: [],
129
       adminUser: [],
110
       receiverTreatmentAccess: {},
130
       receiverTreatmentAccess: {},
111
 
131
 
112
-
113
       AlPanel: {
132
       AlPanel: {
114
         id: 0,
133
         id: 0,
115
         name: "",
134
         name: "",
197
         : "";
216
         : "";
198
     },
217
     },
199
     getDialysisRecord() {
218
     getDialysisRecord() {
200
-      this.loading = true
219
+      this.loading = true;
201
       getPrintDialysisRecord(this.queryParams).then(response => {
220
       getPrintDialysisRecord(this.queryParams).then(response => {
202
-        this.loading = false
221
+        this.loading = false;
203
         if (response.data.state == 1) {
222
         if (response.data.state == 1) {
204
-          this.childResponse = response
205
-          this.org_template_info = response.data.data.org_template_info
223
+          this.childResponse = response;
224
+          this.org_template_info = response.data.data.org_template_info;
206
         } else {
225
         } else {
207
           this.$message.error("请求数据失败");
226
           this.$message.error("请求数据失败");
208
           return false;
227
           return false;
334
   width: 960px;
353
   width: 960px;
335
   margin: 0 auto;
354
   margin: 0 auto;
336
   .order-yy-name {
355
   .order-yy-name {
337
-    margin:10px auto 0 auto;
356
+    margin: 10px auto 0 auto;
338
     text-align: center;
357
     text-align: center;
339
     font-size: 20px;
358
     font-size: 20px;
340
   }
359
   }
425
   height: 100%;
444
   height: 100%;
426
   font-size: 0.3rem;
445
   font-size: 0.3rem;
427
   .sideColumn {
446
   .sideColumn {
428
-    float: left;
429
-    width: 1.58rem;
447
+    // float: left;
448
+    // width: 1.58rem;
430
     background: #f5f8fb;
449
     background: #f5f8fb;
431
-    height: 100%;
432
-    border-right: 1px #c1c1c1 solid;
433
-    position: fixed;
450
+    // height: 100%;
451
+    // border-right: 1px #c1c1c1 solid;
452
+    // position: fixed;
434
     .column {
453
     .column {
435
       // height: 100%;
454
       // height: 100%;
436
       // background: #f5f8fb;
455
       // background: #f5f8fb;
492
   border-bottom: 1px #e5e5e5 solid;
511
   border-bottom: 1px #e5e5e5 solid;
493
   position: fixed;
512
   position: fixed;
494
   top: 0;
513
   top: 0;
495
-  left: 1.58rem;
514
+  left: 0;
496
   right: 0;
515
   right: 0;
497
   z-index: 100;
516
   z-index: 100;
498
   background: #fff;
517
   background: #fff;
542
 }
561
 }
543
 
562
 
544
 .mainContent {
563
 .mainContent {
545
-  margin: 0 0 0 1.58rem;
564
+  // margin: 0 0 0 1.58rem;
565
+}
566
+.mainBox {
567
+  display: flex;
568
+  flex-direction: column;
569
+  > :first-child {
570
+    flex: 1;
571
+    overflow: auto;
572
+  }
546
 }
573
 }
547
 </style>
574
 </style>

+ 207 - 108
src/pages/main/RecordPage.vue View File

1
 <template>
1
 <template>
2
   <div>
2
   <div>
3
-    <van-row class="top_row">
4
-      <van-col :span="9">
5
-        <div>
6
-          <span class="title"> {{ $store.getters.user.org.org_short_name }} </span>
7
-        </div>
8
-      </van-col>
9
-      <van-col :span="6">
3
+    <!-- <van-row class="top_row">
4
+    <van-col :span="14">-->
5
+    <div class="top_row">
6
+      <div class="head">
7
+        <img :src="$store.getters.user.org.org_logo" alt />
8
+      </div>
9
+      <div class="floatLeft">
10
+        <span class="title">{{ $store.getters.user.org.org_short_name }}</span>
11
+      </div>
12
+      <!-- </van-col> -->
13
+      <!-- <van-col :span="6">
10
         <div class="department">
14
         <div class="department">
11
           <ul>
15
           <ul>
12
             <li style="position: relative;" :class="index == 0? 'active':'' " @click="ClickTab(0)">
16
             <li style="position: relative;" :class="index == 0? 'active':'' " @click="ClickTab(0)">
19
             </li>
23
             </li>
20
           </ul>
24
           </ul>
21
         </div>
25
         </div>
22
-      </van-col>
23
-      <van-col :span="9">
24
-        <router-link to="/add_urgent_schedule">
26
+      </van-col>-->
27
+      <!-- <van-col :span="10"> -->
28
+      <!-- <router-link to="/add_urgent_schedule">
25
           <van-button size="small" type="info" class="add_schedule_btn">临时排班</van-button>
29
           <van-button size="small" type="info" class="add_schedule_btn">临时排班</van-button>
26
-        </router-link>
27
-        <div class="search">
28
-          <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" class="field">
29
-            <i class="iconfont" slot="left-icon">&#xe741;</i>
30
-            <van-button slot="button" size="small" type="info" style="border: none;" @click="searchWithKeyword">搜索
31
-            </van-button>
32
-          </van-field>
30
+      </router-link>-->
31
+      <div class="search">
32
+        <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" class="field">
33
+          <i class="iconfont" slot="left-icon">&#xe741;</i>
34
+          <van-button
35
+            slot="button"
36
+            size="small"
37
+            type="info"
38
+            style="border: none;"
39
+            @click="searchWithKeyword"
40
+          >搜索</van-button>
41
+        </van-field>
42
+      </div>
43
+      <!-- </van-col>
44
+      </van-row>-->
45
+      <div class="box">
46
+        <div class="department">
47
+          <ul>
48
+            <li style="position: relative;" :class="index == 0? 'active':'' " @click="ClickTab(0)">
49
+              {{'候诊区'}}
50
+              <span
51
+                class="redpoint"
52
+                v-if="un_read_wait_num"
53
+              >{{un_read_wait_num > 99 ? un_read_wait_num+'+':un_read_wait_num}}</span>
54
+            </li>
55
+            <li style="position: relative;" :class="index == 1? 'active':'' " @click="ClickTab(1)">
56
+              {{'透析区'}}
57
+              <span
58
+                class="redpoint"
59
+                v-if="un_read_dialysis_num"
60
+              >{{un_read_dialysis_num > 99 ? un_read_dialysis_num+'+':un_read_dialysis_num}}</span>
61
+            </li>
62
+          </ul>
33
         </div>
63
         </div>
34
-      </van-col>
35
-    </van-row>
36
-
64
+      </div>
65
+    </div>
37
     <!-- <div class="top">
66
     <!-- <div class="top">
38
         <div class="hospital">
67
         <div class="hospital">
39
           <span class="title"> {{ $store.getters.user.org.org_short_name }} </span>
68
           <span class="title"> {{ $store.getters.user.org.org_short_name }} </span>
50
           </van-field>
79
           </van-field>
51
         </div>
80
         </div>
52
         <van-button size="small" type="info">临时排班</van-button>
81
         <van-button size="small" type="info">临时排班</van-button>
53
-    </div> -->
82
+    </div>-->
54
     <div class="area">
83
     <div class="area">
55
       <waiting-area v-show="index==0" title="候诊区" :search_keyword="search_keyword"></waiting-area>
84
       <waiting-area v-show="index==0" title="候诊区" :search_keyword="search_keyword"></waiting-area>
56
-      <dialysis-area v-show="index==1" title="透析区" :search_keyword="search_keyword"
57
-                     @clear_search_keyword="clearKeyword"></dialysis-area>
85
+      <dialysis-area
86
+        v-show="index==1"
87
+        title="透析区"
88
+        :search_keyword="search_keyword"
89
+        @clear_search_keyword="clearKeyword"
90
+      ></dialysis-area>
58
     </div>
91
     </div>
59
-
92
+    <router-link to="/add_urgent_schedule">
93
+      <div class="add">
94
+        <p>临时排班</p>
95
+      </div>
96
+    </router-link>
60
   </div>
97
   </div>
61
 </template>
98
 </template>
62
 
99
 
63
 
100
 
64
 <script>
101
 <script>
65
-  import DialysisArea from './DialysisArea'
66
-  import WaitingArea from './WaitingArea'
67
-  import {Popover} from 'vux'
68
-  import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
69
-  import {parseTime} from '@/utils/index'
70
-  import {getDialysisOrWaitSelectedConfig} from '@/utils/data_config'
102
+import DialysisArea from "./DialysisArea";
103
+import WaitingArea from "./WaitingArea";
104
+import { Popover } from "vux";
105
+import { getDialysisScheduals, getWaitingScheduals } from "@/api/dialysis";
106
+import { parseTime } from "@/utils/index";
107
+import { getDialysisOrWaitSelectedConfig } from "@/utils/data_config";
71
 
108
 
72
-  export default {
73
-    name: 'RecordPage',
74
-    props: {
75
-      un_read_wait_num: {
76
-        type: Number,
77
-      },
78
-      un_read_dialysis_num: {
79
-        type: Number,
80
-      }
109
+export default {
110
+  name: "RecordPage",
111
+  props: {
112
+    un_read_wait_num: {
113
+      type: Number
81
     },
114
     },
82
-    data () {
83
-      return {
84
-        index: 1,
85
-        search_input: '',
86
-        search_keyword: '',
87
-        scheduals: [],
88
-        advice_groups: [],
89
-        unReadWaitNum: 0,
90
-        unReadDialysisNum: 0,
115
+    un_read_dialysis_num: {
116
+      type: Number
117
+    }
118
+  },
119
+  data() {
120
+    return {
121
+      index: 1,
122
+      search_input: "",
123
+      search_keyword: "",
124
+      scheduals: [],
125
+      advice_groups: [],
126
+      unReadWaitNum: 0,
127
+      unReadDialysisNum: 0
128
+    };
129
+  },
130
+  components: {
131
+    DialysisArea,
132
+    WaitingArea,
133
+    Popover
134
+    // Group,
135
+    // Cell
136
+  },
91
 
137
 
92
-      }
138
+  methods: {
139
+    ClickTab: function(tabIndex) {
140
+      this.index = tabIndex;
93
     },
141
     },
94
-    components: {
95
-      DialysisArea,
96
-      WaitingArea,
97
-      Popover
98
-      // Group,
99
-      // Cell
142
+    searchWithKeyword: function() {
143
+      this.$refs.search_field.blur();
144
+      this.search_keyword = this.search_input;
100
     },
145
     },
101
-
102
-    methods: {
103
-      ClickTab: function (tabIndex) {
104
-        this.index = tabIndex
105
-      },
106
-      searchWithKeyword: function () {
107
-        this.$refs.search_field.blur()
108
-        this.search_keyword = this.search_input
109
-      },
110
-      clearKeyword: function () {
111
-        this.search_input = ''
112
-        this.search_keyword = ''
113
-      },
114
-    }, created () {
115
-      var index = getDialysisOrWaitSelectedConfig()
116
-      console.log(index)
117
-      if (index != null){
118
-        this.index = index
119
-      }
146
+    clearKeyword: function() {
147
+      this.search_input = "";
148
+      this.search_keyword = "";
149
+    }
150
+  },
151
+  created() {
152
+    var index = getDialysisOrWaitSelectedConfig();
153
+    console.log(index);
154
+    if (index != null) {
155
+      this.index = index;
120
     }
156
     }
121
   }
157
   }
158
+};
122
 </script>
159
 </script>
123
 
160
 
124
 <style style="stylesheet/scss" lang="scss" scoped>
161
 <style style="stylesheet/scss" lang="scss" scoped>
125
-  .top_row {
162
+.top_row {
163
+  // height: 50px;
126
   font-size: 0.3rem;
164
   font-size: 0.3rem;
127
   padding: 0.3rem 0.3rem;
165
   padding: 0.3rem 0.3rem;
128
-  border-bottom: 1px #e5e5e5 solid;
129
-  display: flex;
130
-  align-items: center;
166
+  // border-bottom: 1px #e5e5e5 solid;
167
+  // display: flex;
168
+  // align-items: center;
169
+  background: #258ffc;
170
+  .floatLeft {
171
+    float: left;
172
+  }
173
+  .search {
174
+    float: right;
175
+    margin-top: 15px;
131
   }
176
   }
132
-  .title {
177
+}
178
+.title {
133
   font-size: 0.34rem;
179
   font-size: 0.34rem;
134
   font-weight: 600;
180
   font-weight: 600;
181
+  height: 45px;
182
+  line-height: 50px;
183
+  margin-left: 8px;
135
   color: $title-color;
184
   color: $title-color;
136
-  }
137
-  .department {
185
+}
186
+.department {
138
   text-align: center;
187
   text-align: center;
188
+  height: 100%;
139
   ul {
189
   ul {
140
-  li {
141
-  float: left;
142
-  font-size: 0.36rem;
143
-  margin: 0 0.2rem;
144
-  height: 0.64rem;
145
-  line-height: 0.64rem;
146
-  padding: 0 0.3rem;
147
-  color: $title-color;
148
-  &.active {
149
-  background: $main-color;
150
-  color: #fff;
151
-  border-radius: 30px;
152
-  }
153
-  }
154
-  }
190
+    height: 100%;
191
+    display: flex;
192
+    justify-content: space-around;
193
+    align-items: center;
194
+    li {
195
+      float: left;
196
+      font-size: 0.36rem;
197
+      margin: 0 0.2rem;
198
+      height: 0.64rem;
199
+      line-height: 0.64rem;
200
+      padding: 0 0.3rem;
201
+      // color: $title-color;
202
+      color: #fff;
203
+      &.active {
204
+        // background: $main-color;
205
+        background: #ffffff;
206
+        color: #258ffc;
207
+        border-radius: 30px;
208
+      }
209
+    }
155
   }
210
   }
211
+}
156
 
212
 
157
-  .add_schedule_btn {
213
+.add_schedule_btn {
158
   margin-left: 10px;
214
   margin-left: 10px;
159
   float: right;
215
   float: right;
160
   background-color: #ff7978;
216
   background-color: #ff7978;
161
   border: none;
217
   border: none;
162
-  }
218
+}
163
 
219
 
164
-  .redpoint{
165
-  display:inline-block;
166
-  height:20px;
167
-  width:20px;
168
-  line-height:18px;
169
-  text-align:center;
170
-  font-size:0.8em;
171
-  border-radius:20px;
172
-  color:#fff;
173
-  background:#F56C6C;
220
+.redpoint {
221
+  display: inline-block;
222
+  height: 20px;
223
+  width: 20px;
224
+  line-height: 18px;
225
+  text-align: center;
226
+  font-size: 0.8em;
227
+  border-radius: 20px;
228
+  color: #fff;
229
+  background: #f56c6c;
174
   position: absolute;
230
   position: absolute;
175
   top: -8px;
231
   top: -8px;
176
   right: -8px;
232
   right: -8px;
177
   border: 1px solid #fff;
233
   border: 1px solid #fff;
234
+}
235
+.box {
236
+  height: 50px;
237
+  margin-top: 50px;
238
+  background: #258ffc;
239
+}
240
+.head {
241
+  width: 45px;
242
+  height: 45px;
243
+  border-radius: 50%;
244
+  margin-top: 3px;
245
+  display: inline-block;
246
+  float: left;
247
+  img {
248
+    width: 100%;
249
+    height: 100%;
250
+    border-radius: 50%;
251
+  }
252
+}
253
+.add {
254
+  width: 1.5rem;
255
+  height: 1.5rem;
256
+  background: #f66c6c;
257
+  // box-shadow: 0px 3px 9px 0px rgba(7, 30, 102, 0.15);
258
+  border-radius: 50%;
259
+  position: fixed;
260
+  right: 0.6rem;
261
+  bottom: 2.25rem;
262
+  font-size: 0.4rem;
263
+  text-align: center;
264
+  p {
265
+    width: 30px;
266
+    text-align: center;
267
+    margin: 8px auto 0;
268
+    color: #fff;
269
+    @media only screen and (min-width: 415px) and (max-width: 668px) {
270
+      width: 40px;
271
+    }
272
+    @media only screen and (min-width: 768px) and (max-width: 1024px) {
273
+      width: 40px;
274
+      margin: 10px auto 0;
275
+    }
178
   }
276
   }
277
+}
179
 </style>
278
 </style>
180
 
279
 

+ 24 - 47
src/pages/main/WaitingArea.vue View File

9
             :class="select_index == i ? 'active' : ''"
9
             :class="select_index == i ? 'active' : ''"
10
             @click="menuTabClick(i)"
10
             @click="menuTabClick(i)"
11
             :key="i"
11
             :key="i"
12
-          >
13
-            {{ item.label + (item.count > 0 ? "(" + item.count + ")" : "") }}
14
-          </li>
12
+          >{{ item.label + (item.count > 0 ? "(" + item.count + ")" : "") }}</li>
15
 
13
 
16
-          <el-popover
17
-            v-model="zone_options_visible"
18
-            placement="bottom"
19
-            trigger="click"
20
-          >
14
+          <el-popover v-model="zone_options_visible" placement="bottom" trigger="click">
21
             <li slot="reference">
15
             <li slot="reference">
22
               {{ zone_options[zone_selected].text
16
               {{ zone_options[zone_selected].text
23
-              }}<span class="iconfont">&#xe74a;</span>
17
+              }}
18
+              <span class="iconfont">&#xe74a;</span>
24
             </li>
19
             </li>
25
             <div class="popover-demo-content">
20
             <div class="popover-demo-content">
26
               <ul>
21
               <ul>
29
                   :key="index"
24
                   :key="index"
30
                   @click="handleZoneChange(index)"
25
                   @click="handleZoneChange(index)"
31
                   :class="zone_selected == index ? 'tick' : ''"
26
                   :class="zone_selected == index ? 'tick' : ''"
32
-                >
33
-                  {{ option.text }}
34
-                </li>
27
+                >{{ option.text }}</li>
35
               </ul>
28
               </ul>
36
             </div>
29
             </div>
37
           </el-popover>
30
           </el-popover>
38
 
31
 
39
-          <el-popover
40
-            v-model="time_options_visible"
41
-            placement="bottom"
42
-            trigger="click"
43
-          >
32
+          <el-popover v-model="time_options_visible" placement="bottom" trigger="click">
44
             <li slot="reference">
33
             <li slot="reference">
45
               {{ time_options[time_selected].text
34
               {{ time_options[time_selected].text
46
-              }}<span class="iconfont">&#xe74a;</span>
35
+              }}
36
+              <span class="iconfont">&#xe74a;</span>
47
             </li>
37
             </li>
48
             <div class="popover-demo-content">
38
             <div class="popover-demo-content">
49
               <ul>
39
               <ul>
52
                   :key="index"
42
                   :key="index"
53
                   @click="handleTimeChange(index)"
43
                   @click="handleTimeChange(index)"
54
                   :class="time_selected == index ? 'tick' : ''"
44
                   :class="time_selected == index ? 'tick' : ''"
55
-                >
56
-                  {{ option.text }}
57
-                </li>
45
+                >{{ option.text }}</li>
58
               </ul>
46
               </ul>
59
             </div>
47
             </div>
60
           </el-popover>
48
           </el-popover>
61
         </ul>
49
         </ul>
62
       </div>
50
       </div>
63
-      <div class="stateBox ">
51
+      <div class="stateBox">
64
         <!-- <patient-box class="clearfix" :patients="filtedScheduals "></patient-box> -->
52
         <!-- <patient-box class="clearfix" :patients="filtedScheduals "></patient-box> -->
65
         <div v-for="(item, index) in filtedScheduals" :key="index">
53
         <div v-for="(item, index) in filtedScheduals" :key="index">
66
           <h2 class="title">{{ item.zone_name }}</h2>
54
           <h2 class="title">{{ item.zone_name }}</h2>
67
-          <patient-box
68
-            class="clearfix"
69
-            :patients="item.scheduals"
70
-          ></patient-box>
55
+          <patient-box class="clearfix" :patients="item.scheduals"></patient-box>
71
         </div>
56
         </div>
72
         <div class="NoData" v-if="filtedScheduals.length == 0 && networkStates">
57
         <div class="NoData" v-if="filtedScheduals.length == 0 && networkStates">
73
-          <img
74
-            style="margin-top: 50px; margin-bottom: 50px"
75
-            src="@/assets/login/data.jpg"
76
-            alt=""
77
-          />
58
+          <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
78
         </div>
59
         </div>
79
 
60
 
80
-        <div
81
-          class="NoData"
82
-          v-if="!networkStates"
83
-          style="display: block;text-align: center;"
84
-        >
61
+        <div class="NoData" v-if="!networkStates" style="display: block;text-align: center;">
85
           <!--<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/no_network.jpg" alt="">-->
62
           <!--<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/no_network.jpg" alt="">-->
86
-          <p style="margin-top: 100px;font-size: 18px">
87
-            网络异常,请点击重新加载
88
-          </p>
63
+          <p style="margin-top: 100px;font-size: 18px">网络异常,请点击重新加载</p>
89
           <van-button
64
           <van-button
90
             slot="button"
65
             slot="button"
91
             size="normal"
66
             size="normal"
92
             type="info"
67
             type="info"
93
             style="display:block;margin:0 auto"
68
             style="display:block;margin:0 auto"
94
             @click="reloads()"
69
             @click="reloads()"
95
-            >重新加载
96
-          </van-button>
70
+          >重新加载</van-button>
97
         </div>
71
         </div>
98
       </div>
72
       </div>
99
     </div>
73
     </div>
467
 .screening {
441
 .screening {
468
   border-bottom: 1px #e5e5e5 solid;
442
   border-bottom: 1px #e5e5e5 solid;
469
   position: fixed;
443
   position: fixed;
470
-  top: 63px;
444
+  top: 122px;
445
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
446
+    top: 130px;
447
+  }
471
   right: 0;
448
   right: 0;
472
   z-index: 66;
449
   z-index: 66;
473
-  left: 1.58rem;
450
+  left: 0;
474
   background: #fff;
451
   background: #fff;
475
-  @media only screen and (max-width: 812px) {
476
-    top: 50px !important;
477
-  }
452
+  // @media only screen and (max-width: 812px) {
453
+  //   top: 50px !important;
454
+  // }
478
   ul {
455
   ul {
479
     @include display-flex;
456
     @include display-flex;
480
     @include align-items-center;
457
     @include align-items-center;
481
     @include text-align;
458
     @include text-align;
482
     @include justify-content-between;
459
     @include justify-content-between;
483
-    width: 60%;
460
+    width: 82%;
484
     margin: 0 auto;
461
     margin: 0 auto;
485
     font-size: 0.32rem;
462
     font-size: 0.32rem;
486
     color: $title-color;
463
     color: $title-color;

+ 35 - 36
src/pages/main/add_urgent_schedule.vue View File

1
 <template>
1
 <template>
2
   <div class="mainBox">
2
   <div class="mainBox">
3
-    <side-bar :active_index="0"></side-bar>
4
     <div class="mainContent">
3
     <div class="mainContent">
5
       <div class="navigation">
4
       <div class="navigation">
6
         <div class="goBack">
5
         <div class="goBack">
7
-          <span class="back" @click="$router.back(-1)"
8
-            ><span class="iconfont">&#xe720;</span>返回</span
9
-          >
6
+          <span class="back" @click="$router.back(-1)">
7
+            <span class="iconfont">&#xe720;</span>返回
8
+          </span>
10
         </div>
9
         </div>
11
         <div class="nav">
10
         <div class="nav">
12
           <span>临时排班</span>
11
           <span>临时排班</span>
22
           </van-col>
21
           </van-col>
23
         </van-row>
22
         </van-row>
24
         <van-row class="row">
23
         <van-row class="row">
25
-          <van-col :span="9">
24
+          <van-col :span="12">
26
             <span class="title">日期:</span>
25
             <span class="title">日期:</span>
27
             <div class="field_panel">
26
             <div class="field_panel">
28
               <van-field v-model="date" class="field"></van-field>
27
               <van-field v-model="date" class="field"></van-field>
30
           </van-col>
29
           </van-col>
31
         </van-row>
30
         </van-row>
32
         <van-row class="row">
31
         <van-row class="row">
33
-          <van-col :span="9">
32
+          <van-col :span="12">
34
             <span class="title">患者:</span>
33
             <span class="title">患者:</span>
35
             <div class="field_panel">
34
             <div class="field_panel">
36
               <van-field
35
               <van-field
54
                 placeholder="请输入病人名字"
53
                 placeholder="请输入病人名字"
55
                 @select="handleSelect"
54
                 @select="handleSelect"
56
               >
55
               >
57
-                <i class="el-icon-search el-input__icon" slot="suffix"> </i>
56
+                <i class="el-icon-search el-input__icon" slot="suffix"></i>
58
                 <template slot-scope="{ item }">
57
                 <template slot-scope="{ item }">
59
                   <div class="name">{{ item.name }}</div>
58
                   <div class="name">{{ item.name }}</div>
60
                 </template>
59
                 </template>
63
           </van-col>
62
           </van-col>
64
         </van-row>
63
         </van-row>
65
         <van-row class="row">
64
         <van-row class="row">
66
-          <van-col :span="9">
65
+          <van-col :span="12">
67
             <span class="title">班次:</span>
66
             <span class="title">班次:</span>
68
             <div class="field_panel">
67
             <div class="field_panel">
69
               <van-field
68
               <van-field
76
             </div>
75
             </div>
77
           </van-col>
76
           </van-col>
78
 
77
 
79
-          <van-col :span="9">
78
+          <van-col :span="12">
80
             <span class="title">治疗模式:</span>
79
             <span class="title">治疗模式:</span>
81
             <div class="field_panel">
80
             <div class="field_panel">
82
               <van-field
81
               <van-field
88
               ></van-field>
87
               ></van-field>
89
             </div>
88
             </div>
90
           </van-col>
89
           </van-col>
91
-          <van-col :span="9">
90
+          <van-col :span="12">
92
             <span class="title">床位:</span>
91
             <span class="title">床位:</span>
93
             <div class="field_panel">
92
             <div class="field_panel">
94
               <van-field
93
               <van-field
105
           <van-col :span="24">
104
           <van-col :span="24">
106
             <span class="title">&nbsp;</span>
105
             <span class="title">&nbsp;</span>
107
             <div class="field_panel">
106
             <div class="field_panel">
108
-              <van-button type="info" size="normal" @click="submitAction"
109
-                >立即排班</van-button
110
-              >
107
+              <van-button type="info" size="normal" @click="submitAction">立即排班</van-button>
111
             </div>
108
             </div>
112
           </van-col>
109
           </van-col>
113
         </van-row>
110
         </van-row>
114
       </div>
111
       </div>
115
     </div>
112
     </div>
116
-
113
+    <side-bar :active_index="0"></side-bar>
117
     <van-popup v-model="show_patient_picker" position="bottom" class="popup">
114
     <van-popup v-model="show_patient_picker" position="bottom" class="popup">
118
-      <van-picker
119
-        :columns="patients"
120
-        value-key="name"
121
-        @change="didChangePatient"
122
-      ></van-picker>
115
+      <van-picker :columns="patients" value-key="name" @change="didChangePatient"></van-picker>
123
     </van-popup>
116
     </van-popup>
124
     <van-popup v-model="show_mode_picker" position="bottom" class="popup">
117
     <van-popup v-model="show_mode_picker" position="bottom" class="popup">
125
-      <van-picker
126
-        :columns="modes"
127
-        value-key="name"
128
-        @change="didChangeMode"
129
-      ></van-picker>
118
+      <van-picker :columns="modes" value-key="name" @change="didChangeMode"></van-picker>
130
     </van-popup>
119
     </van-popup>
131
     <van-popup v-model="show_bed_picker" position="bottom" class="popup">
120
     <van-popup v-model="show_bed_picker" position="bottom" class="popup">
132
-      <van-picker
133
-        :columns="zone_device_options"
134
-        value-key="number"
135
-        @change="didChangeBed"
136
-      ></van-picker>
121
+      <van-picker :columns="zone_device_options" value-key="number" @change="didChangeBed"></van-picker>
137
     </van-popup>
122
     </van-popup>
138
     <van-popup v-model="show_sch_type_picker" position="bottom" class="popup">
123
     <van-popup v-model="show_sch_type_picker" position="bottom" class="popup">
139
-      <van-picker
140
-        :columns="schedule_types"
141
-        value-key="text"
142
-        @change="didChangeSchType"
143
-      ></van-picker>
124
+      <van-picker :columns="schedule_types" value-key="text" @change="didChangeSchType"></van-picker>
144
     </van-popup>
125
     </van-popup>
145
   </div>
126
   </div>
146
 </template>
127
 </template>
522
     border-bottom: 1px #e5e5e5 solid;
503
     border-bottom: 1px #e5e5e5 solid;
523
     position: fixed;
504
     position: fixed;
524
     top: 0;
505
     top: 0;
525
-    left: 1.58rem;
506
+    left: 0;
526
     right: 0;
507
     right: 0;
527
     z-index: 100;
508
     z-index: 100;
528
     background: #fff;
509
     background: #fff;
539
     .nav {
520
     .nav {
540
       text-align: center;
521
       text-align: center;
541
       font-size: 0.36rem;
522
       font-size: 0.36rem;
523
+      margin-right: 56px;
542
     }
524
     }
543
   }
525
   }
544
 
526
 
547
     min-height: calc(100vh - 2px);
529
     min-height: calc(100vh - 2px);
548
     padding-top: 55px;
530
     padding-top: 55px;
549
     padding-left: 20px;
531
     padding-left: 20px;
532
+
550
     .row {
533
     .row {
551
       padding: 5px 0;
534
       padding: 5px 0;
552
       .title {
535
       .title {
557
         line-height: 45px;
540
         line-height: 45px;
558
         width: 80px;
541
         width: 80px;
559
         float: left;
542
         float: left;
560
-        @media only screen and (max-width: 812px) {
543
+        // @media only screen and (max-width: 812px) {
544
+        //   font-size: 0.3rem !important;
545
+        // }
546
+        @media only screen and (max-width: 376px) {
547
+          width: 50px !important;
561
           font-size: 0.3rem !important;
548
           font-size: 0.3rem !important;
562
         }
549
         }
563
       }
550
       }
585
         line-height: 40px;
572
         line-height: 40px;
586
         text-align: center;
573
         text-align: center;
587
         color: red;
574
         color: red;
575
+        @media only screen and (max-width: 812px) {
576
+          margin-left: -10px !important;
577
+        }
588
       }
578
       }
589
     }
579
     }
590
   }
580
   }
593
   border-radius: 0 !important;
583
   border-radius: 0 !important;
594
   top: initial !important;
584
   top: initial !important;
595
 }
585
 }
586
+.mainBox {
587
+  display: flex;
588
+  height: 100%;
589
+  flex-direction: column;
590
+  > :first-child {
591
+    overflow: auto;
592
+    flex: 1;
593
+  }
594
+}
596
 </style>
595
 </style>

+ 119 - 48
src/pages/main/dialog/LongDialog.vue View File

1
 <template>
1
 <template>
2
   <div>
2
   <div>
3
-    <div class="Dialog"  v-show="showObj.paden_show">
3
+    <div class="Dialog" v-show="showObj.paden_show">
4
       <div class="DialogTit">
4
       <div class="DialogTit">
5
-        <span class="iconfont"  @click="$emit('closeLongDialog')">&#xe6e9;</span>
5
+        <span class="iconfont" @click="$emit('closeLongDialog')">&#xe6e9;</span>
6
         <h1 class="name">长期处方</h1>
6
         <h1 class="name">长期处方</h1>
7
         <span @click="submitSolution" class="success">完成</span>
7
         <span @click="submitSolution" class="success">完成</span>
8
       </div>
8
       </div>
10
       <div class="DialogContent">
10
       <div class="DialogContent">
11
         <div class="item" @click="showMenu(0)">
11
         <div class="item" @click="showMenu(0)">
12
           <h2 class="name">透析模式</h2>
12
           <h2 class="name">透析模式</h2>
13
-          <div class="content" >
13
+          <div class="content">
14
             <span class="text">{{dialysisSolution.mode_name}}</span>
14
             <span class="text">{{dialysisSolution.mode_name}}</span>
15
             <span class="iconfont">&#xe6f9;</span>
15
             <span class="iconfont">&#xe6f9;</span>
16
           </div>
16
           </div>
18
         <div class="item">
18
         <div class="item">
19
           <h2 class="name">透析时长(h)</h2>
19
           <h2 class="name">透析时长(h)</h2>
20
           <div class="content">
20
           <div class="content">
21
-            <input type="number" v-model="dialysisSolution.dialysis_duration">
21
+            <input type="number" v-model="dialysisSolution.dialysis_duration" />
22
             <!-- <span class="text">1</span>   -->
22
             <!-- <span class="text">1</span>   -->
23
             <!-- <span class="iconfont">&#xe6f9;</span>  -->
23
             <!-- <span class="iconfont">&#xe6f9;</span>  -->
24
           </div>
24
           </div>
25
         </div>
25
         </div>
26
         <div class="item" @click="showMenu(1)">
26
         <div class="item" @click="showMenu(1)">
27
           <h2 class="name">透析器</h2>
27
           <h2 class="name">透析器</h2>
28
-          <div class="content" >
28
+          <div class="content">
29
             <span class="text">{{dialysisSolution.hemodialysis_machine_name}}</span>
29
             <span class="text">{{dialysisSolution.hemodialysis_machine_name}}</span>
30
             <span class="iconfont">&#xe6f9;</span>
30
             <span class="iconfont">&#xe6f9;</span>
31
           </div>
31
           </div>
41
         <div class="item">
41
         <div class="item">
42
           <h2 class="name">血流量(ml/min)</h2>
42
           <h2 class="name">血流量(ml/min)</h2>
43
           <div class="content">
43
           <div class="content">
44
-            <input type="number" v-model="dialysisSolution.blood_flow_volume">
44
+            <input type="number" v-model="dialysisSolution.blood_flow_volume" />
45
             <!-- <span class="text">HD</span>   -->
45
             <!-- <span class="text">HD</span>   -->
46
             <!-- <span class="iconfont">&#xe6f9;</span> -->
46
             <!-- <span class="iconfont">&#xe6f9;</span> -->
47
           </div>
47
           </div>
49
         <div class="item">
49
         <div class="item">
50
           <h2 class="name">脱水量(L)</h2>
50
           <h2 class="name">脱水量(L)</h2>
51
           <div class="content">
51
           <div class="content">
52
-            <input type="number" v-model="dialysisSolution.dewater">
52
+            <input type="number" v-model="dialysisSolution.dewater" />
53
             <!-- <span class="text">HD</span>   -->
53
             <!-- <span class="text">HD</span>   -->
54
             <!-- <span class="iconfont">&#xe6f9;</span> -->
54
             <!-- <span class="iconfont">&#xe6f9;</span> -->
55
           </div>
55
           </div>
60
         <div class="item">
60
         <div class="item">
61
           <h2 class="name">置换液(L)</h2>
61
           <h2 class="name">置换液(L)</h2>
62
           <div class="content">
62
           <div class="content">
63
-            <input type="number" v-model="dialysisSolution.displace_liqui">
63
+            <input type="number" v-model="dialysisSolution.displace_liqui" />
64
             <!-- <span class="text">HD</span>   -->
64
             <!-- <span class="text">HD</span>   -->
65
             <!-- <span class="iconfont">&#xe6f9;</span> -->
65
             <!-- <span class="iconfont">&#xe6f9;</span> -->
66
           </div>
66
           </div>
83
         <div class="item" v-show="anticoagulant.shouji != -1">
83
         <div class="item" v-show="anticoagulant.shouji != -1">
84
           <h2 class="name">首剂({{anticoagulant.shouji_unit}})</h2>
84
           <h2 class="name">首剂({{anticoagulant.shouji_unit}})</h2>
85
           <div class="content">
85
           <div class="content">
86
-          <input type="text"  v-model="dialysisSolution.anticoagulant_shouji" :disabled="anticoagulant.shouji==1?false:true">
86
+            <input
87
+              type="text"
88
+              v-model="dialysisSolution.anticoagulant_shouji"
89
+              :disabled="anticoagulant.shouji==1?false:true"
90
+            />
87
           </div>
91
           </div>
88
         </div>
92
         </div>
89
         <div class="item" v-show="anticoagulant.weichi != -1">
93
         <div class="item" v-show="anticoagulant.weichi != -1">
90
           <h2 class="name">维持({{anticoagulant.weichi_unit}})</h2>
94
           <h2 class="name">维持({{anticoagulant.weichi_unit}})</h2>
91
           <div class="content">
95
           <div class="content">
92
-          <input type="text"  v-model="dialysisSolution.anticoagulant_weichi" :disabled="anticoagulant.weichi==1?false:true">
96
+            <input
97
+              type="text"
98
+              v-model="dialysisSolution.anticoagulant_weichi"
99
+              :disabled="anticoagulant.weichi==1?false:true"
100
+            />
93
           </div>
101
           </div>
94
         </div>
102
         </div>
95
-        <div class="item"  v-show="anticoagulant.zongliang != -1">
103
+        <div class="item" v-show="anticoagulant.zongliang != -1">
96
           <h2 class="name">总量({{anticoagulant.zongliang_unit}})</h2>
104
           <h2 class="name">总量({{anticoagulant.zongliang_unit}})</h2>
97
           <div class="content">
105
           <div class="content">
98
-          <input type="text" v-model="dialysisSolution.anticoagulant_zongliang" :disabled="anticoagulant.zongliang==1?false:true" >
106
+            <input
107
+              type="text"
108
+              v-model="dialysisSolution.anticoagulant_zongliang"
109
+              :disabled="anticoagulant.zongliang==1?false:true"
110
+            />
99
           </div>
111
           </div>
100
         </div>
112
         </div>
101
-        <div class="item"  v-show="anticoagulant.gaimingcheng != -1">
113
+        <div class="item" v-show="anticoagulant.gaimingcheng != -1">
102
           <h2 class="name">钙({{anticoagulant.gaimingcheng_unit}})</h2>
114
           <h2 class="name">钙({{anticoagulant.gaimingcheng_unit}})</h2>
103
           <div class="content">
115
           <div class="content">
104
-            <input type="text" v-model="dialysisSolution.anticoagulant_gaimingcheng" :disabled="anticoagulant.gaimingcheng==1?false:true" >
116
+            <input
117
+              type="text"
118
+              v-model="dialysisSolution.anticoagulant_gaimingcheng"
119
+              :disabled="anticoagulant.gaimingcheng==1?false:true"
120
+            />
105
           </div>
121
           </div>
106
         </div>
122
         </div>
107
-        <div class="item"  v-show="anticoagulant.gaijiliang != -1">
123
+        <div class="item" v-show="anticoagulant.gaijiliang != -1">
108
           <h2 class="name">钙剂量</h2>
124
           <h2 class="name">钙剂量</h2>
109
           <div class="content">
125
           <div class="content">
110
-            <input type="text" v-model="dialysisSolution.anticoagulant_gaijiliang" :disabled="anticoagulant.gaijiliang==1?false:true" >
126
+            <input
127
+              type="text"
128
+              v-model="dialysisSolution.anticoagulant_gaijiliang"
129
+              :disabled="anticoagulant.gaijiliang==1?false:true"
130
+            />
111
           </div>
131
           </div>
112
         </div>
132
         </div>
113
 
133
 
116
         <div class="item">
136
         <div class="item">
117
           <h2 class="name">钾(mmol/L)</h2>
137
           <h2 class="name">钾(mmol/L)</h2>
118
           <div class="content">
138
           <div class="content">
119
-            <input type="number" v-model="dialysisSolution.kalium">
139
+            <input type="number" v-model="dialysisSolution.kalium" />
120
             <!-- <span class="text">HD</span>   -->
140
             <!-- <span class="text">HD</span>   -->
121
             <!-- <span class="iconfont">&#xe6f9;</span> -->
141
             <!-- <span class="iconfont">&#xe6f9;</span> -->
122
           </div>
142
           </div>
124
         <div class="item">
144
         <div class="item">
125
           <h2 class="name">钠(mmol/L):</h2>
145
           <h2 class="name">钠(mmol/L):</h2>
126
           <div class="content">
146
           <div class="content">
127
-            <input type="number" v-model="dialysisSolution.sodium">
147
+            <input type="number" v-model="dialysisSolution.sodium" />
128
             <!-- <span class="text">HD</span>   -->
148
             <!-- <span class="text">HD</span>   -->
129
             <!-- <span class="iconfont">&#xe6f9;</span> -->
149
             <!-- <span class="iconfont">&#xe6f9;</span> -->
130
           </div>
150
           </div>
132
         <div class="item">
152
         <div class="item">
133
           <h2 class="name">钙(mmol/L)</h2>
153
           <h2 class="name">钙(mmol/L)</h2>
134
           <div class="content">
154
           <div class="content">
135
-            <input type="number" v-model="dialysisSolution.calcium">
155
+            <input type="number" v-model="dialysisSolution.calcium" />
136
             <!-- <span class="text">HD</span>   -->
156
             <!-- <span class="text">HD</span>   -->
137
             <!-- <span class="iconfont">&#xe6f9;</span> -->
157
             <!-- <span class="iconfont">&#xe6f9;</span> -->
138
           </div>
158
           </div>
140
         <div class="item">
160
         <div class="item">
141
           <h2 class="name">碳酸氢盐(mmol/L)</h2>
161
           <h2 class="name">碳酸氢盐(mmol/L)</h2>
142
           <div class="content">
162
           <div class="content">
143
-            <input type="number" v-model="dialysisSolution.bicarbonate">
163
+            <input type="number" v-model="dialysisSolution.bicarbonate" />
144
             <!-- <span class="text">HD</span>   -->
164
             <!-- <span class="text">HD</span>   -->
145
             <!-- <span class="iconfont">&#xe6f9;</span> -->
165
             <!-- <span class="iconfont">&#xe6f9;</span> -->
146
           </div>
166
           </div>
148
         <div class="item">
168
         <div class="item">
149
           <h2 class="name">葡萄糖(mmol/L)</h2>
169
           <h2 class="name">葡萄糖(mmol/L)</h2>
150
           <div class="content">
170
           <div class="content">
151
-            <input type="number" v-model="dialysisSolution.glucose">
171
+            <input type="number" v-model="dialysisSolution.glucose" />
152
             <!-- <span class="text">HD</span>   -->
172
             <!-- <span class="text">HD</span>   -->
153
             <!-- <span class="iconfont">&#xe6f9;</span> -->
173
             <!-- <span class="iconfont">&#xe6f9;</span> -->
154
           </div>
174
           </div>
156
         <div class="item">
176
         <div class="item">
157
           <h2 class="name">干体重(kg)</h2>
177
           <h2 class="name">干体重(kg)</h2>
158
           <div class="content">
178
           <div class="content">
159
-            <input type="number" v-model="dialysisSolution.dry_weight">
179
+            <input type="number" v-model="dialysisSolution.dry_weight" />
160
             <!-- <span class="text">HD</span>   -->
180
             <!-- <span class="text">HD</span>   -->
161
             <!-- <span class="iconfont">&#xe6f9;</span> -->
181
             <!-- <span class="iconfont">&#xe6f9;</span> -->
162
           </div>
182
           </div>
167
         <div class="item">
187
         <div class="item">
168
           <h2 class="name">透析液流量(ml/min)</h2>
188
           <h2 class="name">透析液流量(ml/min)</h2>
169
           <div class="content">
189
           <div class="content">
170
-            <input type="number" v-model="dialysisSolution.dialysate_flow">
190
+            <input type="number" v-model="dialysisSolution.dialysate_flow" />
171
             <!-- <span class="text">HD</span>   -->
191
             <!-- <span class="text">HD</span>   -->
172
             <!-- <span class="iconfont">&#xe6f9;</span> -->
192
             <!-- <span class="iconfont">&#xe6f9;</span> -->
173
           </div>
193
           </div>
175
         <div class="item">
195
         <div class="item">
176
           <h2 class="name">透析液温度(℃)</h2>
196
           <h2 class="name">透析液温度(℃)</h2>
177
           <div class="content">
197
           <div class="content">
178
-            <input type="number" v-model="dialysisSolution.dialysate_temperature">
198
+            <input type="number" v-model="dialysisSolution.dialysate_temperature" />
179
             <!-- <span class="text">HD</span>   -->
199
             <!-- <span class="text">HD</span>   -->
180
             <!-- <span class="iconfont">&#xe6f9;</span> -->
200
             <!-- <span class="iconfont">&#xe6f9;</span> -->
181
           </div>
201
           </div>
183
         <div class="item">
203
         <div class="item">
184
           <h2 class="name">电导率(mS/cm)</h2>
204
           <h2 class="name">电导率(mS/cm)</h2>
185
           <div class="content">
205
           <div class="content">
186
-            <input type="number" v-model="dialysisSolution.conductivity">
206
+            <input type="number" v-model="dialysisSolution.conductivity" />
187
             <!-- <span class="text">HD</span>   -->
207
             <!-- <span class="text">HD</span>   -->
188
             <!-- <span class="iconfont">&#xe6f9;</span> -->
208
             <!-- <span class="iconfont">&#xe6f9;</span> -->
189
           </div>
209
           </div>
200
         <textarea class="textarea" placeholder="请输入内容" v-model="dialysisSolution.remark"></textarea>
220
         <textarea class="textarea" placeholder="请输入内容" v-model="dialysisSolution.remark"></textarea>
201
       </div>
221
       </div>
202
       <!--<div class="footer">-->
222
       <!--<div class="footer">-->
203
-        <!--处方医生:{{doctor}}-->
223
+      <!--处方医生:{{doctor}}-->
204
       <!--</div>-->
224
       <!--</div>-->
205
     </div>
225
     </div>
206
 
226
 
217
             </ul>
237
             </ul>
218
           </div>
238
           </div>
219
         </div>
239
         </div>
220
-    </div> -->
221
-    <long-dialog-menu title="模式" v-show="showObj.mode_show[0]" :show_index="0" :option_poro="modeList"  :data_prop="dialysisSolution" :show_prop="showObj" data_mode="mode" :index="dialysisSolution.mode_id"></long-dialog-menu>
240
+    </div>-->
241
+    <long-dialog-menu
242
+      title="模式"
243
+      v-show="showObj.mode_show[0]"
244
+      :show_index="0"
245
+      :option_poro="modeList"
246
+      :data_prop="dialysisSolution"
247
+      :show_prop="showObj"
248
+      data-_mode="mode"
249
+      :index="dialysisSolution.mode_id"
250
+    ></long-dialog-menu>
222
 
251
 
223
-    <long-dialog-menu title="透析器" v-show="showObj.mode_show[1]" :show_index="1" :option_poro="dialyserList"  :data_prop="dialysisSolution" :show_prop="showObj" data_mode="hemodialysis_machine" :index="dialysisSolution.hemodialysis_machine"></long-dialog-menu>
252
+    <long-dialog-menu
253
+      title="透析器"
254
+      v-show="showObj.mode_show[1]"
255
+      :show_index="1"
256
+      :option_poro="dialyserList"
257
+      :data_prop="dialysisSolution"
258
+      :show_prop="showObj"
259
+      data-_mode="hemodialysis_machine"
260
+      :index="dialysisSolution.hemodialysis_machine"
261
+    ></long-dialog-menu>
224
 
262
 
225
-    <long-dialog-menu title="灌流器" v-show="showObj.mode_show[2]" :show_index="2" :option_poro="perfusion_apparatus"  :data_prop="dialysisSolution" :show_prop="showObj" data_mode="perfusion_apparatus" :index="dialysisSolution.perfusion_apparatus"></long-dialog-menu>
263
+    <long-dialog-menu
264
+      title="灌流器"
265
+      v-show="showObj.mode_show[2]"
266
+      :show_index="2"
267
+      :option_poro="perfusion_apparatus"
268
+      :data_prop="dialysisSolution"
269
+      :show_prop="showObj"
270
+      data-_mode="perfusion_apparatus"
271
+      :index="dialysisSolution.perfusion_apparatus"
272
+    ></long-dialog-menu>
226
 
273
 
227
-    <long-dialog-menu title="置换方式" v-show="showObj.mode_show[3]" :show_index="3" :option_poro="replacementWays"  :data_prop="dialysisSolution"  :show_prop="showObj" data_mode="replacement_way" :index="dialysisSolution.replacement_way"></long-dialog-menu>
274
+    <long-dialog-menu
275
+      title="置换方式"
276
+      v-show="showObj.mode_show[3]"
277
+      :show_index="3"
278
+      :option_poro="replacementWays"
279
+      :data_prop="dialysisSolution"
280
+      :show_prop="showObj"
281
+      data-_mode="replacement_way"
282
+      :index="dialysisSolution.replacement_way"
283
+    ></long-dialog-menu>
228
 
284
 
229
-    <long-dialog-menu title="搞凝剂" v-show="showObj.mode_show[4]" :show_index="4" :option_poro="anticoagulantsConfitList"  :data_prop="dialysisSolution"  :show_prop="showObj" data_mode="anticoagulant" :index="dialysisSolution.anticoagulant"></long-dialog-menu>
285
+    <long-dialog-menu
286
+      title="搞凝剂"
287
+      v-show="showObj.mode_show[4]"
288
+      :show_index="4"
289
+      :option_poro="anticoagulantsConfitList"
290
+      :data_prop="dialysisSolution"
291
+      :show_prop="showObj"
292
+      data-_mode="anticoagulant"
293
+      :index="dialysisSolution.anticoagulant"
294
+    ></long-dialog-menu>
230
   </div>
295
   </div>
231
 </template>
296
 </template>
232
 
297
 
383
         return false;
448
         return false;
384
       }
449
       }
385
       this.anticoagulant = this.anticoagulantsConfit[thismode];
450
       this.anticoagulant = this.anticoagulantsConfit[thismode];
386
-      this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[thismode].name;
451
+      this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[
452
+        thismode
453
+      ].name;
387
     },
454
     },
388
-    "dialysisSolution.hemodialysis_machine":function(){
455
+    "dialysisSolution.hemodialysis_machine": function() {
389
       var machine = parseInt(this.dialysisSolution.hemodialysis_machine);
456
       var machine = parseInt(this.dialysisSolution.hemodialysis_machine);
390
       if (isNaN(machine) || machine <= 0) {
457
       if (isNaN(machine) || machine <= 0) {
391
         return;
458
         return;
392
       }
459
       }
393
       for (let index = 0; index < this.dialyserList.length; index++) {
460
       for (let index = 0; index < this.dialyserList.length; index++) {
394
         if (machine == this.dialyserList[index].id) {
461
         if (machine == this.dialyserList[index].id) {
395
-          this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[index].name;
462
+          this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[
463
+            index
464
+          ].name;
396
           break;
465
           break;
397
         }
466
         }
398
       }
467
       }
399
     },
468
     },
400
-    "dialysisSolution.perfusion_apparatus": function(){
469
+    "dialysisSolution.perfusion_apparatus": function() {
401
       var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus);
470
       var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus);
402
-      if (isNaN(apparatus) || apparatus<=0) {
471
+      if (isNaN(apparatus) || apparatus <= 0) {
403
         return false;
472
         return false;
404
       }
473
       }
405
       for (let index = 0; index < this.perfusion_apparatus.length; index++) {
474
       for (let index = 0; index < this.perfusion_apparatus.length; index++) {
406
         if (apparatus == this.perfusion_apparatus[index].id) {
475
         if (apparatus == this.perfusion_apparatus[index].id) {
407
-          this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[index].name;
476
+          this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[
477
+            index
478
+          ].name;
408
           break;
479
           break;
409
         }
480
         }
410
       }
481
       }
411
     },
482
     },
412
-    "dialysisSolution.replacement_way": function(){
483
+    "dialysisSolution.replacement_way": function() {
413
       var way = parseInt(this.dialysisSolution.replacement_way);
484
       var way = parseInt(this.dialysisSolution.replacement_way);
414
-      if (isNaN(way) || way<=0) {
485
+      if (isNaN(way) || way <= 0) {
415
         return false;
486
         return false;
416
       }
487
       }
417
       for (let index = 0; index < this.replacementWays.length; index++) {
488
       for (let index = 0; index < this.replacementWays.length; index++) {
418
         if (way == this.replacementWays[index].id) {
489
         if (way == this.replacementWays[index].id) {
419
-          this.dialysisSolution.replacement_way_name = this.replacementWays[index].name;
490
+          this.dialysisSolution.replacement_way_name = this.replacementWays[
491
+            index
492
+          ].name;
420
           break;
493
           break;
421
         }
494
         }
422
       }
495
       }
423
-    },
496
+    }
424
   },
497
   },
425
   // computed:{
498
   // computed:{
426
   //   dialysisSolution:function(){
499
   //   dialysisSolution:function(){
437
   //     }
510
   //     }
438
   //   }
511
   //   }
439
 
512
 
440
-
441
   // },
513
   // },
442
   created() {
514
   created() {
443
     this.doctor = this.$store.getters.user.user.user_name;
515
     this.doctor = this.$store.getters.user.user.user_name;
456
     this.patient = this.patient_prop;
528
     this.patient = this.patient_prop;
457
 
529
 
458
     // console.log("this.solution_prop",this.solution_prop);
530
     // console.log("this.solution_prop",this.solution_prop);
459
-    if (this.solution_prop != null && this.solution_prop.id != '') {
531
+    if (this.solution_prop != null && this.solution_prop.id != "") {
460
       for (const key in this.solution_prop) {
532
       for (const key in this.solution_prop) {
461
         this.dialysisSolution[key] = this.solution_prop[key];
533
         this.dialysisSolution[key] = this.solution_prop[key];
462
       }
534
       }
463
     }
535
     }
464
 
536
 
465
-
466
     this.dialyserList = this.machines_prop;
537
     this.dialyserList = this.machines_prop;
467
-  },
538
+  }
468
   // data() {
539
   // data() {
469
   //   return {
540
   //   return {
470
   //     show_two_menu: false
541
   //     show_two_menu: false
504
   max-height: 10.6rem;
575
   max-height: 10.6rem;
505
   min-height: 5rem;
576
   min-height: 5rem;
506
   overflow-y: scroll;
577
   overflow-y: scroll;
507
-   @media only screen and (max-width: 812px) {
578
+  @media only screen and (max-width: 812px) {
508
     min-height: 8rem !important;
579
     min-height: 8rem !important;
509
   }
580
   }
510
   ul {
581
   ul {
537
   max-height: 10.6rem;
608
   max-height: 10.6rem;
538
   min-height: 5rem;
609
   min-height: 5rem;
539
   overflow-y: scroll;
610
   overflow-y: scroll;
540
-  
611
+
541
   ul {
612
   ul {
542
     li {
613
     li {
543
       line-height: 1rem;
614
       line-height: 1rem;

File diff suppressed because it is too large
+ 1171 - 1105
src/pages/main/dialog/OrdersDialog.vue


+ 5 - 11
src/pages/main/dialog/TwoMenu.vue View File

2
   <div class="Dialog" v-show="show">
2
   <div class="Dialog" v-show="show">
3
     <div class="DialogTit">
3
     <div class="DialogTit">
4
       <div class="back" @click="hide()">
4
       <div class="back" @click="hide()">
5
-        <span class="iconfont">&#xe720; </span>返回
5
+        <span class="iconfont">&#xe720;</span>返回
6
       </div>
6
       </div>
7
       <h1 class="name">{{ title }}</h1>
7
       <h1 class="name">{{ title }}</h1>
8
       <!-- <span class="success" @click="handle_selected()">完成</span> -->
8
       <!-- <span class="success" @click="handle_selected()">完成</span> -->
9
-      <span v-if="type == 1" class="success"> </span>
10
-      <span v-if="type == 2" @click="handle_selected" class="success"
11
-        >确定</span
12
-      >
9
+      <span v-if="type == 1" class="success"></span>
10
+      <span v-if="type == 2" @click="handle_selected" class="success">确定</span>
13
     </div>
11
     </div>
14
 
12
 
15
     <div class="optionsBox" v-show="type == 1">
13
     <div class="optionsBox" v-show="type == 1">
30
                 single.id_key.lenght == 0 ? item : item[single.id_key]
28
                 single.id_key.lenght == 0 ? item : item[single.id_key]
31
               )
29
               )
32
             "
30
             "
33
-          >
34
-            {{ single.show_key.lenght == 0 ? item : item[single.show_key] }}
35
-          </li>
31
+          >{{ single.show_key.lenght == 0 ? item : item[single.show_key] }}</li>
36
         </ul>
32
         </ul>
37
       </div>
33
       </div>
38
     </div>
34
     </div>
46
               v-for="(item, index) in mutable.options"
42
               v-for="(item, index) in mutable.options"
47
               :key="index"
43
               :key="index"
48
               :name="mutable.id_key.lenght == 0 ? item : item[mutable.id_key]"
44
               :name="mutable.id_key.lenght == 0 ? item : item[mutable.id_key]"
49
-            >
50
-              {{ mutable.show_key.lenght == 0 ? item : item[mutable.show_key] }}
51
-            </van-checkbox>
45
+            >{{ mutable.show_key.lenght == 0 ? item : item[mutable.show_key] }}</van-checkbox>
52
           </van-checkbox-group>
46
           </van-checkbox-group>
53
         </li>
47
         </li>
54
       </ul>
48
       </ul>

+ 103 - 93
src/pages/main/dialog/modify_order/ModifyAdviceGroup.vue View File

30
             <div class="cell" style="margin-top: 0;">
30
             <div class="cell" style="margin-top: 0;">
31
               <label>开嘱医生</label>
31
               <label>开嘱医生</label>
32
               <span>{{ $store.getters.user.user.user_name }}</span>
32
               <span>{{ $store.getters.user.user.user_name }}</span>
33
-
34
             </div>
33
             </div>
35
           </div>
34
           </div>
36
           <table class="table">
35
           <table class="table">
42
               <th width="15%">给药途径</th>
41
               <th width="15%">给药途径</th>
43
               <th width="15%">执行频率</th>
42
               <th width="15%">执行频率</th>
44
             </tr>
43
             </tr>
45
-            <tr v-for="(advice, index) in advices" :key="index" :class="{ 'row-class-active': index == current_advice_index }" @click="selectAdviceAction(index, advice)">
46
-              <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{ advice.advice_name }}</td>
44
+            <tr
45
+              v-for="(advice, index) in advices"
46
+              :key="index"
47
+              :class="{ 'row-class-active': index == current_advice_index }"
48
+              @click="selectAdviceAction(index, advice)"
49
+            >
50
+              <td
51
+                :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }"
52
+              >{{ advice.advice_name }}</td>
47
               <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
53
               <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
48
               <td>{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
54
               <td>{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
49
               <td>{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
55
               <td>{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
92
 <script>
98
 <script>
93
 import ModifyAdviceForm from "./modify_order_form";
99
 import ModifyAdviceForm from "./modify_order_form";
94
 import { parseTime } from "@/utils";
100
 import { parseTime } from "@/utils";
95
-import {
96
-  EditDoctorAdvice,
97
-  modifyAdviceGroupStartTime,
98
-} from "@/api/advice";
99
-import { Toast } from 'vant';
101
+import { EditDoctorAdvice, modifyAdviceGroupStartTime } from "@/api/advice";
102
+import { Toast } from "vant";
100
 import AddNewOrderDialog from "../new_order/AddNewOrders";
103
 import AddNewOrderDialog from "../new_order/AddNewOrders";
101
 
104
 
102
 export default {
105
 export default {
103
   name: "ModifyAdviceGroup",
106
   name: "ModifyAdviceGroup",
104
   components: {
107
   components: {
105
     ModifyAdviceForm,
108
     ModifyAdviceForm,
106
-    AddNewOrderDialog,
109
+    AddNewOrderDialog
107
   },
110
   },
108
   props: {
111
   props: {
109
     patient_id: {
112
     patient_id: {
151
       default: function() {
154
       default: function() {
152
         return [];
155
         return [];
153
       }
156
       }
154
-    },
157
+    }
155
   },
158
   },
156
   data() {
159
   data() {
157
     return {
160
     return {
167
       advices: [],
170
       advices: [],
168
 
171
 
169
       current_advice_index: -1,
172
       current_advice_index: -1,
170
-      current_advice: null,
173
+      current_advice: null
171
     };
174
     };
172
   },
175
   },
173
   computed: {
176
   computed: {
175
       if (this.start_time != null) {
178
       if (this.start_time != null) {
176
         return parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
179
         return parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
177
       }
180
       }
178
-      return ""
181
+      return "";
179
     },
182
     },
180
     record_date_str: function() {
183
     record_date_str: function() {
181
       if (this.record_date != null) {
184
       if (this.record_date != null) {
182
         return parseTime(this.record_date, "{y}-{m}-{d} {h}:{i}");
185
         return parseTime(this.record_date, "{y}-{m}-{d} {h}:{i}");
183
       }
186
       }
184
-      return ""
187
+      return "";
185
     }
188
     }
186
   },
189
   },
187
   methods: {
190
   methods: {
188
     show: function(group_no, advices) {
191
     show: function(group_no, advices) {
189
       this.visibility = true;
192
       this.visibility = true;
190
       this.sub_dialog_key = 0;
193
       this.sub_dialog_key = 0;
191
-      this.group_no = group_no
192
-      this.advices = advices
194
+      this.group_no = group_no;
195
+      this.advices = advices;
193
       if (this.advices.length > 0) {
196
       if (this.advices.length > 0) {
194
-        this.start_time = new Date(this.advices[0].start_time * 1000)
195
-        this.record_date = new Date(this.advices[0].created_time * 1000)
197
+        this.start_time = new Date(this.advices[0].start_time * 1000);
198
+        this.record_date = new Date(this.advices[0].created_time * 1000);
196
       }
199
       }
197
     },
200
     },
198
     backAction: function() {
201
     backAction: function() {
199
       this.visibility = false;
202
       this.visibility = false;
200
       this.sub_dialog_key = 0;
203
       this.sub_dialog_key = 0;
201
-      this.group_no = 0
202
-      this.advices = []
203
-      this.start_time = new Date()
204
-      this.record_date = new Date()
204
+      this.group_no = 0;
205
+      this.advices = [];
206
+      this.start_time = new Date();
207
+      this.record_date = new Date();
205
       this.$emit("back");
208
       this.$emit("back");
206
     },
209
     },
207
     selectStartTimeAction: function() {
210
     selectStartTimeAction: function() {
208
       this.$refs.start_time_picker.open();
211
       this.$refs.start_time_picker.open();
209
     },
212
     },
210
     selectAdviceAction: function(index, advice) {
213
     selectAdviceAction: function(index, advice) {
211
-      this.current_advice_index = index
212
-      this.current_advice = advice
214
+      this.current_advice_index = index;
215
+      this.current_advice = advice;
213
     },
216
     },
214
     cancelSelectAdvice: function() {
217
     cancelSelectAdvice: function() {
215
-      this.current_advice_index = -1
216
-      this.current_advice = null
218
+      this.current_advice_index = -1;
219
+      this.current_advice = null;
217
     },
220
     },
218
     modifyAction: function() {
221
     modifyAction: function() {
219
       if (this.current_advice_index < 0) {
222
       if (this.current_advice_index < 0) {
220
-        return
223
+        return;
221
       }
224
       }
222
-      this.sub_dialog_key = 1
225
+      this.sub_dialog_key = 1;
223
       this.$refs.modify_advice_form.showWithModify({
226
       this.$refs.modify_advice_form.showWithModify({
224
-          id: this.current_advice.id,
225
-          parent_id: this.current_advice.parent_id,
226
-          title: this.current_advice.advice_name,
227
-          advice_desc: this.current_advice.advice_desc,
228
-          drug_spec: this.current_advice.drug_spec,
229
-          drug_spec_unit: this.current_advice.drug_spec_unit,
230
-          delivery_way: this.current_advice.delivery_way,
231
-          execution_frequency: this.current_advice.execution_frequency,
232
-          single_dose: this.current_advice.single_dose,
233
-          single_dose_unit: this.current_advice.single_dose_unit,
234
-          prescribing_number: this.current_advice.prescribing_number,
235
-          prescribing_number_unit: this.current_advice.prescribing_number_unit
236
-        })
227
+        id: this.current_advice.id,
228
+        parent_id: this.current_advice.parent_id,
229
+        title: this.current_advice.advice_name,
230
+        advice_desc: this.current_advice.advice_desc,
231
+        drug_spec: this.current_advice.drug_spec,
232
+        drug_spec_unit: this.current_advice.drug_spec_unit,
233
+        delivery_way: this.current_advice.delivery_way,
234
+        execution_frequency: this.current_advice.execution_frequency,
235
+        single_dose: this.current_advice.single_dose,
236
+        single_dose_unit: this.current_advice.single_dose_unit,
237
+        prescribing_number: this.current_advice.prescribing_number,
238
+        prescribing_number_unit: this.current_advice.prescribing_number_unit
239
+      });
237
     },
240
     },
238
     newAdviceAction: function() {
241
     newAdviceAction: function() {
239
-      this.cancelSelectAdvice()
240
-      this.sub_dialog_key = 2
242
+      this.cancelSelectAdvice();
243
+      this.sub_dialog_key = 2;
241
     },
244
     },
242
 
245
 
243
     didSelectStartTime: function(time) {
246
     didSelectStartTime: function(time) {
244
       // Toast.loading({ forbidClick: true, duration: 0 });
247
       // Toast.loading({ forbidClick: true, duration: 0 });
245
-      console.log(this.start_time)
246
-      this.loading = true
247
-      modifyAdviceGroupStartTime(this.group_no, parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00").then(rs => {
248
-        if (rs.data.state == 1) {
249
-          var new_start_time = rs.data.data.start_time
250
-          for (let index = 0; index < this.advices.length; index++) {
251
-            const advice = this.advices[index];
252
-            advice.start_time = new_start_time
248
+      console.log(this.start_time);
249
+      this.loading = true;
250
+      modifyAdviceGroupStartTime(
251
+        this.group_no,
252
+        parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00"
253
+      )
254
+        .then(rs => {
255
+          if (rs.data.state == 1) {
256
+            var new_start_time = rs.data.data.start_time;
257
+            for (let index = 0; index < this.advices.length; index++) {
258
+              const advice = this.advices[index];
259
+              advice.start_time = new_start_time;
260
+            }
261
+            this.start_time = new Date(new_start_time * 1000);
262
+          } else {
263
+            Toast.fail(rs.data.msg);
253
           }
264
           }
254
-          this.start_time = new Date(new_start_time * 1000)
255
-
256
-        } else {
257
-          Toast.fail(rs.data.msg)
258
-        }
259
-        this.loading = false
260
-
261
-      }).catch(err => {
262
-        Toast.fail(err)
263
-        this.loading = false
264
-      })
265
+          this.loading = false;
266
+        })
267
+        .catch(err => {
268
+          Toast.fail(err);
269
+          this.loading = false;
270
+        });
265
     },
271
     },
266
     didModifyAdvice: function(advice) {
272
     didModifyAdvice: function(advice) {
267
-      this.loading = true
273
+      this.loading = true;
268
       EditDoctorAdvice(advice.id, {
274
       EditDoctorAdvice(advice.id, {
269
         advice_name: advice.title,
275
         advice_name: advice.title,
270
         advice_desc: advice.advice_desc,
276
         advice_desc: advice.advice_desc,
271
-        remark:advice.remark,
272
-        drug_spec_unit:advice.drug_spec_unit,
277
+        remark: advice.remark,
278
+        drug_spec_unit: advice.drug_spec_unit,
273
         delivery_way: advice.delivery_way,
279
         delivery_way: advice.delivery_way,
274
         execution_frequency: advice.execution_frequency,
280
         execution_frequency: advice.execution_frequency,
275
         single_dose: String(advice.single_dose),
281
         single_dose: String(advice.single_dose),
276
         single_dose_unit: advice.single_dose_unit,
282
         single_dose_unit: advice.single_dose_unit,
277
         prescribing_number: String(advice.prescribing_number),
283
         prescribing_number: String(advice.prescribing_number),
278
         prescribing_number_unit: advice.prescribing_number_unit,
284
         prescribing_number_unit: advice.prescribing_number_unit,
279
-        drug_spec_unit:advice.drug_spec_unit
280
-      }).then(rs => {
281
-        if (rs.data.state == 1) {
282
-          var resp_advice = rs.data.data.advice
283
-
284
-          this.current_advice
285
-          this.current_advice.advice_name = resp_advice.advice_name
286
-          this.current_advice.advice_desc = resp_advice.advice_desc
287
-          this.current_advice.drug_spec_unit = resp_advice.drug_spec_unit
288
-          this.current_advice.remark = resp_advice.remark
289
-          this.current_advice.delivery_way = resp_advice.delivery_way,
290
-          this.current_advice.execution_frequency = resp_advice.execution_frequency,
291
-          this.current_advice.single_dose = resp_advice.single_dose,
292
-          this.current_advice.single_dose_unit = resp_advice.single_dose_unit,
293
-          this.current_advice.prescribing_number = resp_advice.prescribing_number,
294
-          this.current_advice.prescribing_number_unit = resp_advice.prescribing_number_unit
295
-          this.sub_dialog_key = 0
296
-          this.$refs.modify_advice_form.dismiss()
297
-
298
-        } else {
299
-          Toast.fail(rs.data.msg)
300
-        }
301
-        this.loading = false
302
-
303
-      }).catch(err => {
304
-        Toast.fail(err)
305
-        this.loading = false
285
+        drug_spec_unit: advice.drug_spec_unit
306
       })
286
       })
287
+        .then(rs => {
288
+          if (rs.data.state == 1) {
289
+            var resp_advice = rs.data.data.advice;
290
+
291
+            this.current_advice;
292
+            this.current_advice.advice_name = resp_advice.advice_name;
293
+            this.current_advice.advice_desc = resp_advice.advice_desc;
294
+            this.current_advice.drug_spec_unit = resp_advice.drug_spec_unit;
295
+            this.current_advice.remark = resp_advice.remark;
296
+            (this.current_advice.delivery_way = resp_advice.delivery_way),
297
+              (this.current_advice.execution_frequency =
298
+                resp_advice.execution_frequency),
299
+              (this.current_advice.single_dose = resp_advice.single_dose),
300
+              (this.current_advice.single_dose_unit =
301
+                resp_advice.single_dose_unit),
302
+              (this.current_advice.prescribing_number =
303
+                resp_advice.prescribing_number),
304
+              (this.current_advice.prescribing_number_unit =
305
+                resp_advice.prescribing_number_unit);
306
+            this.sub_dialog_key = 0;
307
+            this.$refs.modify_advice_form.dismiss();
308
+          } else {
309
+            Toast.fail(rs.data.msg);
310
+          }
311
+          this.loading = false;
312
+        })
313
+        .catch(err => {
314
+          Toast.fail(err);
315
+          this.loading = false;
316
+        });
307
     },
317
     },
308
     didCreateAdvices: function(advices) {
318
     didCreateAdvices: function(advices) {
309
-      this.advices.push(...advices)
310
-      this.sub_dialog_key = 0
319
+      this.advices.push(...advices);
320
+      this.sub_dialog_key = 0;
311
     }
321
     }
312
   }
322
   }
313
 };
323
 };

+ 25 - 16
src/pages/main/dialog/new_order/AddNewOrders.vue View File

1
 <template>
1
 <template>
2
   <div v-loading="loading">
2
   <div v-loading="loading">
3
-    <div class="Dialog" style="width: 16.8rem;" v-show="show_dialog_key == 0">
3
+    <div class="Dialog" style="width: 11.8rem;" v-show="show_dialog_key == 0">
4
       <div class="DialogTit">
4
       <div class="DialogTit">
5
         <div class="back" @click="backAction">
5
         <div class="back" @click="backAction">
6
           <span class="iconfont">&#xe720;</span>返回
6
           <span class="iconfont">&#xe720;</span>返回
9
         <span class="success" @click="comfirmAction">完成</span>
9
         <span class="success" @click="comfirmAction">完成</span>
10
       </div>
10
       </div>
11
       <div class="yzNav" style="width:100%;">
11
       <div class="yzNav" style="width:100%;">
12
-            <span @click="addOrderByTemplateAction">选择医嘱模板</span>
13
-            <span @click="addNewOrderAction">新增医嘱内容</span>
14
-            <span @click="modifyOrderAction">修改医嘱内容</span>
15
-            <span @click="deleteOrderAction">删除医嘱内容</span>
12
+        <span @click="addOrderByTemplateAction">选择医嘱模板</span>
13
+        <span @click="addNewOrderAction">新增医嘱内容</span>
14
+        <span @click="modifyOrderAction">修改医嘱内容</span>
15
+        <span @click="deleteOrderAction">删除医嘱内容</span>
16
       </div>
16
       </div>
17
-      <div class="DialogContent choose" style="height: 6.2rem;" >
17
+      <div class="DialogContent choose" style="height: 6.2rem;">
18
         <div class="content clearfix">
18
         <div class="content clearfix">
19
           <div style="overflow: hidden;">
19
           <div style="overflow: hidden;">
20
             <div class="cell" style="margin-top: 0;">
20
             <div class="cell" style="margin-top: 0;">
26
               <el-input :value="start_time_str" readonly @focus="selectStartTimeAction"></el-input>
26
               <el-input :value="start_time_str" readonly @focus="selectStartTimeAction"></el-input>
27
             </div>
27
             </div>
28
           </div>
28
           </div>
29
-          <div style="overflow: hidden;margin-top: 15px" >
29
+          <div style="overflow: hidden;margin-top: 15px">
30
             <div class="cell" style="margin-top: 0;">
30
             <div class="cell" style="margin-top: 0;">
31
               <label>开嘱医生: {{$store.getters.user.user.user_name}}</label>
31
               <label>开嘱医生: {{$store.getters.user.user.user_name}}</label>
32
             </div>
32
             </div>
53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
54
                 >{{ advice.title }}</td>
54
                 >{{ advice.title }}</td>
55
                 <td v-if="advice.advice_desc">{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
55
                 <td v-if="advice.advice_desc">{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
56
-                <td v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
56
+                <td
57
+                  v-if="advice.prescribing_number"
58
+                >{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
57
                 <td v-else></td>
59
                 <td v-else></td>
58
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
60
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
59
                 <td v-else></td>
61
                 <td v-else></td>
70
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
72
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
71
                 >{{ subdrug.title }}</td>
73
                 >{{ subdrug.title }}</td>
72
                 <td>{{ subdrug.advice_desc }} {{subdrug.drug_spec_unit}}</td>
74
                 <td>{{ subdrug.advice_desc }} {{subdrug.drug_spec_unit}}</td>
73
-                <td><span v-if="subdrug.prescribing_number">{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span></td>
74
-                <td><span v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span></td>
75
+                <td>
76
+                  <span
77
+                    v-if="subdrug.prescribing_number"
78
+                  >{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span>
79
+                </td>
80
+                <td>
81
+                  <span
82
+                    v-if="subdrug.single_dose"
83
+                  >{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span>
84
+                </td>
75
                 <!--<td v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</td>-->
85
                 <!--<td v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</td>-->
76
                 <td></td>
86
                 <td></td>
77
                 <td></td>
87
                 <td></td>
154
     },
164
     },
155
     drug_spec_unit_options: {
165
     drug_spec_unit_options: {
156
       type: Array,
166
       type: Array,
157
-      default: function () {
167
+      default: function() {
158
         return [];
168
         return [];
159
       }
169
       }
160
     },
170
     },
284
           prescribing_number_unit: advice.prescribing_number_unit,
294
           prescribing_number_unit: advice.prescribing_number_unit,
285
           delivery_way: advice.delivery_way,
295
           delivery_way: advice.delivery_way,
286
           execution_frequency: advice.execution_frequency,
296
           execution_frequency: advice.execution_frequency,
287
-          remark : advice.remark,
297
+          remark: advice.remark,
288
           subdrugs: []
298
           subdrugs: []
289
         };
299
         };
290
         for (let s_i = 0; s_i < advice.subdrugs.length; s_i++) {
300
         for (let s_i = 0; s_i < advice.subdrugs.length; s_i++) {
336
     },
346
     },
337
     didSelectTemplateAdvice: function(resp_advices) {
347
     didSelectTemplateAdvice: function(resp_advices) {
338
       this.show_dialog_key = 0;
348
       this.show_dialog_key = 0;
339
-      var advices = []
349
+      var advices = [];
340
       for (let index = 0; index < resp_advices.length; index++) {
350
       for (let index = 0; index < resp_advices.length; index++) {
341
         const adv = resp_advices[index];
351
         const adv = resp_advices[index];
342
         if (adv.parent_id == 0) {
352
         if (adv.parent_id == 0) {
353
             prescribing_number: adv.prescribing_number,
363
             prescribing_number: adv.prescribing_number,
354
             prescribing_number_unit: adv.prescribing_number_unit,
364
             prescribing_number_unit: adv.prescribing_number_unit,
355
             subdrugs: []
365
             subdrugs: []
356
-          })
366
+          });
357
         }
367
         }
358
       }
368
       }
359
       for (let r_a_i = 0; r_a_i < resp_advices.length; r_a_i++) {
369
       for (let r_a_i = 0; r_a_i < resp_advices.length; r_a_i++) {
466
           advice.prescribing_number = order.prescribing_number;
476
           advice.prescribing_number = order.prescribing_number;
467
           advice.prescribing_number_unit = order.prescribing_number_unit;
477
           advice.prescribing_number_unit = order.prescribing_number_unit;
468
           advice.remark = order.remark;
478
           advice.remark = order.remark;
469
-
470
         } else {
479
         } else {
471
           var subdrug = advice.subdrugs[this.selecting_subdrug_index];
480
           var subdrug = advice.subdrugs[this.selecting_subdrug_index];
472
           subdrug.title = order.title;
481
           subdrug.title = order.title;
543
   }
552
   }
544
 
553
 
545
   .row-class-active > td {
554
   .row-class-active > td {
546
-    background: #badcff!important;
555
+    background: #badcff !important;
547
   }
556
   }
548
 }
557
 }
549
 </style>
558
 </style>

+ 39 - 32
src/pages/main/dialog/new_order/select_advice_template_dialog.vue View File

20
                 "
20
                 "
21
                 class="select_all_btn"
21
                 class="select_all_btn"
22
                 @click="selectTemplateAllAdviceAction(template)"
22
                 @click="selectTemplateAllAdviceAction(template)"
23
-              >
24
-                全选
25
-              </div>
23
+              >全选</div>
26
               <div
24
               <div
27
                 v-show="
25
                 v-show="
28
                   isFold(template.id) && isTemplateSelectingAllAdvices(template)
26
                   isFold(template.id) && isTemplateSelectingAllAdvices(template)
29
                 "
27
                 "
30
                 class="select_all_btn"
28
                 class="select_all_btn"
31
                 @click="cancelSelectTemplateAllAdviceAction(template)"
29
                 @click="cancelSelectTemplateAllAdviceAction(template)"
32
-              >
33
-                取消全选
34
-              </div>
30
+              >取消全选</div>
35
 
31
 
36
               <span v-if="isFold(template.id)" class="iconfont">&#xe749;</span>
32
               <span v-if="isFold(template.id)" class="iconfont">&#xe749;</span>
37
               <span v-if="!isFold(template.id)" class="iconfont">&#xe74a;</span>
33
               <span v-if="!isFold(template.id)" class="iconfont">&#xe74a;</span>
38
-              <div @click="foldTemplateAction(template.id)" class="name">
39
-                {{ template.name }}
40
-              </div>
34
+              <div @click="foldTemplateAction(template.id)" class="name">{{ template.name }}</div>
41
             </div>
35
             </div>
42
             <div
36
             <div
43
               v-show="isFold(template.id)"
37
               v-show="isFold(template.id)"
46
               :key="index"
40
               :key="index"
47
             >
41
             >
48
               <span v-if="advice.parent_id > 0" class="subdrug_info">
42
               <span v-if="advice.parent_id > 0" class="subdrug_info">
49
-                <span> {{ advice.advice_name }}</span>
50
-                <span>
51
-                  {{ advice.advice_desc }}{{ advice.drug_spec_unit }}
52
-                </span>
43
+                <span>{{ advice.advice_name }}</span>
44
+                <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
53
                 <span v-if="advice.prescribing_number">
45
                 <span v-if="advice.prescribing_number">
54
                   {{ advice.prescribing_number }}
46
                   {{ advice.prescribing_number }}
55
-                  {{ advice.prescribing_number_unit }}</span
56
-                >
47
+                  {{ advice.prescribing_number_unit }}
48
+                </span>
57
                 <span v-if="advice.single_dose">
49
                 <span v-if="advice.single_dose">
58
                   单次用量{{ advice.single_dose
50
                   单次用量{{ advice.single_dose
59
-                  }}{{ advice.single_dose_unit }}</span
60
-                >
51
+                  }}{{ advice.single_dose_unit }}
52
+                </span>
61
               </span>
53
               </span>
62
               <van-checkbox
54
               <van-checkbox
63
                 v-else
55
                 v-else
65
                 :value="isAdviceSelecting(advice.id)"
57
                 :value="isAdviceSelecting(advice.id)"
66
                 @click="selectAdviceAction(template, advice)"
58
                 @click="selectAdviceAction(template, advice)"
67
               >
59
               >
68
-                <span> {{ advice.advice_name }}</span>
69
-                <span>
70
-                  {{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span
71
-                >
60
+                <span>{{ advice.advice_name }}</span>
61
+                <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
72
                 <span v-if="advice.prescribing_number">
62
                 <span v-if="advice.prescribing_number">
73
                   {{ advice.prescribing_number }}
63
                   {{ advice.prescribing_number }}
74
-                  {{ advice.prescribing_number_unit }}</span
75
-                >
64
+                  {{ advice.prescribing_number_unit }}
65
+                </span>
76
                 <span v-if="advice.single_dose">
66
                 <span v-if="advice.single_dose">
77
                   单次用量{{ advice.single_dose
67
                   单次用量{{ advice.single_dose
78
-                  }}{{ advice.single_dose_unit }}</span
79
-                >
80
-                <span> {{ advice.delivery_way }} </span>
81
-                <span> {{ advice.execution_frequency }}</span>
68
+                  }}{{ advice.single_dose_unit }}
69
+                </span>
70
+                <span>{{ advice.delivery_way }}</span>
71
+                <span>{{ advice.execution_frequency }}</span>
82
                 <!--{{ 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 }}-->
72
                 <!--{{ 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 }}-->
83
               </van-checkbox>
73
               </van-checkbox>
84
             </div>
74
             </div>
256
 };
246
 };
257
 </script>
247
 </script>
258
 
248
 
259
-<style style="stylesheet/scss" lang="scss" scoped>
249
+<style style="stylesheet/scss" lang="scss">
260
 .optionsBox {
250
 .optionsBox {
261
   background: #fff;
251
   background: #fff;
262
   max-height: 10.6rem;
252
   max-height: 10.6rem;
263
   min-height: 5rem;
253
   min-height: 5rem;
264
   overflow-y: scroll;
254
   overflow-y: scroll;
265
   @media only screen and (max-width: 812px) {
255
   @media only screen and (max-width: 812px) {
266
-    min-height: 8rem !important;
256
+    min-height: 17.8rem !important;
267
   }
257
   }
268
   ul {
258
   ul {
269
     li {
259
     li {
292
 
282
 
293
   .template {
283
   .template {
294
     border-bottom: 1px #e5e5e5 solid;
284
     border-bottom: 1px #e5e5e5 solid;
295
-
285
+    overflow: hidden;
296
     .template_name {
286
     .template_name {
297
       height: 1rem;
287
       height: 1rem;
298
       line-height: 1rem;
288
       line-height: 1rem;
311
       }
301
       }
312
       .name {
302
       .name {
313
         display: inline-block;
303
         display: inline-block;
314
-        width: 80%;
304
+        width: 76%;
315
       }
305
       }
316
     }
306
     }
317
 
307
 
321
       color: #445a70;
311
       color: #445a70;
322
 
312
 
323
       .advice_info {
313
       .advice_info {
324
-        height: 1rem;
314
+        min-height: 1rem;
325
         line-height: 1rem;
315
         line-height: 1rem;
326
         padding: 0 0.38rem 0 0;
316
         padding: 0 0.38rem 0 0;
327
       }
317
       }
318
+      .van-checkbox__icon {
319
+        float: left;
320
+        width: 8%;
321
+        margin-top: 6px;
322
+      }
323
+      .van-checkbox__label {
324
+        float: left;
325
+        width: 92%;
326
+        line-height: 1rem;
327
+      }
328
+      .van-checkbox__label {
329
+        margin-left: 0px;
330
+      }
328
       .subdrug_info {
331
       .subdrug_info {
329
         height: 1rem;
332
         height: 1rem;
330
         line-height: 1rem;
333
         line-height: 1rem;
342
     max-height: 8rem !important;
345
     max-height: 8rem !important;
343
     min-height: 8rem !important;
346
     min-height: 8rem !important;
344
   }
347
   }
348
+  @media only screen and (max-width: 768px) {
349
+    max-height: 16rem !important;
350
+    min-height: 8rem !important;
351
+  }
345
   ul {
352
   ul {
346
     li {
353
     li {
347
       line-height: 1rem;
354
       line-height: 1rem;

+ 32 - 13
src/pages/main/dialog/subMenu/checkBoxSubMenu.vue View File

2
   <div v-if="visibility" class="Dialog">
2
   <div v-if="visibility" class="Dialog">
3
     <div class="DialogTit">
3
     <div class="DialogTit">
4
       <div class="back" @click="cancle()">
4
       <div class="back" @click="cancle()">
5
-        <span class="iconfont">&#xe720; </span>返回
5
+        <span class="iconfont">&#xe720;</span>返回
6
       </div>
6
       </div>
7
       <h1 class="name">{{ propsForm.title }}</h1>
7
       <h1 class="name">{{ propsForm.title }}</h1>
8
-      <span v-if="propsForm.isMultiple == 1" @click="comfirm" class="success">
9
-      </span>
10
-      <span v-if="propsForm.isMultiple == 2" @click="comfirm" class="success"
11
-        >确定</span
12
-      >
8
+      <span v-if="propsForm.isMultiple == 1" @click="comfirm" class="success"></span>
9
+      <span v-if="propsForm.isMultiple == 2" @click="comfirm" class="success">确定</span>
13
     </div>
10
     </div>
14
 
11
 
15
     <div v-if="propsForm.isMultiple == 1" class="optionsBox">
12
     <div v-if="propsForm.isMultiple == 1" class="optionsBox">
22
             :key="item.id"
19
             :key="item.id"
23
             value="item"
20
             value="item"
24
             :class="propsForm.selectId == item.id ? 'tick' : ''"
21
             :class="propsForm.selectId == item.id ? 'tick' : ''"
25
-          >
26
-            {{ item.name }}
27
-          </li>
22
+          >{{ item.name }}</li>
28
           <!--<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>-->
23
           <!--<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>-->
29
         </ul>
24
         </ul>
30
       </div>
25
       </div>
39
               v-for="(item, index) in propsForm.list"
34
               v-for="(item, index) in propsForm.list"
40
               :key="index"
35
               :key="index"
41
               :name="item.name"
36
               :name="item.name"
42
-            >
43
-              {{ item.name }}
44
-            </van-checkbox>
37
+            >{{ item.name }}</van-checkbox>
45
           </van-checkbox-group>
38
           </van-checkbox-group>
46
         </li>
39
         </li>
47
       </ul>
40
       </ul>
113
   @media only screen and (max-width: 812px) {
106
   @media only screen and (max-width: 812px) {
114
     min-height: 8rem !important;
107
     min-height: 8rem !important;
115
   }
108
   }
109
+  @media only screen and (max-width: 415px) {
110
+    height: 16.8rem !important;
111
+  }
112
+  @media only screen and (min-width: 666px) and (max-width: 737px) {
113
+    max-height: 8rem;
114
+    min-height: 7rem !important;
115
+  }
116
+  @media only screen and (max-width: 768px) {
117
+    max-height: 16rem !important;
118
+  }
119
+  @media only screen and (min-width: 666px) and (max-width: 737px) {
120
+    max-height: 8rem;
121
+    min-height: 7rem !important;
122
+  }
116
   ul {
123
   ul {
117
     overflow-y: scroll;
124
     overflow-y: scroll;
118
     max-height: 9rem;
125
     max-height: 9rem;
126
+    @media only screen and (min-width: 666px) and (max-width: 737px) {
127
+      max-height: 8rem;
128
+    }
129
+    @media only screen and (max-width: 768px) {
130
+      max-height: 16rem;
131
+    }
119
     li {
132
     li {
120
       height: 1.1rem;
133
       height: 1.1rem;
121
       line-height: 1.1rem;
134
       line-height: 1.1rem;
151
     max-height: 8rem !important;
164
     max-height: 8rem !important;
152
     min-height: 8rem !important;
165
     min-height: 8rem !important;
153
   }
166
   }
154
-
167
+  @media only screen and (max-width: 768px) {
168
+    max-height: 16rem !important;
169
+    min-height: 8rem !important;
170
+  }
171
+  @media only screen and (min-width: 769px) and (max-width: 1024px) {
172
+    max-height: 10.8rem !important;
173
+  }
155
   ul {
174
   ul {
156
     li {
175
     li {
157
       line-height: 1rem;
176
       line-height: 1rem;

File diff suppressed because it is too large
+ 1141 - 1092
src/pages/main/dialysis/AdviceTable.vue


+ 86 - 42
src/pages/main/dialysis/CheckTab.vue View File

1
 <template>
1
 <template>
2
   <div class="fixedTop">
2
   <div class="fixedTop">
3
     <div class="nav">
3
     <div class="nav">
4
-      <ul style="width: 90%">
5
-        <li  v-for="(item,i) in inspectionDate" :key="i" :class="index == i? 'active':'' "  @click="ClickTab(i,item)" >{{item.project_name}}</li>
6
-      </ul>
4
+      <!-- <ul style="width: 90%">
5
+        <li
6
+          v-for="(item,i) in inspectionDate"
7
+          :key="i"
8
+          :class="index == i? 'active':'' "
9
+          @click="ClickTab(i,item)"
10
+        >{{item.project_name}}</li>
11
+      </ul>-->
12
+      <van-tabs v-model="active" @change="onClick">
13
+        <van-tab v-for="(item,i) in inspectionDate" :key="i" :title="item.project_name"></van-tab>
14
+      </van-tabs>
15
+      <!-- <van-tabs v-model="active">
16
+        <van-tab title="标签 1">内容 1</van-tab>
17
+        <van-tab title="标签 2">内容 2</van-tab>
18
+        <van-tab title="标签 3">内容 3</van-tab>
19
+        <van-tab title="标签 4">内容 4</van-tab>
20
+      </van-tabs>-->
7
     </div>
21
     </div>
8
 
22
 
9
     <div class="tab-content">
23
     <div class="tab-content">
10
-        <inspection-item-table ref="item"></inspection-item-table>
24
+      <inspection-item-table ref="item"></inspection-item-table>
11
     </div>
25
     </div>
12
   </div>
26
   </div>
13
 </template>
27
 </template>
22
     this.patient = this.$route.query.patient_id;
36
     this.patient = this.$route.query.patient_id;
23
     this.GetList();
37
     this.GetList();
24
   },
38
   },
39
+  mounted() {
40
+    this.active = 0;
41
+  },
25
   data() {
42
   data() {
26
     return {
43
     return {
27
       index: 0,
44
       index: 0,
28
       inspectionDate: [],
45
       inspectionDate: [],
29
-      patient: 0
46
+      patient: 0,
47
+      active: 0
30
     };
48
     };
31
   },
49
   },
32
 
50
 
45
       GetInspection(params).then(response => {
63
       GetInspection(params).then(response => {
46
         this.inspectionDate = [];
64
         this.inspectionDate = [];
47
         if (response.data.state == 1) {
65
         if (response.data.state == 1) {
66
+          console.log(this.$refs.item);
48
           this.inspectionDate = response.data.data.reference;
67
           this.inspectionDate = response.data.data.reference;
49
           this.$refs.item.GetList(1, this.inspectionDate[0]);
68
           this.$refs.item.GetList(1, this.inspectionDate[0]);
50
         }
69
         }
51
       });
70
       });
71
+    },
72
+    onClick(num, title) {
73
+      // console.log(this.inspectionDate);
74
+      // console.log(num);
75
+      console.log(this.$refs.item);
76
+
77
+      this.inspectionDate.map((items, i) => {
78
+        if (num == i) {
79
+          this.index = i;
80
+          this.$refs.item.GetList(items.project_id, items);
81
+        }
82
+      });
52
     }
83
     }
53
   }
84
   }
54
 };
85
 };
55
 </script>
86
 </script>
56
 
87
 
57
 <style style="stylesheet/scss" lang="scss" scoped>
88
 <style style="stylesheet/scss" lang="scss" scoped>
58
-  .nav {
59
-    border-bottom: 1px #e5e5e5 solid;
60
-    background: #fff;
61
-     position: fixed;
62
-    top: 116px;
63
-    right: 0;
64
-    z-index: 55;
65
-    left: 1.58rem;
66
-    background: #fff;
67
-    ul {
68
-      width: 60%;
69
-      margin: 0 auto;
70
-      @include box-sizing;
71
-      @include display-flex;
72
-      @include align-items-center;
73
-      @include text-align;
74
-      @include justify-content-between;
75
-      li {
76
-        font-size: 0.32rem;
77
-        float: left;
78
-        color: $pgh-color;
79
-        padding: 0.3rem 0;
80
-        cursor: pointer;
81
-      }
82
-      .active {
83
-        position: relative;
84
-        &::before {
85
-          width: 100%;
86
-          height: 2px;
87
-          color: $main-color;
88
-          position: absolute;
89
-          bottom: 0;
90
-          left: 0;
91
-          content: "";
92
-          background: $main-color;
93
-        }
89
+.nav {
90
+  border-bottom: 1px #e5e5e5 solid;
91
+  background: #fff;
92
+  position: fixed;
93
+  top: 76px;
94
+  @media only screen and (min-width: 376px) and (max-width: 668px) {
95
+    top: 84px !important;
96
+  }
97
+  @media only screen and (min-width: 415px) and (max-width: 736px) {
98
+    top: 88px !important;
99
+  }
100
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
101
+    top: 117px !important;
102
+  }
103
+  @media only screen and (min-width: 1024px) {
104
+    top: 117px !important;
105
+  }
106
+  right: 0;
107
+  z-index: 55;
108
+  left: 0;
109
+  background: #fff;
110
+  ul {
111
+    width: 60%;
112
+    margin: 0 auto;
113
+    @include box-sizing;
114
+    @include display-flex;
115
+    @include align-items-center;
116
+    @include text-align;
117
+    @include justify-content-between;
118
+    li {
119
+      font-size: 0.32rem;
120
+      float: left;
121
+      color: $pgh-color;
122
+      padding: 0.3rem 0;
123
+      cursor: pointer;
124
+    }
125
+    .active {
126
+      position: relative;
127
+      &::before {
128
+        width: 100%;
129
+        height: 2px;
130
+        color: $main-color;
131
+        position: absolute;
132
+        bottom: 0;
133
+        left: 0;
134
+        content: "";
135
+        background: $main-color;
94
       }
136
       }
95
     }
137
     }
96
   }
138
   }
97
-
139
+}
98
 </style>
140
 </style>
99
 
141
 
142
+
143
+

+ 66 - 50
src/pages/main/dialysis/DialysisTab.vue View File

1
 <template>
1
 <template>
2
-    <div class="fixedBox">
3
-        <div class="nav">
4
-            <ul>
5
-                <li v-for="(item,i) in ['长期透析处方','透析记录','排班信息','宣教信息']" :key="i" :class="index == i? 'active':'' "  @click="ClickTab(i)" >{{item}}</li>
6
-            </ul>
7
-        </div>
2
+  <div class="fixedBox">
3
+    <div class="nav">
4
+      <ul>
5
+        <li
6
+          v-for="(item,i) in ['长期透析处方','透析记录','排班信息','宣教信息']"
7
+          :key="i"
8
+          :class="index == i? 'active':'' "
9
+          @click="ClickTab(i)"
10
+        >{{item}}</li>
11
+      </ul>
12
+    </div>
8
 
13
 
9
-        <div class="tab-content">
10
-            <long-table v-show="index==0" title="长期透析处方"></long-table>
11
-            <record-table v-show="index==1" title="透析记录"></record-table>
12
-            <!--<advice-table v-show="index==2" title="医嘱信息"></advice-table>-->
13
-            <schedul-table v-show="index==2" class="排班信息"></schedul-table>
14
-            <mission-table v-show="index==3" class="宣教信息"></mission-table>
15
-        </div>
14
+    <div class="tab-content">
15
+      <long-table v-show="index==0" title="长期透析处方"></long-table>
16
+      <record-table v-show="index==1" title="透析记录"></record-table>
17
+      <!--<advice-table v-show="index==2" title="医嘱信息"></advice-table>-->
18
+      <schedul-table v-show="index==2" class="排班信息"></schedul-table>
19
+      <mission-table v-show="index==3" class="宣教信息"></mission-table>
16
     </div>
20
     </div>
21
+  </div>
17
 </template> 
22
 </template> 
18
 
23
 
19
 <script>
24
 <script>
45
 </script>
50
 </script>
46
 
51
 
47
 <style style="stylesheet/scss" lang="scss" scoped>
52
 <style style="stylesheet/scss" lang="scss" scoped>
48
-.fixedBox{
49
- padding-top:53px; 
53
+.fixedBox {
54
+  padding-top: 40px;
50
   background: #fff;
55
   background: #fff;
51
   min-height: calc(100vh - 64px);
56
   min-height: calc(100vh - 64px);
52
-.nav {
53
-  border-bottom: 1px #e5e5e5 solid;
57
+  @media only screen and (min-width: 376px) and (max-width: 737px) {
58
+    padding-top: 46px;
59
+  }
60
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
61
+    padding-top: 74px;
62
+  }
63
+  .nav {
64
+    border-bottom: 1px #e5e5e5 solid;
54
     position: fixed;
65
     position: fixed;
55
-  top: 63px;
56
-  right: 0;
57
-  z-index: 66;
58
-  left: 1.58rem;
59
-  background: #fff;
60
-    background: #fff;
61
-  ul {
62
-    width: 60%;
63
-    margin: 0 auto;
64
-    @include box-sizing;
65
-    @include display-flex;
66
-    @include align-items-center;
67
-    @include text-align;
68
-    @include justify-content-between;
69
-    li {
70
-      font-size: 0.32rem;
71
-      float: left;
72
-      color: $pgh-color;
73
-      padding: 0.3rem 0;
74
-      cursor: pointer;
66
+    top: 51px;
67
+    @media only screen and (min-width: 768px) and (max-width: 1024px) {
68
+      top: 64px;
69
+    }
70
+    @media only screen and (min-width: 376px) and (max-width: 668px) {
71
+      top: 50px;
75
     }
72
     }
76
-    .active {
77
-      position: relative;
78
-      &::before {
79
-        width: 100%;
80
-        height: 2px;
81
-        color: $main-color;
82
-        position: absolute;
83
-        bottom: 0;
84
-        left: 0;
85
-        content: "";
86
-        background:$main-color;
73
+    right: 0;
74
+    z-index: 66;
75
+    left: 0;
76
+    background: #fff;
77
+    background: #fff;
78
+    ul {
79
+      width: 60%;
80
+      margin: 0 auto;
81
+      @include box-sizing;
82
+      @include display-flex;
83
+      @include align-items-center;
84
+      @include text-align;
85
+      @include justify-content-between;
86
+      li {
87
+        font-size: 0.32rem;
88
+        float: left;
89
+        color: $pgh-color;
90
+        padding: 0.3rem 0;
91
+        cursor: pointer;
92
+      }
93
+      .active {
94
+        position: relative;
95
+        &::before {
96
+          width: 100%;
97
+          height: 2px;
98
+          color: $main-color;
99
+          position: absolute;
100
+          bottom: 0;
101
+          left: 0;
102
+          content: "";
103
+          background: $main-color;
104
+        }
87
       }
105
       }
88
     }
106
     }
89
   }
107
   }
90
 }
108
 }
91
-}
92
-
93
 </style>
109
 </style>
94
 
110
 

+ 42 - 17
src/pages/main/dialysis/InspectionItemTable.vue View File

1
 <template>
1
 <template>
2
   <div>
2
   <div>
3
-
4
     <div class="blueBorder"></div>
3
     <div class="blueBorder"></div>
5
-    <van-list
6
-      v-model="loading"
7
-      :finished="finished"
8
-      finished-text="  "
9
-      @load="onLoad"
10
-    >
4
+    <van-list v-model="loading" :finished="finished" finished-text="  " @load="onLoad">
11
       <table class="table">
5
       <table class="table">
12
         <tr>
6
         <tr>
13
           <th width="20%">检查项目</th>
7
           <th width="20%">检查项目</th>
32
           <td width="10%">{{item.unit}}</td>
26
           <td width="10%">{{item.unit}}</td>
33
         </tr>
27
         </tr>
34
 
28
 
35
-        <tr v-if="items.isExpand" class="table" v-for="(item,index) in items.inspection_hide_item" :key="index">
29
+        <tr
30
+          v-if="items.isExpand"
31
+          class="table"
32
+          v-for="(item,index) in items.inspection_hide_item"
33
+          :key="index"
34
+        >
36
           <td width="20%">{{item.item_name}}</td>
35
           <td width="20%">{{item.item_name}}</td>
37
           <td width="10%">{{item.value}}</td>
36
           <td width="10%">{{item.value}}</td>
38
           <td width="10%">{{item.range_min}} ~ {{item.range_max}}</td>
37
           <td width="10%">{{item.range_min}} ~ {{item.range_max}}</td>
40
         </tr>
39
         </tr>
41
         <tr>
40
         <tr>
42
           <td width="20%"></td>
41
           <td width="20%"></td>
43
-          <td width="10%" style="color:#409EFF;" @click="expandTable(indexs)" v-model="isExpand">{{items.expandName}}</td>
42
+          <td
43
+            width="10%"
44
+            style="color:#409EFF;"
45
+            @click="expandTable(indexs)"
46
+            v-model="isExpand"
47
+          >{{items.expandName}}</td>
44
           <td width="10%"></td>
48
           <td width="10%"></td>
45
           <td width="10%"></td>
49
           <td width="10%"></td>
46
         </tr>
50
         </tr>
47
       </table>
51
       </table>
48
 
52
 
49
-
50
-      <div class="NoData" v-show="inspections_item.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
53
+      <div class="NoData" v-show="inspections_item.length == 0">
54
+        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
55
+      </div>
51
     </van-list>
56
     </van-list>
52
-
53
-
54
   </div>
57
   </div>
55
 </template>
58
 </template>
56
 
59
 
243
       @include align-items-center;
246
       @include align-items-center;
244
       @include text-align;
247
       @include text-align;
245
       @include justify-content-between;
248
       @include justify-content-between;
246
-    padding: 0.16rem 0;
247
-      
249
+      padding: 0.16rem 0;
250
+
248
       .iconfont {
251
       .iconfont {
249
         margin: 0 0.1rem;
252
         margin: 0 0.1rem;
250
       }
253
       }
294
     }
297
     }
295
   }
298
   }
296
 }
299
 }
297
-.van-list{
300
+.van-list {
298
   background: #fff;
301
   background: #fff;
299
   min-height: calc(100vh - 178px);
302
   min-height: calc(100vh - 178px);
300
-  margin-top: 105px; 
303
+  margin-top: 76px;
304
+  @media only screen and (min-width: 376px) and (max-width: 668px) {
305
+    margin-top: 84px;
306
+  }
307
+  @media only screen and (min-width: 415px) and (max-width: 736px) {
308
+    margin-top: 84px !important;
309
+  }
310
+  @media only screen and (min-width: 768px) and (max-width: 1023px) {
311
+    margin-top: 114px !important;
312
+  }
313
+  @media only screen and (min-width: 1024px) {
314
+    margin-top: 96px !important;
315
+  }
316
+}
317
+</style>
318
+
319
+<style lang="scss">
320
+.van-ellipsis {
321
+  font-size: 0.34rem;
322
+}
323
+
324
+.van-tabs__line {
325
+  background: #409eff !important;
301
 }
326
 }
302
 </style>
327
 </style>
303
 
328
 

+ 149 - 132
src/pages/main/dialysis/MissionTable.vue View File

1
 <template>
1
 <template>
2
-    <div>
3
-        <div class="choice">
4
-          <ul>
5
-            <li>日期查询:
6
-              <div @click="openStartPicker" class="">{{parseTime(startTime.getTime()/1000, "{y}-{m}-{d}")}}<span class="iconfont">&#xe74a;</span> </div>
7
-              <span class="line">  </span>
8
-              <div @click="openEndPicker" class="">{{parseTime(endTime.getTime()/1000, "{y}-{m}-{d}")}}<span class="iconfont">&#xe74a;</span> </div>
9
-            </li>
10
-          </ul>
11
-        </div>
12
-        <div class="blueBorder"></div>
13
-      <van-list
14
-        width="100%"
15
-        v-model="loading"
16
-        :finished="finished"
17
-        @load="onLoad"
18
-      >
19
-           <div class="tableTit " >
20
-                <ul>
21
-                    <li style="width:10%;">序号</li>
22
-                    <li style="width:15%;">日期</li>
23
-                    <li style="width:75%;">宣教内容</li>
24
-                </ul>
25
-            </div>
26
-            <div class="tableDate" >
27
-                <ul v-for="(item,index) in tableDate" :key="index" :value="item.value">
28
-                    <li style="width:10%;">{{index+1}}</li>
29
-                    <li style="width:15%;">{{parseTime(item.assessment_date, "{y}-{m}-{d}")}}</li>
30
-                    <li style="width:75%;">{{item.mission}}</li>
31
-                </ul>
32
-         </div>
33
-          <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
34
-        <div class="NoData" v-show="tableDate.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
35
-
36
-      </van-list>
37
-
38
-
39
-
40
-      <mt-datetime-picker
41
-        ref="start_date_picker"
42
-        type="date"
43
-        @confirm="handleStartDateConfirm"
44
-        :endDate="new Date()"
45
-        v-model="startTime">
46
-      </mt-datetime-picker>
47
-
48
-      <mt-datetime-picker
49
-        ref="end_date_picker"
50
-        type="date"
51
-        @confirm="handleEndDateConfirm"
52
-        :endDate="new Date()"
53
-        v-model="endTime">
54
-      </mt-datetime-picker>
2
+  <div>
3
+    <div class="choice">
4
+      <ul>
5
+        <li>
6
+          日期查询:
7
+          <div @click="openStartPicker" class>
8
+            {{parseTime(startTime.getTime()/1000, "{y}-{m}-{d}")}}
9
+            <span class="iconfont">&#xe74a;</span>
10
+          </div>
11
+          <span class="line"></span>
12
+          <div @click="openEndPicker" class>
13
+            {{parseTime(endTime.getTime()/1000, "{y}-{m}-{d}")}}
14
+            <span class="iconfont">&#xe74a;</span>
15
+          </div>
16
+        </li>
17
+      </ul>
18
+    </div>
19
+    <div class="blueBorder"></div>
20
+    <van-list width="100%" v-model="loading" :finished="finished" @load="onLoad">
21
+      <div class="tableTit">
22
+        <ul>
23
+          <li style="width:10%;">序号</li>
24
+          <li style="width:15%;">日期</li>
25
+          <li style="width:75%;">宣教内容</li>
26
+        </ul>
27
+      </div>
28
+      <div class="tableDate">
29
+        <ul v-for="(item,index) in tableDate" :key="index" :value="item.value">
30
+          <li style="width:10%;">{{index+1}}</li>
31
+          <li style="width:15%;">{{parseTime(item.assessment_date, "{y}-{m}-{d}")}}</li>
32
+          <li style="width:75%;">{{item.mission}}</li>
33
+        </ul>
34
+      </div>
35
+      <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
36
+      <div class="NoData" v-show="tableDate.length == 0">
37
+        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
38
+      </div>
39
+    </van-list>
55
 
40
 
41
+    <mt-datetime-picker
42
+      ref="start_date_picker"
43
+      type="date"
44
+      @confirm="handleStartDateConfirm"
45
+      :endDate="new Date()"
46
+      v-model="startTime"
47
+    ></mt-datetime-picker>
56
 
48
 
57
-    </div>
49
+    <mt-datetime-picker
50
+      ref="end_date_picker"
51
+      type="date"
52
+      @confirm="handleEndDateConfirm"
53
+      :endDate="new Date()"
54
+      v-model="endTime"
55
+    ></mt-datetime-picker>
56
+  </div>
58
 </template>
57
 </template>
59
 
58
 
60
 <script>
59
 <script>
61
-  import {parseTime} from "@/utils"
62
-  import {getAllEducationList} from '@/api/patient';
60
+import { parseTime } from "@/utils";
61
+import { getAllEducationList } from "@/api/patient";
63
 
62
 
64
-  import { Popover } from "vux";
63
+import { Popover } from "vux";
65
 export default {
64
 export default {
66
   name: "LongTable",
65
   name: "LongTable",
67
-  created(){
68
-    this.tableDate=[]
66
+  created() {
67
+    this.tableDate = [];
69
 
68
 
69
+    this.queryParams.start_time = this.parseTime(
70
+      new Date().getTime() / 1000,
71
+      "{y}-{m}-{d}"
72
+    );
73
+    this.queryParams.end_time = this.parseTime(
74
+      new Date().getTime() / 1000,
75
+      "{y}-{m}-{d}"
76
+    );
77
+    this.queryParams.patient_id = this.$route.query.patient_id;
78
+    this.queryParams.page = this.queryParams.page + 1;
79
+    this.queryParams.limit = 15;
80
+    this.tableDate = [];
70
 
81
 
71
-    this.queryParams.start_time = this.parseTime(new Date().getTime() / 1000, "{y}-{m}-{d}")
72
-    this.queryParams.end_time = this.parseTime(new Date().getTime() / 1000, "{y}-{m}-{d}")
73
-    this.queryParams.patient_id = this.$route.query.patient_id
74
-    this.queryParams.page = this.queryParams.page + 1
75
-    this.queryParams.limit = 15
76
-    this.tableDate=[]
77
-
78
-    getAllEducationList(this.queryParams).then(response =>{
79
-      if(response.data.state == 0){
82
+    getAllEducationList(this.queryParams).then(response => {
83
+      if (response.data.state == 0) {
80
         return false;
84
         return false;
81
-      }else{
82
-        if(response.data.data.total == 0){
83
-        }else{
84
-          for(let i = 0; i < response.data.data.edus.length;i++){
85
-            this.tableDate.push(response.data.data.edus[i])
85
+      } else {
86
+        if (response.data.data.total == 0) {
87
+        } else {
88
+          for (let i = 0; i < response.data.data.edus.length; i++) {
89
+            this.tableDate.push(response.data.data.edus[i]);
86
           }
90
           }
87
         }
91
         }
88
       }
92
       }
89
     });
93
     });
90
-
91
   },
94
   },
92
   data() {
95
   data() {
93
     return {
96
     return {
99
       endTime: new Date(),
102
       endTime: new Date(),
100
 
103
 
101
       queryParams: {
104
       queryParams: {
102
-        mode_id: '',
105
+        mode_id: "",
103
         start_time: "",
106
         start_time: "",
104
         end_time: "",
107
         end_time: "",
105
         page: 0,
108
         page: 0,
106
         patient_id: 0,
109
         patient_id: 0,
107
-        limit: 15,
108
-      },
109
-
110
+        limit: 15
111
+      }
110
     };
112
     };
111
-  },  methods: {
113
+  },
114
+  methods: {
112
     parseTime(time, layout) {
115
     parseTime(time, layout) {
113
-      return parseTime(time, layout)
114
-    },onLoad() {
115
-      this.queryParams.start_time = this.parseTime(this.startTime.getTime()/1000, "{y}-{m}-{d}")
116
-      this.queryParams.end_time = this.parseTime(this.endTime.getTime()/1000, "{y}-{m}-{d}")
117
-      this.queryParams.patient_id = this.$route.query.patient_id
118
-      this.queryParams.page = this.queryParams.page + 1
119
-      this.queryParams.limit = 15
116
+      return parseTime(time, layout);
117
+    },
118
+    onLoad() {
119
+      this.queryParams.start_time = this.parseTime(
120
+        this.startTime.getTime() / 1000,
121
+        "{y}-{m}-{d}"
122
+      );
123
+      this.queryParams.end_time = this.parseTime(
124
+        this.endTime.getTime() / 1000,
125
+        "{y}-{m}-{d}"
126
+      );
127
+      this.queryParams.patient_id = this.$route.query.patient_id;
128
+      this.queryParams.page = this.queryParams.page + 1;
129
+      this.queryParams.limit = 15;
120
 
130
 
121
-      getAllEducationList(params).then(response =>{
122
-        if(response.data.state == 0){
131
+      getAllEducationList(params).then(response => {
132
+        if (response.data.state == 0) {
123
           this.finished = true;
133
           this.finished = true;
124
           this.loading = false;
134
           this.loading = false;
125
           return false;
135
           return false;
126
-        }else{
127
-          if(response.data.data.edus.length == 0){
136
+        } else {
137
+          if (response.data.data.edus.length == 0) {
128
             this.finished = true;
138
             this.finished = true;
129
             this.loading = false;
139
             this.loading = false;
130
-
131
-          }else{
132
-            for(let i = 0; i < response.data.data.edus.length;i++){
133
-              this.tableDate.push(response.data.data.edus[i])
140
+          } else {
141
+            for (let i = 0; i < response.data.data.edus.length; i++) {
142
+              this.tableDate.push(response.data.data.edus[i]);
134
             }
143
             }
135
             this.loading = false;
144
             this.loading = false;
136
           }
145
           }
137
         }
146
         }
138
       });
147
       });
139
-
140
-
141
     },
148
     },
142
-    handleStartDateConfirm: function (val) {
143
-      this.queryParams.start_time = this.parseTime(this.startTime / 1000, "{y}-{m}-{d}")
144
-      this.queryParams.end_time = this.parseTime(this.endTime / 1000, "{y}-{m}-{d}")
145
-      this.queryParams.page =  1
146
-      this.queryParams.limit = 15
147
-
148
-      this.getRecordList(this.queryParams)
149
-
149
+    handleStartDateConfirm: function(val) {
150
+      this.queryParams.start_time = this.parseTime(
151
+        this.startTime / 1000,
152
+        "{y}-{m}-{d}"
153
+      );
154
+      this.queryParams.end_time = this.parseTime(
155
+        this.endTime / 1000,
156
+        "{y}-{m}-{d}"
157
+      );
158
+      this.queryParams.page = 1;
159
+      this.queryParams.limit = 15;
150
 
160
 
161
+      this.getRecordList(this.queryParams);
151
     },
162
     },
152
-    handleEndDateConfirm: function (val) {
153
-      this.queryParams.start_time = this.parseTime(this.startTime / 1000, "{y}-{m}-{d}")
154
-      this.queryParams.end_time = this.parseTime(this.endTime / 1000, "{y}-{m}-{d}")
155
-      this.queryParams.page =  1
156
-      this.queryParams.limit = 15
157
-      this.getRecordList(this.queryParams)
158
-
159
-    },openStartPicker: function () {
163
+    handleEndDateConfirm: function(val) {
164
+      this.queryParams.start_time = this.parseTime(
165
+        this.startTime / 1000,
166
+        "{y}-{m}-{d}"
167
+      );
168
+      this.queryParams.end_time = this.parseTime(
169
+        this.endTime / 1000,
170
+        "{y}-{m}-{d}"
171
+      );
172
+      this.queryParams.page = 1;
173
+      this.queryParams.limit = 15;
174
+      this.getRecordList(this.queryParams);
175
+    },
176
+    openStartPicker: function() {
160
       this.$refs.start_date_picker.open();
177
       this.$refs.start_date_picker.open();
161
     },
178
     },
162
-    openEndPicker: function () {
179
+    openEndPicker: function() {
163
       this.$refs.end_date_picker.open();
180
       this.$refs.end_date_picker.open();
164
-    },getRecordList: function (val) {
165
-      this.tableDate=[]
166
-      getAllEducationList(val).then(response =>{
167
-        if(response.data.state == 0){
181
+    },
182
+    getRecordList: function(val) {
183
+      this.tableDate = [];
184
+      getAllEducationList(val).then(response => {
185
+        if (response.data.state == 0) {
168
           return false;
186
           return false;
169
-        }else{
170
-          if(response.data.data.edus.length == 0){
171
-          }else{
172
-            for(let i = 0; i < response.data.data.edus.length;i++){
173
-              this.tableDate.push(response.data.data.edus[i])
187
+        } else {
188
+          if (response.data.data.edus.length == 0) {
189
+          } else {
190
+            for (let i = 0; i < response.data.data.edus.length; i++) {
191
+              this.tableDate.push(response.data.data.edus[i]);
174
             }
192
             }
175
           }
193
           }
176
         }
194
         }
177
       });
195
       });
178
-
179
     }
196
     }
180
   },
197
   },
181
 
198
 
193
     @include align-items-center;
210
     @include align-items-center;
194
     @include text-align;
211
     @include text-align;
195
     @include justify-content-between;
212
     @include justify-content-between;
196
-    width: 40%;
213
+    width: 58%;
197
     margin: 0 auto;
214
     margin: 0 auto;
198
     font-size: 0.32rem;
215
     font-size: 0.32rem;
199
     color: $pgh-color;
216
     color: $pgh-color;
202
       @include align-items-center;
219
       @include align-items-center;
203
       @include text-align;
220
       @include text-align;
204
       @include justify-content-between;
221
       @include justify-content-between;
205
-    padding: 0.3rem 0;
222
+      padding: 0.3rem 0;
206
 
223
 
207
       .iconfont {
224
       .iconfont {
208
         margin: 0 0.1rem;
225
         margin: 0 0.1rem;
209
         @media only screen and (max-width: 812px) {
226
         @media only screen and (max-width: 812px) {
210
-        font-size: 12px !important;
227
+          font-size: 12px !important;
211
         }
228
         }
212
       }
229
       }
213
-      .line{
230
+      .line {
214
         background: #a8b3ba;
231
         background: #a8b3ba;
215
         width: 0.2rem;
232
         width: 0.2rem;
216
         height: 1px;
233
         height: 1px;
230
     @include text-align;
247
     @include text-align;
231
     @include justify-content-center;
248
     @include justify-content-center;
232
     li {
249
     li {
233
-       border-right: 2px #fff solid;
250
+      border-right: 2px #fff solid;
234
       font-size: 0.3rem;
251
       font-size: 0.3rem;
235
       height: 0.88rem;
252
       height: 0.88rem;
236
       line-height: 0.88rem;
253
       line-height: 0.88rem;
246
   @include box-sizing;
263
   @include box-sizing;
247
   ul {
264
   ul {
248
     @include display-flex;
265
     @include display-flex;
249
-      @include align-items-center;
250
-      @include text-align;
251
-      @include justify-content-center;
266
+    @include align-items-center;
267
+    @include text-align;
268
+    @include justify-content-center;
252
     li {
269
     li {
253
       font-size: 0.3rem;
270
       font-size: 0.3rem;
254
-      padding:0.16rem 0;
271
+      padding: 0.16rem 0;
255
       line-height: 0.5rem;
272
       line-height: 0.5rem;
256
       border-right: 2px #fff solid;
273
       border-right: 2px #fff solid;
257
       span {
274
       span {

+ 49 - 42
src/pages/main/dialysis/RecordTable.vue View File

1
 <template>
1
 <template>
2
   <div>
2
   <div>
3
-    <van-list
4
-      width="100%"
5
-      v-model="loading"
6
-      :finished="finished"
7
-      @load="onLoad"
8
-    >
3
+    <van-list width="100%" v-model="loading" :finished="finished" @load="onLoad">
9
       <div class="choice">
4
       <div class="choice">
10
         <ul>
5
         <ul>
11
-          <li>透析时间:
12
-            <div @click="openStartPicker" class="">{{parseTime(startTime.getTime()/1000, "{y}-{m}-{d}")}}<span
13
-              class="iconfont">&#xe74a;</span></div>
6
+          <li>
7
+            透析时间:
8
+            <div @click="openStartPicker" class>
9
+              {{parseTime(startTime.getTime()/1000, "{y}-{m}-{d}")}}
10
+              <span class="iconfont">&#xe74a;</span>
11
+            </div>
14
             <span class="line"></span>
12
             <span class="line"></span>
15
-            <div @click="openEndPicker" class="">{{parseTime(endTime.getTime()/1000, "{y}-{m}-{d}")}}<span
16
-              class="iconfont">&#xe74a;</span></div>
13
+            <div @click="openEndPicker" class>
14
+              {{parseTime(endTime.getTime()/1000, "{y}-{m}-{d}")}}
15
+              <span class="iconfont">&#xe74a;</span>
16
+            </div>
17
           </li>
17
           </li>
18
 
18
 
19
           <!-- <popover placement="bottom">
19
           <!-- <popover placement="bottom">
23
               </ul>
23
               </ul>
24
             </div>
24
             </div>
25
             <li>透析模式:{{modeNameOther(mode_id)}}<span class="iconfont">&#xe74a;</span></li>
25
             <li>透析模式:{{modeNameOther(mode_id)}}<span class="iconfont">&#xe74a;</span></li>
26
-          </popover> -->
27
-
28
-          <el-popover
29
-                placement="bottom"
30
-                trigger="click">
31
-                <li slot="reference">透析模式:{{modeNameOther(mode_id)}}<span class="iconfont">&#xe74a;</span></li>
32
-                <div class="popover-demo-content">
33
-                  <ul>
34
-                    <li  v-for="item in modeOptions" :key="item.id" @click="itemClick(item.id)"   :class="mode_id == item.id ? 'tick' : ''">{{item.name}}</li>
35
-                  </ul>
36
-                </div>
37
-              </el-popover>
26
+          </popover>-->
38
 
27
 
28
+          <el-popover placement="bottom" trigger="click">
29
+            <li slot="reference">
30
+              透析模式:{{modeNameOther(mode_id)}}
31
+              <span class="iconfont">&#xe74a;</span>
32
+            </li>
33
+            <div class="popover-demo-content">
34
+              <ul>
35
+                <li
36
+                  v-for="item in modeOptions"
37
+                  :key="item.id"
38
+                  @click="itemClick(item.id)"
39
+                  :class="mode_id == item.id ? 'tick' : ''"
40
+                >{{item.name}}</li>
41
+              </ul>
42
+            </div>
43
+          </el-popover>
39
         </ul>
44
         </ul>
40
       </div>
45
       </div>
41
       <div class="blueBorder"></div>
46
       <div class="blueBorder"></div>
42
       <div style="width:100%;overflow:hildden;overflow-x:auto;" class="RecordTable">
47
       <div style="width:100%;overflow:hildden;overflow-x:auto;" class="RecordTable">
43
-        <table class="table" style="">
48
+        <table class="table" style>
44
           <tr>
49
           <tr>
45
             <th width="124px">透析日期</th>
50
             <th width="124px">透析日期</th>
46
             <th width="72px">班次</th>
51
             <th width="72px">班次</th>
57
             <th width="92px">治疗护士</th>
62
             <th width="92px">治疗护士</th>
58
             <th width="92px">治疗医生</th>
63
             <th width="92px">治疗医生</th>
59
           </tr>
64
           </tr>
60
-          <tr v-for="(item,index) in tableDate" :key="index" :value="item.value" @click="jump(item)">
65
+          <tr
66
+            v-for="(item,index) in tableDate"
67
+            :key="index"
68
+            :value="item.value"
69
+            @click="jump(item)"
70
+          >
61
             <td>{{parseTime(item.dialysis_date, "{y}-{m}-{d}")}}</td>
71
             <td>{{parseTime(item.dialysis_date, "{y}-{m}-{d}")}}</td>
62
             <td>{{scheduleType(item.schedule_type)}}</td>
72
             <td>{{scheduleType(item.schedule_type)}}</td>
63
             <td>{{item.partition_name}} - {{item.device_number}}</td>
73
             <td>{{item.partition_name}} - {{item.device_number}}</td>
77
           </tr>
87
           </tr>
78
         </table>
88
         </table>
79
         <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
89
         <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
80
-        <div class="NoData" v-show="tableDate.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
81
-
90
+        <div class="NoData" v-show="tableDate.length == 0">
91
+          <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
92
+        </div>
82
       </div>
93
       </div>
83
     </van-list>
94
     </van-list>
84
 
95
 
87
       type="date"
98
       type="date"
88
       @confirm="handleStartDateConfirm"
99
       @confirm="handleStartDateConfirm"
89
       :endDate="new Date()"
100
       :endDate="new Date()"
90
-      v-model="startTime">
91
-    </mt-datetime-picker>
101
+      v-model="startTime"
102
+    ></mt-datetime-picker>
92
 
103
 
93
     <mt-datetime-picker
104
     <mt-datetime-picker
94
       ref="end_date_picker"
105
       ref="end_date_picker"
95
       type="date"
106
       type="date"
96
       @confirm="handleEndDateConfirm"
107
       @confirm="handleEndDateConfirm"
97
       :endDate="new Date()"
108
       :endDate="new Date()"
98
-      v-model="endTime">
99
-    </mt-datetime-picker>
100
-
109
+      v-model="endTime"
110
+    ></mt-datetime-picker>
101
   </div>
111
   </div>
102
 </template>
112
 </template>
103
 
113
 
302
       return typeName;
312
       return typeName;
303
     },
313
     },
304
     setAnticoagulantsConfit: function(prescription) {
314
     setAnticoagulantsConfit: function(prescription) {
305
-
306
-
307
       if (
315
       if (
308
         typeof this.anticoagulantsConfit[prescription.anticoagulant] ==
316
         typeof this.anticoagulantsConfit[prescription.anticoagulant] ==
309
         "undefined"
317
         "undefined"
310
       ) {
318
       ) {
311
         return "";
319
         return "";
312
       } else {
320
       } else {
313
-
314
         if (this.anticoagulantsConfit[prescription.anticoagulant].shouji != 1) {
321
         if (this.anticoagulantsConfit[prescription.anticoagulant].shouji != 1) {
315
           return this.anticoagulantsConfit[prescription.anticoagulant].name;
322
           return this.anticoagulantsConfit[prescription.anticoagulant].name;
316
         } else {
323
         } else {
414
     @include align-items-center;
421
     @include align-items-center;
415
     @include text-align;
422
     @include text-align;
416
     @include justify-content-between;
423
     @include justify-content-between;
417
-    width: 70%;
424
+    width: 88%;
418
     margin: 0 auto;
425
     margin: 0 auto;
419
     font-size: 0.32rem;
426
     font-size: 0.32rem;
420
     color: $pgh-color;
427
     color: $pgh-color;
425
       padding: 0.3rem 0;
432
       padding: 0.3rem 0;
426
       .iconfont {
433
       .iconfont {
427
         margin: 0 0.1rem;
434
         margin: 0 0.1rem;
428
-  @media only screen and (max-width: 812px) {
429
-  font-size: 12px !important;
430
-  }
435
+        @media only screen and (max-width: 812px) {
436
+          font-size: 12px !important;
437
+        }
431
       }
438
       }
432
       .line {
439
       .line {
433
         background: #a8b3ba;
440
         background: #a8b3ba;
439
     }
446
     }
440
   }
447
   }
441
 }
448
 }
442
-.RecordTable{
443
-  padding-top:0;
449
+.RecordTable {
450
+  padding-top: 0;
444
   background: #fff;
451
   background: #fff;
445
   min-height: calc(100vh - 180px);
452
   min-height: calc(100vh - 180px);
446
 }
453
 }
447
-.popover-demo-content{
454
+.popover-demo-content {
448
   max-height: 400px;
455
   max-height: 400px;
449
   overflow-y: scroll;
456
   overflow-y: scroll;
450
 }
457
 }

+ 174 - 174
src/pages/main/index.vue View File

1
 <template>
1
 <template>
2
-
3
   <div class="mainBox">
2
   <div class="mainBox">
4
-    <div>
5
-    <side-bar :active_index="0" :total_read_dot="readNum"></side-bar>
6
-    <div class="mainContent">
7
-      <record-page :un_read_wait_num="unReadWaitNum" :un_read_dialysis_num="unReadDialysisNum"></record-page>
8
-    </div>
3
+    <div class="newBox">
4
+      <div class="mainContent">
5
+        <record-page :un_read_wait_num="unReadWaitNum" :un_read_dialysis_num="unReadDialysisNum"></record-page>
6
+      </div>
7
+      <side-bar :active_index="0" :total_read_dot="readNum"></side-bar>
9
     </div>
8
     </div>
10
-
11
   </div>
9
   </div>
12
 </template>
10
 </template>
13
 
11
 
14
 
12
 
15
 <script>
13
 <script>
16
-  import RecordPage from './RecordPage'
17
-  import SideBar from '@/pages/layout/SideBar'
18
-  import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
19
-  import {parseTime} from '@/utils/index'
20
-
21
-  export default {
22
-    name: 'Main',
23
-    data () {
24
-      return {
25
-        timer:null,
26
-        scheduals: [],
27
-        advice_groups: [],
28
-        unReadWaitNum: 0,
29
-        unReadDialysisNum: 0,
30
-      }
31
-    },
32
-    components: {
33
-      RecordPage,
34
-      SideBar,
35
-    },
36
-    created () {
37
-      this.requestScheduals()
38
-      this.requestDialysisScheduals()
14
+import RecordPage from "./RecordPage";
15
+import SideBar from "@/pages/layout/SideBar";
16
+import { getDialysisScheduals, getWaitingScheduals } from "@/api/dialysis";
17
+import { parseTime } from "@/utils/index";
18
+
19
+export default {
20
+  name: "Main",
21
+  data() {
22
+    return {
23
+      timer: null,
24
+      scheduals: [],
25
+      advice_groups: [],
26
+      unReadWaitNum: 0,
27
+      unReadDialysisNum: 0
28
+    };
29
+  },
30
+  components: {
31
+    RecordPage,
32
+    SideBar
33
+  },
34
+  created() {
35
+    this.requestScheduals();
36
+    this.requestDialysisScheduals();
37
+  },
38
+  methods: {
39
+    requestScheduals() {
40
+      var date = parseTime(Date.parse(new Date()), "{y}-{m}-{d}");
41
+      getWaitingScheduals({ date: date }).then(rs => {
42
+        var resp = rs.data;
43
+        // console.log(resp);
44
+        if (resp.state == 1) {
45
+          var scheduals = resp.data.scheduals;
46
+          this.scheduals = scheduals;
47
+          console.log(this.scheduals);
48
+          let doctorAdvice = [];
49
+          for (let i = 0; i < this.scheduals.length; i++) {
50
+            for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
51
+              if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
52
+                doctorAdvice.push(this.scheduals[i].doctor_advice[y]);
53
+              }
54
+            }
55
+          }
39
 
56
 
57
+          const sorted = this.groupBy(doctorAdvice, function(item) {
58
+            return [item.groupno];
59
+          });
60
+
61
+          this.unReadWaitNum = sorted.length;
62
+        } else {
63
+          this.$toast({
64
+            message: resp.msg
65
+          });
66
+        }
67
+      });
40
     },
68
     },
41
-    methods: {
42
-
43
-      requestScheduals () {
44
-        var date = parseTime(Date.parse(new Date()), '{y}-{m}-{d}')
45
-        getWaitingScheduals({date: date}).then(rs => {
46
-          var resp = rs.data
47
-          // console.log(resp);
69
+    requestDialysisScheduals() {
70
+      var date = this.$store.getters.app.dialysis_area.schedule_date;
71
+      var type = 0;
72
+      getDialysisScheduals({ type: type, date: parseTime(date, "{y}-{m}-{d}") })
73
+        .then(rs => {
74
+          var resp = rs.data;
48
           if (resp.state == 1) {
75
           if (resp.state == 1) {
49
-            var scheduals = resp.data.scheduals
50
-            this.scheduals = scheduals
51
-            console.log(this.scheduals)
52
-            let doctorAdvice = []
53
-            for (let i = 0; i < this.scheduals.length; i++) {
54
-              for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
55
-                if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
56
-                  doctorAdvice.push(this.scheduals[i].doctor_advice[y])
76
+            var scheduals = resp.data.scheduals;
77
+            let doctorAdvice = [];
78
+            for (let index = 0; index < scheduals.length; index++) {
79
+              const schedual = scheduals[index];
80
+              if (schedual.dialysis_order == null) {
81
+                continue;
82
+              }
83
+              for (let y = 0; y < schedual.doctor_advice.length; y++) {
84
+                if (schedual.doctor_advice[y].execution_state == 2) {
85
+                  doctorAdvice.push(schedual.doctor_advice[y]);
57
                 }
86
                 }
58
               }
87
               }
59
             }
88
             }
60
 
89
 
61
-            const sorted = this.groupBy(doctorAdvice, function (item) {
62
-              return [item.groupno]
63
-            })
64
-
65
-            this.unReadWaitNum = sorted.length
90
+            const sorted = this.groupBy(doctorAdvice, function(item) {
91
+              return [item.groupno];
92
+            });
66
 
93
 
94
+            this.unReadDialysisNum = sorted.length;
67
           } else {
95
           } else {
68
             this.$toast({
96
             this.$toast({
69
               message: resp.msg
97
               message: resp.msg
70
-            })
98
+            });
71
           }
99
           }
72
         })
100
         })
73
-      },
74
-      requestDialysisScheduals () {
75
-        var date = this.$store.getters.app.dialysis_area.schedule_date
76
-        var type = 0
77
-        getDialysisScheduals({type: type, date: parseTime(date, '{y}-{m}-{d}')})
78
-          .then(rs => {
79
-            var resp = rs.data
80
-            if (resp.state == 1) {
81
-              var scheduals = resp.data.scheduals
82
-              let doctorAdvice = []
83
-              for (let index = 0; index < scheduals.length; index++) {
84
-                const schedual = scheduals[index]
85
-                if (schedual.dialysis_order == null) {
86
-                  continue
87
-                }
88
-                for (let y = 0; y < schedual.doctor_advice.length; y++) {
89
-                  if (schedual.doctor_advice[y].execution_state == 2) {
90
-                    doctorAdvice.push(schedual.doctor_advice[y])
91
-                  }
92
-                }
93
-              }
94
-
95
-              const sorted = this.groupBy(doctorAdvice, function (item) {
96
-                return [item.groupno]
97
-              })
98
-
99
-              this.unReadDialysisNum = sorted.length
100
-
101
-            } else {
102
-              this.$toast({
103
-                message: resp.msg
104
-              })
105
-            }
106
-          })
107
-          .catch(v => {
108
-          })
109
-      }, groupBy (array, f) {
110
-        const groups = {}
111
-        array.forEach(function (o) {
112
-          const group = JSON.stringify(f(o))
113
-          groups[group] = groups[group] || []
114
-          groups[group].push(o)
115
-        })
116
-        return Object.keys(groups).map(function (group) {
117
-          return groups[group]
118
-        })
119
-      },getData(){
120
-        console.log("111111")
121
-        // this.requestScheduals()
122
-        // this.requestDialysisScheduals()
123
-      }
124
-
101
+        .catch(v => {});
125
     },
102
     },
126
-    computed: {
127
-      readNum: function () {
128
-        return this.unReadWaitNum + this.unReadDialysisNum
129
-
130
-      }
131
-
132
-    }, mounted(){
133
-      this.timer =   window.setInterval(() => {
134
-        setTimeout(this.getData(), 0)
135
-      }, 30000)
136
-
137
-
138
-    },beforeDestroy() {
139
-      clearInterval(this.timer);
140
-      this.timer = null;
103
+    groupBy(array, f) {
104
+      const groups = {};
105
+      array.forEach(function(o) {
106
+        const group = JSON.stringify(f(o));
107
+        groups[group] = groups[group] || [];
108
+        groups[group].push(o);
109
+      });
110
+      return Object.keys(groups).map(function(group) {
111
+        return groups[group];
112
+      });
141
     },
113
     },
142
-
114
+    getData() {
115
+      console.log("111111");
116
+      // this.requestScheduals()
117
+      // this.requestDialysisScheduals()
118
+    }
119
+  },
120
+  computed: {
121
+    readNum: function() {
122
+      return this.unReadWaitNum + this.unReadDialysisNum;
123
+    }
124
+  },
125
+  mounted() {
126
+    this.timer = window.setInterval(() => {
127
+      setTimeout(this.getData(), 0);
128
+    }, 30000);
129
+  },
130
+  beforeDestroy() {
131
+    clearInterval(this.timer);
132
+    this.timer = null;
143
   }
133
   }
134
+};
144
 </script>
135
 </script>
145
 
136
 
146
 <style style="stylesheet/scss" lang="scss" scoped>
137
 <style style="stylesheet/scss" lang="scss" scoped>
147
-  html,
148
-  body {
138
+html,
139
+body {
149
   height: 100%;
140
   height: 100%;
150
-  }
151
-  .mainBox {
141
+}
142
+.mainBox {
152
   height: 100%;
143
   height: 100%;
153
-  font-size:0.3rem;
144
+  font-size: 0.3rem;
154
   .sideColumn {
145
   .sideColumn {
155
-  .column {
156
-  .head {
157
-  @include display-flex;
158
-  @include align-items-center;
159
-  @include flex-direction;
160
-  @include text-align;
161
-  @include justify-content-center;
162
-  margin: 0.5rem 0 0.5rem 0;
163
-  img {
164
-  width: 100%;
165
-  height: 100%;
166
-  border-radius: 0.5rem;
167
-  width: 0.7rem;
168
-  height: 0.7rem;
169
-  }
170
-  }
171
-  .sidebar {
172
-  @include display-flex;
173
-  @include align-items-center;
174
-  @include flex-direction;
175
-  @include text-align;
176
-  padding: 0;
177
-  li {
178
-  padding: 0 0 0.8rem 0;
179
-  a {
180
-  color: #a8b3ba;
181
-  display: inline-block;
182
-  padding: 0;
183
-  margin: 0;
184
-  p {
185
-  font-size: 0.24rem;
186
-  margin-top: 0.2rem;
187
-  }
188
-  .iconfont {
189
-  font-size: 0.5rem;
190
-  display: inline-block;
191
-  }
192
-  }
193
-  &.active {
194
-  a {
195
-  color: #409eff;
196
-  }
197
-  }
198
-  }
199
-  }
200
-  }
201
-  }
146
+    .column {
147
+      .head {
148
+        @include display-flex;
149
+        @include align-items-center;
150
+        @include flex-direction;
151
+        @include text-align;
152
+        @include justify-content-center;
153
+        margin: 0.5rem 0 0.5rem 0;
154
+        img {
155
+          width: 100%;
156
+          height: 100%;
157
+          border-radius: 0.5rem;
158
+          width: 0.7rem;
159
+          height: 0.7rem;
160
+        }
161
+      }
162
+      .sidebar {
163
+        @include display-flex;
164
+        @include align-items-center;
165
+        @include flex-direction;
166
+        @include text-align;
167
+        padding: 0;
168
+        li {
169
+          padding: 0 0 0.8rem 0;
170
+          a {
171
+            color: #a8b3ba;
172
+            display: inline-block;
173
+            padding: 0;
174
+            margin: 0;
175
+            p {
176
+              font-size: 0.24rem;
177
+              margin-top: 0.2rem;
178
+            }
179
+            .iconfont {
180
+              font-size: 0.5rem;
181
+              display: inline-block;
182
+            }
183
+          }
184
+          &.active {
185
+            a {
186
+              color: #409eff;
187
+            }
188
+          }
189
+        }
190
+      }
191
+    }
202
   }
192
   }
203
-  .mainContent{
204
-  margin: 0 0 0 1.58rem;
193
+}
194
+.mainContent {
195
+  // margin: 0 0 0 1.58rem;
196
+}
197
+.newBox {
198
+  display: flex;
199
+  flex-direction: column;
200
+  height: 100%;
201
+  overflow: hidden;
202
+  > :first-child {
203
+    flex: 1;
204
+    overflow: auto;
205
   }
205
   }
206
-
206
+}
207
 </style>
207
 </style>

+ 15 - 5
src/pages/main/records/CaseHistory.vue View File

1
 <template>
1
 <template>
2
   <div>
2
   <div>
3
     <div class="nav">
3
     <div class="nav">
4
-      <ul style="width: 30%">
4
+      <ul style="width: 50%">
5
         <li
5
         <li
6
           v-for="(item, i) in ['基本信息', '检验检查', '医嘱']"
6
           v-for="(item, i) in ['基本信息', '检验检查', '医嘱']"
7
           :key="i"
7
           :key="i"
8
           :class="index == i ? 'active' : ''"
8
           :class="index == i ? 'active' : ''"
9
           @click="ClickTab(i, item)"
9
           @click="ClickTab(i, item)"
10
-        >
11
-          {{ item }}
12
-        </li>
10
+        >{{ item }}</li>
13
       </ul>
11
       </ul>
14
     </div>
12
     </div>
15
 
13
 
76
   top: 63px;
74
   top: 63px;
77
   right: 0;
75
   right: 0;
78
   z-index: 66;
76
   z-index: 66;
79
-  left: 1.58rem;
77
+  left: 0;
80
   background: #fff;
78
   background: #fff;
81
   background: #fff;
79
   background: #fff;
82
   @media only screen and (max-width: 812px) {
80
   @media only screen and (max-width: 812px) {
83
     top: 45px !important;
81
     top: 45px !important;
84
   }
82
   }
83
+  @media only screen and (min-width: 376px) and (max-width: 668px) {
84
+    top: 50px !important;
85
+  }
86
+  @media only screen and (min-width: 415px) and (max-width: 736px) {
87
+    top: 50px !important;
88
+  }
89
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
90
+    top: 67px;
91
+  }
92
+  @media only screen and (min-width: 737px) and (max-width: 768px) {
93
+    padding-top: 20px;
94
+  }
85
   ul {
95
   ul {
86
     width: 60%;
96
     width: 60%;
87
     margin: 0 auto;
97
     margin: 0 auto;

+ 3 - 0
src/pages/main/records/RecordsTab.vue View File

339
   width: 100%;
339
   width: 100%;
340
   padding-top:62px; 
340
   padding-top:62px; 
341
   min-height: calc(100vh - 130px);
341
   min-height: calc(100vh - 130px);
342
+  @media only screen and (min-width: 737px) and (max-width: 768px) {
343
+    padding-top: 100px;
344
+  }
342
   .data {
345
   .data {
343
     width: 11rem;
346
     width: 11rem;
344
     margin: 0 auto;
347
     margin: 0 auto;

File diff suppressed because it is too large
+ 1264 - 1132
src/pages/main/today/TodayTab.vue


+ 130 - 93
src/pages/main/today/acceptsAssessment.vue View File

1
 <template>
1
 <template>
2
   <div class="plate-box">
2
   <div class="plate-box">
3
-    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
4
-    <div class="plate " >
3
+    <h2 class="title">
4
+      <span class="line"></span>
5
+      <p>{{title}}</p>
6
+      <span class="line"></span>
7
+    </h2>
8
+    <div class="plate">
5
       <ul>
9
       <ul>
6
-        <li style="height: 0.6rem;" v-if="isShow('入室方式')">
7
-          <label>入室方式 : </label>
10
+        <li v-if="isShow('入室方式')">
11
+          <label>入室方式 :</label>
8
           <span class="content">{{way}}</span>
12
           <span class="content">{{way}}</span>
9
         </li>
13
         </li>
10
-        <li style="height: 0.6rem;" v-if="isShow('病人情况')">
11
-          <label>病人情况 : </label>
14
+        <li v-if="isShow('病人情况')">
15
+          <label>病人情况 :</label>
12
           <span class="content">{{condition}}</span>
16
           <span class="content">{{condition}}</span>
13
         </li>
17
         </li>
14
-        <li style="height: 0.6rem;" v-if="isShow('病人意识')">
15
-          <label>病人意识 : </label>
18
+        <li v-if="isShow('病人意识')">
19
+          <label>病人意识 :</label>
16
           <span class="content">{{consciousness}}</span>
20
           <span class="content">{{consciousness}}</span>
17
         </li>
21
         </li>
18
-        <li style="height: 0.6rem;" v-if="isShow('体位')">
19
-          <label>体位 : </label>
22
+        <li v-if="isShow('体位')">
23
+          <label>体位 :</label>
20
           <span class="content">{{posture}}</span>
24
           <span class="content">{{posture}}</span>
21
         </li>
25
         </li>
22
-      <!-- </ul>
26
+        <!-- </ul>
23
 
27
 
24
-      <ul> -->
25
-        <li style="height: 0.6rem;" v-if="isShow('病人食欲')">
26
-          <label>病人食欲 : </label>
28
+        <ul>-->
29
+        <li v-if="isShow('病人食欲')">
30
+          <label>病人食欲 :</label>
27
           <span class="content">{{appetite}}</span>
31
           <span class="content">{{appetite}}</span>
28
         </li>
32
         </li>
29
-        <li style="height: 0.6rem;" v-if="isShow('病情')">
30
-          <label>病情 </label>
31
-          <span class="content">{{sickCondition}} </span>
33
+        <li v-if="isShow('病情')">
34
+          <label>病情</label>
35
+          <span class="content">{{sickCondition}}</span>
32
         </li>
36
         </li>
33
 
37
 
34
-        <li style="height: 0.6rem;" v-if="isShow('跌倒风险评估评分')">
38
+        <li v-if="isShow('跌倒风险评估评分')">
35
           <label>跌倒风险评估评分:</label>
39
           <label>跌倒风险评估评分:</label>
36
           <span class="content">{{this.record.score}}分</span>
40
           <span class="content">{{this.record.score}}分</span>
37
         </li>
41
         </li>
38
-        <li style="height: 0.6rem;" v-if="isShow('风险程度')">
42
+        <li v-if="isShow('风险程度')">
39
           <label>风险程度:</label>
43
           <label>风险程度:</label>
40
           <span class="content">{{dangerLevel}}</span>
44
           <span class="content">{{dangerLevel}}</span>
41
         </li>
45
         </li>
42
 
46
 
43
-        <li style="height: 0.6rem;" v-if="isShow('跌倒风险预防措施')">
47
+        <li v-if="isShow('跌倒风险预防措施')">
44
           <label>跌倒风险预防措施:</label>
48
           <label>跌倒风险预防措施:</label>
45
           <span class="content">{{precautions}}</span>
49
           <span class="content">{{precautions}}</span>
46
         </li>
50
         </li>
47
 
51
 
48
-        <li style="height: 0.6rem;" v-if="isShow('其他跌倒风险预防措施')">
52
+        <li v-if="isShow('其他跌倒风险预防措施')">
49
           <label>其他跌倒风险预防措施:</label>
53
           <label>其他跌倒风险预防措施:</label>
50
           <span class="content">{{this.record.precaution_other}}</span>
54
           <span class="content">{{this.record.precaution_other}}</span>
51
         </li>
55
         </li>
52
 
56
 
53
-        <li style="height: 0.6rem;" v-if="isShow('其他病情')">
54
-          <label>其他病情 </label>
55
-          <span class="content">{{this.record.sick_condition_other}} </span>
57
+        <li v-if="isShow('其他病情')">
58
+          <label>其他病情</label>
59
+          <span class="content">{{this.record.sick_condition_other}}</span>
56
         </li>
60
         </li>
57
 
61
 
58
-
59
-
60
-        <li style="height: 0.6rem;"  v-if="isShow('摄入量')">
62
+        <li v-if="isShow('摄入量')">
61
           <label>摄入量:</label>
63
           <label>摄入量:</label>
62
           <span class="content">{{intakes}}</span>
64
           <span class="content">{{intakes}}</span>
63
         </li>
65
         </li>
64
 
66
 
65
-      <!-- </ul>
67
+        <!-- </ul>
66
 
68
 
67
 
69
 
68
-      <ul > -->
69
-        <li style="height: 0.6rem;" v-if="isShow('营养状况')">
70
+        <ul >-->
71
+        <li v-if="isShow('营养状况')">
70
           <label>营养状况:</label>
72
           <label>营养状况:</label>
71
           <span class="content">{{nutritions}}</span>
73
           <span class="content">{{nutritions}}</span>
72
         </li>
74
         </li>
73
-        <li style="height: 0.6rem;" v-if="isShow('心理评估')">
74
-          <label> 心理评估</label>
75
+        <li v-if="isShow('心理评估')">
76
+          <label>心理评估</label>
75
           <span class="content">{{psychologicalAssessment}}</span>
77
           <span class="content">{{psychologicalAssessment}}</span>
76
         </li>
78
         </li>
77
-        <li style="height: 0.6rem;" v-if="isShow('心理评估异常原因')&&this.record.psychological_assessment == 2 ">
79
+        <li v-if="isShow('心理评估异常原因')&&this.record.psychological_assessment == 2 ">
78
           <label>心理评估异常原因:</label>
80
           <label>心理评估异常原因:</label>
79
           <span class="content">{{this.record.psychological_assessment_other}}</span>
81
           <span class="content">{{this.record.psychological_assessment_other}}</span>
80
         </li>
82
         </li>
81
-        <li style="height: 0.6rem;" v-if="isShow('其他心理评估') ">
83
+        <li v-if="isShow('其他心理评估') ">
82
           <label>其他心理评估:</label>
84
           <label>其他心理评估:</label>
83
           <span class="content">{{this.record.psychological_other}}</span>
85
           <span class="content">{{this.record.psychological_other}}</span>
84
         </li>
86
         </li>
85
-
86
       </ul>
87
       </ul>
87
-
88
-
89
     </div>
88
     </div>
90
   </div>
89
   </div>
91
 </template>
90
 </template>
101
         "1": "步行",
100
         "1": "步行",
102
         "2": "扶行",
101
         "2": "扶行",
103
         "3": "轮椅",
102
         "3": "轮椅",
104
-        "4": "平车",
103
+        "4": "平车"
105
       },
104
       },
106
       conditions: {
105
       conditions: {
107
         "1": "住院",
106
         "1": "住院",
108
         "2": "门诊",
107
         "2": "门诊",
109
-        "3": "手术期",
108
+        "3": "手术期"
110
       },
109
       },
111
       consciousnesses: {
110
       consciousnesses: {
112
         "1": "清醒",
111
         "1": "清醒",
113
         "2": "嗜睡",
112
         "2": "嗜睡",
114
-        "3": "昏迷",
113
+        "3": "昏迷"
115
       },
114
       },
116
       appetites: {
115
       appetites: {
117
         "1": "正常",
116
         "1": "正常",
118
         "2": "减退",
117
         "2": "减退",
119
         "3": "恶心",
118
         "3": "恶心",
120
         "4": "呕吐",
119
         "4": "呕吐",
121
-        "5": "腹泻",
120
+        "5": "腹泻"
122
       },
121
       },
123
       postures: {
122
       postures: {
124
         "1": "自动体位",
123
         "1": "自动体位",
125
         "2": "平卧位",
124
         "2": "平卧位",
126
         "3": "半卧位",
125
         "3": "半卧位",
127
         "4": "端坐位",
126
         "4": "端坐位",
128
-        "5": "躁动不安",
129
-      }, sick_condition: {
127
+        "5": "躁动不安"
128
+      },
129
+      sick_condition: {
130
         "1": "一般",
130
         "1": "一般",
131
         "2": "重",
131
         "2": "重",
132
-        "3": "危",
133
-      }, danger_level: {
132
+        "3": "危"
133
+      },
134
+      danger_level: {
134
         "1": "无",
135
         "1": "无",
135
         "2": "低风险",
136
         "2": "低风险",
136
         "3": "中度风险",
137
         "3": "中度风险",
137
-        "4": "高风险",
138
-
139
-      }, intake: {
138
+        "4": "高风险"
139
+      },
140
+      intake: {
140
         "1": "正常",
141
         "1": "正常",
141
-        "2": "减少",
142
-      },nutrition: {
142
+        "2": "减少"
143
+      },
144
+      nutrition: {
143
         "1": "正常",
145
         "1": "正常",
144
-        "2": "营养不良",
145
-      },psychological_assessment: {
146
+        "2": "营养不良"
147
+      },
148
+      psychological_assessment: {
146
         "1": "正常",
149
         "1": "正常",
147
-        "2": "异常",
148
-      },precautionss: {
150
+        "2": "异常"
151
+      },
152
+      precautionss: {
149
         "1": "镇定剂",
153
         "1": "镇定剂",
150
         "2": "约束带",
154
         "2": "约束带",
151
         "3": "床栏",
155
         "3": "床栏",
152
-        "4": "加强宣教",
156
+        "4": "加强宣教"
153
       }
157
       }
154
     };
158
     };
155
   },
159
   },
159
     }
163
     }
160
   },
164
   },
161
   computed: {
165
   computed: {
162
-
163
     way: function() {
166
     way: function() {
164
       if (this.record == null || this.record.id == "") {
167
       if (this.record == null || this.record.id == "") {
165
-        return ""
168
+        return "";
166
       } else {
169
       } else {
167
-        return this.ways[this.record.way] == undefined ? "" : (this.ways[this.record.way] + "")
170
+        return this.ways[this.record.way] == undefined
171
+          ? ""
172
+          : this.ways[this.record.way] + "";
168
       }
173
       }
169
     },
174
     },
170
     condition: function() {
175
     condition: function() {
171
       if (this.record == null || this.record.id == "") {
176
       if (this.record == null || this.record.id == "") {
172
-        return ""
177
+        return "";
173
       } else {
178
       } else {
174
-        return this.conditions[this.record.condition] == undefined ? "" : this.conditions[this.record.condition] + ""
179
+        return this.conditions[this.record.condition] == undefined
180
+          ? ""
181
+          : this.conditions[this.record.condition] + "";
175
       }
182
       }
176
     },
183
     },
177
     consciousness: function() {
184
     consciousness: function() {
178
       if (this.record == null || this.record.id == "") {
185
       if (this.record == null || this.record.id == "") {
179
-        return ""
186
+        return "";
180
       } else {
187
       } else {
181
-        return this.consciousnesses[this.record.consciousness] == undefined ? "" : this.consciousnesses[this.record.consciousness] + ""
188
+        return this.consciousnesses[this.record.consciousness] == undefined
189
+          ? ""
190
+          : this.consciousnesses[this.record.consciousness] + "";
182
       }
191
       }
183
     },
192
     },
184
     appetite: function() {
193
     appetite: function() {
185
       if (this.record == null || this.record.id == "") {
194
       if (this.record == null || this.record.id == "") {
186
-        return ""
195
+        return "";
187
       } else {
196
       } else {
188
-        return this.appetites[this.record.appetite] == undefined ? "" : this.appetites[this.record.appetite] + ""
197
+        return this.appetites[this.record.appetite] == undefined
198
+          ? ""
199
+          : this.appetites[this.record.appetite] + "";
189
       }
200
       }
190
     },
201
     },
191
     posture: function() {
202
     posture: function() {
192
       if (this.record == null || this.record.id == "") {
203
       if (this.record == null || this.record.id == "") {
193
-        return ""
204
+        return "";
194
       } else {
205
       } else {
195
-        return this.postures[this.record.posture] == undefined ? "" : this.postures[this.record.posture] + ""
206
+        return this.postures[this.record.posture] == undefined
207
+          ? ""
208
+          : this.postures[this.record.posture] + "";
196
       }
209
       }
197
-    },sickCondition: function() {
210
+    },
211
+    sickCondition: function() {
198
       if (this.record == null || this.record.id == "") {
212
       if (this.record == null || this.record.id == "") {
199
-        return ""
213
+        return "";
200
       } else {
214
       } else {
201
-        return this.sick_condition[this.record.sick_condition] == undefined ? "" : this.sick_condition[this.record.sick_condition] + ""
215
+        return this.sick_condition[this.record.sick_condition] == undefined
216
+          ? ""
217
+          : this.sick_condition[this.record.sick_condition] + "";
202
       }
218
       }
203
-    },dangerLevel: function() {
219
+    },
220
+    dangerLevel: function() {
204
       if (this.record == null || this.record.id == "") {
221
       if (this.record == null || this.record.id == "") {
205
-        return ""
222
+        return "";
206
       } else {
223
       } else {
207
-        return this.danger_level[this.record.danger_level] == undefined ? "" : this.danger_level[this.record.danger_level] + ""
224
+        return this.danger_level[this.record.danger_level] == undefined
225
+          ? ""
226
+          : this.danger_level[this.record.danger_level] + "";
208
       }
227
       }
209
-    },precautions: function() {
228
+    },
229
+    precautions: function() {
210
       if (this.record == null || this.record.id == "") {
230
       if (this.record == null || this.record.id == "") {
211
-        return ""
231
+        return "";
212
       } else {
232
       } else {
213
-        return this.precautionss[this.record.precaution] == undefined ? "" : this.precautionss[this.record.precaution] + ""
233
+        return this.precautionss[this.record.precaution] == undefined
234
+          ? ""
235
+          : this.precautionss[this.record.precaution] + "";
214
       }
236
       }
215
-    },intakes: function() {
237
+    },
238
+    intakes: function() {
216
       if (this.record == null || this.record.id == "") {
239
       if (this.record == null || this.record.id == "") {
217
-        return ""
240
+        return "";
218
       } else {
241
       } else {
219
-        return this.intake[this.record.intake] == undefined ? "" : this.intake[this.record.intake] + ""
242
+        return this.intake[this.record.intake] == undefined
243
+          ? ""
244
+          : this.intake[this.record.intake] + "";
220
       }
245
       }
221
-    },nutritions: function() {
246
+    },
247
+    nutritions: function() {
222
       if (this.record == null || this.record.id == "") {
248
       if (this.record == null || this.record.id == "") {
223
-        return ""
249
+        return "";
224
       } else {
250
       } else {
225
-        return this.nutrition[this.record.nutrition] == undefined ? "" : this.nutrition[this.record.nutrition] + ""
251
+        return this.nutrition[this.record.nutrition] == undefined
252
+          ? ""
253
+          : this.nutrition[this.record.nutrition] + "";
226
       }
254
       }
227
-    },psychologicalAssessment: function() {
255
+    },
256
+    psychologicalAssessment: function() {
228
       if (this.record == null || this.record.id == "") {
257
       if (this.record == null || this.record.id == "") {
229
-        return ""
258
+        return "";
230
       } else {
259
       } else {
231
-        return this.psychological_assessment[this.record.psychological_assessment] == undefined ? "" : this.psychological_assessment[this.record.psychological_assessment] + ""
260
+        return this.psychological_assessment[
261
+          this.record.psychological_assessment
262
+        ] == undefined
263
+          ? ""
264
+          : this.psychological_assessment[
265
+              this.record.psychological_assessment
266
+            ] + "";
232
       }
267
       }
233
     }
268
     }
234
   },
269
   },
235
   methods: {
270
   methods: {
236
-    isShow(name){
237
-      var filedList = this.$store.getters.user.fileds
271
+    isShow(name) {
272
+      var filedList = this.$store.getters.user.fileds;
238
 
273
 
239
-      for (let i = 0; i < filedList.length; i++){
240
-        if(filedList[i].module == 2 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
241
-          return true
274
+      for (let i = 0; i < filedList.length; i++) {
275
+        if (
276
+          filedList[i].module == 2 &&
277
+          filedList[i].filed_name_cn == name &&
278
+          filedList[i].is_show == 1
279
+        ) {
280
+          return true;
242
         }
281
         }
243
       }
282
       }
244
-      return false
245
-    },
246
-
283
+      return false;
284
+    }
247
   }
285
   }
248
 };
286
 };
249
 </script>
287
 </script>
250
 
288
 
251
 <style rel="stylesheet/scss" lang="scss" scoped>
289
 <style rel="stylesheet/scss" lang="scss" scoped>
252
-
253
 </style>
290
 </style>
254
 
291
 
255
 
292
 

+ 43 - 24
src/pages/main/today/detailsInfo.vue View File

1
 x<template>
1
 x<template>
2
-  <div class="info ">
3
-    <h2 class="plateTitle"><span class="line"></span><p>基本信息</p><span class="line"></span> </h2>
2
+  <div class="info">
3
+    <h2 class="plateTitle">
4
+      <span class="line"></span>
5
+      <p>基本信息</p>
6
+      <span class="line"></span>
7
+    </h2>
4
 
8
 
5
     <div class="ui-step clearfix">
9
     <div class="ui-step clearfix">
6
       <ul class="ui-step-ul">
10
       <ul class="ui-step-ul">
7
-        <li v-for="(item, index) in step_data" :key="index" class="ui-step-done" >
8
-          <div class="ui-step-number" :style="item.value==1?'':'background:#fff;border: 1px $main-color solid;'"><i :style="item.value==1?'':'border:0;'" /></div>
11
+        <li v-for="(item, index) in step_data" :key="index" class="ui-step-done">
12
+          <div
13
+            class="ui-step-number"
14
+            :style="item.value==1?'':'background:#fff;border: 1px $main-color solid;'"
15
+          >
16
+            <i :style="item.value==1?'':'border:0;'" />
17
+          </div>
9
           <div class="ui-step-title">{{ item.title }}</div>
18
           <div class="ui-step-title">{{ item.title }}</div>
10
         </li>
19
         </li>
11
       </ul>
20
       </ul>
12
     </div>
21
     </div>
13
 
22
 
14
-    <ul class="clearfix">
23
+    <ul class="clearfix newWidth">
15
       <li>
24
       <li>
16
-        <label>姓名 : </label>
25
+        <label>姓名 :</label>
17
         <span>{{patient.name}}</span>
26
         <span>{{patient.name}}</span>
18
       </li>
27
       </li>
19
       <li>
28
       <li>
20
-        <label>性别 : </label>
29
+        <label>性别 :</label>
21
         <span>{{patient.gender == 1 ? "男" : "女"}}</span>
30
         <span>{{patient.gender == 1 ? "男" : "女"}}</span>
22
       </li>
31
       </li>
23
       <li>
32
       <li>
24
-        <label>年龄 : </label>
33
+        <label>年龄 :</label>
25
         <span>{{age}}</span>
34
         <span>{{age}}</span>
26
       </li>
35
       </li>
27
       <li>
36
       <li>
28
-        <label>透析号 : </label>
37
+        <label>透析号 :</label>
29
         <span>{{patient.dialysis_no}}</span>
38
         <span>{{patient.dialysis_no}}</span>
30
       </li>
39
       </li>
31
       <li>
40
       <li>
32
-        <label>床位号 : </label>
41
+        <label>床位号 :</label>
33
         <span>{{device_number}}</span>
42
         <span>{{device_number}}</span>
34
       </li>
43
       </li>
35
       <li>
44
       <li>
36
-        <label>来源 : </label>
45
+        <label>来源 :</label>
37
         <span>{{source}}</span>
46
         <span>{{source}}</span>
38
       </li>
47
       </li>
39
       <li>
48
       <li>
40
-        <label>住院号 : </label>
49
+        <label>住院号 :</label>
41
         <span>{{patient.admission_number}}</span>
50
         <span>{{patient.admission_number}}</span>
42
       </li>
51
       </li>
43
       <li>
52
       <li>
44
-        <label>透析日期 : </label>
53
+        <label>透析日期 :</label>
45
         <span>{{dialysis_date}}</span>
54
         <span>{{dialysis_date}}</span>
46
       </li>
55
       </li>
47
     </ul>
56
     </ul>
50
 
59
 
51
 <script>
60
 <script>
52
 import { parseTime } from "@/utils";
61
 import { parseTime } from "@/utils";
53
-import { jsGetAge } from '@/utils/tools'
62
+import { jsGetAge } from "@/utils/tools";
54
 
63
 
55
 export default {
64
 export default {
56
   name: "DetailsInfo",
65
   name: "DetailsInfo",
105
     }
114
     }
106
   },
115
   },
107
   computed: {
116
   computed: {
108
-    dialysis_date:function(){
117
+    dialysis_date: function() {
109
       return parseTime(this.$route.query.date, "{y}/{m}/{d}");
118
       return parseTime(this.$route.query.date, "{y}/{m}/{d}");
110
-
111
     },
119
     },
112
     age: function() {
120
     age: function() {
113
-      if (this.patient.age == 0){
114
-        return jsGetAge(parseTime(this.patient.birthday, '{y}-{m}-{d}'), '-')
115
-      }else{
116
-        return this.patient.age
121
+      if (this.patient.age == 0) {
122
+        return jsGetAge(parseTime(this.patient.birthday, "{y}-{m}-{d}"), "-");
123
+      } else {
124
+        return this.patient.age;
117
       }
125
       }
118
     },
126
     },
119
     source: function() {
127
     source: function() {
153
     li {
161
     li {
154
       float: left;
162
       float: left;
155
       width: 25%;
163
       width: 25%;
156
-      font-size:0.34rem;
164
+      font-size: 0.34rem;
157
       height: 0.53rem;
165
       height: 0.53rem;
158
     }
166
     }
159
   }
167
   }
160
   .ui-step {
168
   .ui-step {
161
-    margin: 0 6px 0.6rem 6px;
169
+    margin: 0 0 0.8rem 0;
162
     padding: 0.1rem 0 0 0;
170
     padding: 0.1rem 0 0 0;
163
     zoom: 1;
171
     zoom: 1;
164
     background: #fff;
172
     background: #fff;
198
         }
206
         }
199
         .ui-step-title {
207
         .ui-step-title {
200
           color: #34495e;
208
           color: #34495e;
201
-          font-size: 0.3rem;
209
+          font-size: 0.34rem;
202
           font-weight: normal;
210
           font-weight: normal;
211
+          width: 1rem;
203
         }
212
         }
204
         .ui-step-number {
213
         .ui-step-number {
205
           position: relative;
214
           position: relative;
219
           i {
228
           i {
220
             position: absolute;
229
             position: absolute;
221
             left: 0.09rem;
230
             left: 0.09rem;
222
-            top: 0.10rem;
231
+            top: 0.1rem;
223
             width: 0.26rem;
232
             width: 0.26rem;
224
             height: 0.14rem;
233
             height: 0.14rem;
225
             border: 2px #fff solid;
234
             border: 2px #fff solid;
238
     }
247
     }
239
   }
248
   }
240
 }
249
 }
250
+.newWidth {
251
+  li {
252
+    @media only screen and (min-width: 375px) {
253
+      width: 33.3% !important;
254
+    }
255
+    @media only screen and (min-width: 667px) {
256
+      width: 25% !important;
257
+    }
258
+  }
259
+}
241
 </style>
260
 </style>
242
 
261
 

+ 65 - 59
src/pages/main/today/dialysisComputer.vue View File

1
 <template>
1
 <template>
2
   <div class="plate-box">
2
   <div class="plate-box">
3
-    <h2 class="title"><span class="line"></span>
4
-      <p>{{title}}</p><span class="line"></span></h2>
5
-    <div class="plate ">
3
+    <h2 class="title">
4
+      <span class="line"></span>
5
+      <p>{{title}}</p>
6
+      <span class="line"></span>
7
+    </h2>
8
+    <div class="plate">
6
       <ul>
9
       <ul>
7
         <li>
10
         <li>
8
-          <label>上机床位 : </label>
11
+          <label>上机床位 :</label>
9
           <span class="content">{{device_number}}</span>
12
           <span class="content">{{device_number}}</span>
10
         </li>
13
         </li>
11
         <li>
14
         <li>
12
-          <label>上机护士 : </label>
15
+          <label>上机护士 :</label>
13
           <span class="content">{{nurse}}</span>
16
           <span class="content">{{nurse}}</span>
14
         </li>
17
         </li>
15
 
18
 
16
         <li>
19
         <li>
17
-          <label>穿刺者 : </label>
20
+          <label>穿刺者 :</label>
18
           <span class="content">{{puncture_nurse}}</span>
21
           <span class="content">{{puncture_nurse}}</span>
19
         </li>
22
         </li>
20
 
23
 
21
         <li>
24
         <li>
22
-          <label>上机时间 : </label>
23
-          <span class="content" style="font-size: 15px">{{start_time}}</span>
25
+          <label>上机时间 :</label>
26
+          <span class="content" style="font-size: 0.34rem">{{start_time}}</span>
24
         </li>
27
         </li>
25
 
28
 
26
         <li>
29
         <li>
27
-          <label>状态 : </label>
30
+          <label>状态 :</label>
28
           <span class="content">{{stage}}</span>
31
           <span class="content">{{stage}}</span>
29
         </li>
32
         </li>
30
-
31
       </ul>
33
       </ul>
32
-
33
-
34
     </div>
34
     </div>
35
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
35
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
36
   </div>
36
   </div>
37
 </template>
37
 </template>
38
 
38
 
39
 <script>
39
 <script>
40
-  import {parseTime} from '@/utils'
40
+import { parseTime } from "@/utils";
41
 
41
 
42
-  export default {
43
-    name: 'DialysisComputer',
44
-    data () {
45
-      return {
46
-        title: '透析上机 ',
42
+export default {
43
+  name: "DialysisComputer",
44
+  data() {
45
+    return {
46
+      title: "透析上机 "
47
+    };
48
+  },
49
+  props: {
50
+    record: {
51
+      type: Object
52
+    },
53
+    admin_map: {
54
+      type: Object
55
+    },
56
+    device_number_map: {
57
+      type: Object
58
+    }
59
+  },
60
+  computed: {
61
+    device_number: function() {
62
+      if (this.record == null || this.record.id == "") {
63
+        return "-";
47
       }
64
       }
65
+      return this.device_number_map[this.record.bed_id] == null
66
+        ? ""
67
+        : this.device_number_map[this.record.bed_id].number;
48
     },
68
     },
49
-    props: {
50
-      record: {
51
-        type: Object,
52
-      },
53
-      admin_map: {
54
-        type: Object,
55
-      },
56
-      device_number_map: {
57
-        type: Object,
69
+    nurse: function() {
70
+      if (this.record == null || this.record.id == "") {
71
+        return "-";
58
       }
72
       }
73
+      return this.admin_map[this.record.start_nurse] == null
74
+        ? ""
75
+        : this.admin_map[this.record.start_nurse].name;
59
     },
76
     },
60
-    computed: {
61
-      device_number: function () {
62
-        if (this.record == null || this.record.id == '') {
63
-          return '-'
64
-        }
65
-        return this.device_number_map[this.record.bed_id] == null ? '' : this.device_number_map[this.record.bed_id].number
66
-      },
67
-      nurse: function () {
68
-        if (this.record == null || this.record.id == '') {
69
-          return '-'
70
-        }
71
-        return this.admin_map[this.record.start_nurse] == null ? '' : this.admin_map[this.record.start_nurse].name
72
-      },
73
-      stage: function () {
74
-        if (this.record == null || this.record.id == '') {
75
-          return '未上机'
76
-        }
77
-        return this.record.stage == 1 ? '已上机' : '已下机'
78
-      }, start_time: function () {
79
-        if (this.record == null || this.record.id == '') {
80
-          return '-'
81
-        }
82
-        return parseTime(this.record.start_time, '{y}年{m}月{d}日 {h}时{i}分')
83
-
84
-      },puncture_nurse:function () {
85
-        if (this.record == null || this.record.id == '') {
86
-          return '-'
87
-        }
88
-        return this.admin_map[this.record.puncture_nurse] == null ? '' : this.admin_map[this.record.puncture_nurse].name
89
-
77
+    stage: function() {
78
+      if (this.record == null || this.record.id == "") {
79
+        return "未上机";
90
       }
80
       }
81
+      return this.record.stage == 1 ? "已上机" : "已下机";
91
     },
82
     },
92
-    methods: {}
93
-  }
83
+    start_time: function() {
84
+      if (this.record == null || this.record.id == "") {
85
+        return "-";
86
+      }
87
+      return parseTime(this.record.start_time, "{y}年{m}月{d}日 {h}时{i}分");
88
+    },
89
+    puncture_nurse: function() {
90
+      if (this.record == null || this.record.id == "") {
91
+        return "-";
92
+      }
93
+      return this.admin_map[this.record.puncture_nurse] == null
94
+        ? ""
95
+        : this.admin_map[this.record.puncture_nurse].name;
96
+    }
97
+  },
98
+  methods: {}
99
+};
94
 </script>
100
 </script>
95
 
101
 
96
 <style rel="stylesheet/scss" lang="scss" scoped>
102
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 30 - 26
src/pages/main/today/dialysisOff.vue View File

1
 <template>
1
 <template>
2
-   <div class="plate-box">
3
-    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
2
+  <div class="plate-box">
3
+    <h2 class="title">
4
+      <span class="line"></span>
5
+      <p>{{title}}</p>
6
+      <span class="line"></span>
7
+    </h2>
4
     <div class="plate">
8
     <div class="plate">
5
       <ul>
9
       <ul>
6
         <li>
10
         <li>
7
-          <label>下机护士 : </label>
11
+          <label>下机护士 :</label>
8
           <span class="content">{{nurse}}</span>
12
           <span class="content">{{nurse}}</span>
9
         </li>
13
         </li>
10
         <li>
14
         <li>
11
-          <label>状态 : </label>
15
+          <label>状态 :</label>
12
           <span class="content">{{stage}}</span>
16
           <span class="content">{{stage}}</span>
13
         </li>
17
         </li>
14
         <li>
18
         <li>
15
-          <label>下机时间 : </label>
16
-          <span class="content" style="font-size: 15px">{{end_time}}</span>
19
+          <label>下机时间 :</label>
20
+          <span class="content" style="font-size: 0.34rem">{{end_time}}</span>
17
         </li>
21
         </li>
18
       </ul>
22
       </ul>
19
     </div>
23
     </div>
21
 </template>
25
 </template>
22
 
26
 
23
 <script>
27
 <script>
24
-  import { parseTime } from "@/utils";
28
+import { parseTime } from "@/utils";
25
 
29
 
26
-  export default {
30
+export default {
27
   name: "DialysisComputer",
31
   name: "DialysisComputer",
28
   data() {
32
   data() {
29
     return {
33
     return {
30
-      title: "透析下机 ",
34
+      title: "透析下机 "
31
     };
35
     };
32
   },
36
   },
33
   props: {
37
   props: {
35
       type: Object
39
       type: Object
36
     },
40
     },
37
     admin_map: {
41
     admin_map: {
38
-      type: Object,
39
-    },
42
+      type: Object
43
+    }
40
   },
44
   },
41
   computed: {
45
   computed: {
42
     stage: function() {
46
     stage: function() {
43
       if (this.record == null || this.record.id == "") {
47
       if (this.record == null || this.record.id == "") {
44
-        return "未上机"
48
+        return "未上机";
45
       }
49
       }
46
-      return this.record.stage == 1 ? "未下机" : "已下机"
50
+      return this.record.stage == 1 ? "未下机" : "已下机";
47
     },
51
     },
48
     nurse: function() {
52
     nurse: function() {
49
-      if (this.record == null || this.record.id == '') {
50
-        return "-"
53
+      if (this.record == null || this.record.id == "") {
54
+        return "-";
51
       } else if (this.record.stage == 1) {
55
       } else if (this.record.stage == 1) {
52
-        return "-"
56
+        return "-";
53
       } else {
57
       } else {
54
-        return this.admin_map[this.record.finish_nurse] == null ? "" : this.admin_map[this.record.finish_nurse].name
58
+        return this.admin_map[this.record.finish_nurse] == null
59
+          ? ""
60
+          : this.admin_map[this.record.finish_nurse].name;
55
       }
61
       }
56
-    },end_time:function () {
57
-      if (this.record == null || this.record.id == '') {
58
-        return "-"
62
+    },
63
+    end_time: function() {
64
+      if (this.record == null || this.record.id == "") {
65
+        return "-";
59
       } else if (this.record.stage == 1) {
66
       } else if (this.record.stage == 1) {
60
-        return "-"
67
+        return "-";
61
       } else {
68
       } else {
62
         return parseTime(this.record.end_time, "{y}年{m}月{d}日 {h}时{i}分");
69
         return parseTime(this.record.end_time, "{y}年{m}月{d}日 {h}时{i}分");
63
-
64
       }
70
       }
65
-    },
71
+    }
66
   },
72
   },
67
-  methods: {
68
-
69
-  }
73
+  methods: {}
70
 };
74
 };
71
 </script>
75
 </script>
72
 
76
 

+ 36 - 23
src/pages/main/today/statOrder.vue View File

5
       <p>{{title}}</p>
5
       <p>{{title}}</p>
6
       <span class="line"></span>
6
       <span class="line"></span>
7
     </h2>
7
     </h2>
8
-    <table class="table">
9
-      <tr>
10
-        <th width="12%">开嘱医生</th>
11
-        <th width="18%">开始时间</th>
12
-        <th width="31%">医嘱内容</th>
13
-        <th width="18.6%">执行时间</th>
14
-        <th width="10.5%">执行护士</th>
15
-        <th width="9.4%">核对护士</th>
16
-      </tr>
17
-      <template v-for="(group) in advice_groups">
18
-        <tr v-for="(advice, i) in group.advices" :key="advice.id">
19
-            <td v-if="i == 0" :rowspan="group.advices.length">{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
8
+    <div class="newDiv">
9
+      <table class="table">
10
+        <tr>
11
+          <th width="12%">开嘱医生</th>
12
+          <th width="18%">开始时间</th>
13
+          <th width="31%">医嘱内容</th>
14
+          <th width="18.6%">执行时间</th>
15
+          <th width="10.5%">执行护士</th>
16
+          <th width="9.4%">核对护士</th>
17
+        </tr>
18
+        <template v-for="(group) in advice_groups">
19
+          <tr v-for="(advice, i) in group.advices" :key="advice.id">
20
+            <td
21
+              v-if="i == 0"
22
+              :rowspan="group.advices.length"
23
+            >{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
20
 
24
 
21
-            <td v-if="i == 0" :rowspan="group.advices.length">{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
25
+            <td
26
+              v-if="i == 0"
27
+              :rowspan="group.advices.length"
28
+            >{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
22
 
29
 
23
             <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
30
             <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
24
               <span>{{advice.advice_name }}</span>
31
               <span>{{advice.advice_name }}</span>
25
               <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
32
               <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
26
               <span v-if="advice.drug_spec">{{advice.drug_spec}}{{advice.drug_spec_unit}}</span>
33
               <span v-if="advice.drug_spec">{{advice.drug_spec}}{{advice.drug_spec_unit}}</span>
27
-              <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
34
+              <span
35
+                v-if="advice.prescribing_number"
36
+              >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
28
               <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
37
               <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
29
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
38
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
30
               <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
39
               <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
31
               <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
40
               <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
32
-
33
             </td>
41
             </td>
34
 
42
 
35
             <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
43
             <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
37
             <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
45
             <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
38
 
46
 
39
             <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
47
             <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
40
-        </tr>
41
-      </template>
42
-    </table>
43
-    <div class="NoData" v-show="advice_groups.length == 0">
44
-      <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt>
48
+          </tr>
49
+        </template>
50
+      </table>
51
+      <div class="NoData" v-show="advice_groups.length == 0">
52
+        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
53
+      </div>
45
     </div>
54
     </div>
46
   </div>
55
   </div>
47
 </template>
56
 </template>
54
   data() {
63
   data() {
55
     return {
64
     return {
56
       title: "临时医嘱 ",
65
       title: "临时医嘱 ",
57
-      tableDate: [],
66
+      tableDate: []
58
     };
67
     };
59
   },
68
   },
60
   props: {
69
   props: {
64
     advice_groups: {
73
     advice_groups: {
65
       type: Array,
74
       type: Array,
66
       default: () => {
75
       default: () => {
67
-        return []
76
+        return [];
68
       }
77
       }
69
     }
78
     }
70
   },
79
   },
150
 
159
 
151
 <style rel="stylesheet/scss" lang="scss" scoped>
160
 <style rel="stylesheet/scss" lang="scss" scoped>
152
 .table {
161
 .table {
153
-  width: 100%;
162
+  width: 1000px;
154
   overflow: hidden;
163
   overflow: hidden;
155
   font-size: 0.34rem;
164
   font-size: 0.34rem;
156
   text-align: center;
165
   text-align: center;
184
     }
193
     }
185
   }
194
   }
186
 }
195
 }
196
+.newDiv {
197
+  width: 100%;
198
+  overflow-x: auto;
199
+}
187
 </style>
200
 </style>
188
 
201
 
189
 
202
 

+ 59 - 76
src/pages/monitoring/index.vue View File

1
 <template>
1
 <template>
2
   <div class="mainBox">
2
   <div class="mainBox">
3
-    <side-bar :active_index="1"></side-bar>
4
     <div class="mainContent">
3
     <div class="mainContent">
5
       <div class="top">
4
       <div class="top">
6
         <div class="hospital" style="width:4.2rem;">
5
         <div class="hospital" style="width:4.2rem;">
25
               type="info"
24
               type="info"
26
               style="border: none;"
25
               style="border: none;"
27
               @click="searchWithKeyword(1)"
26
               @click="searchWithKeyword(1)"
28
-              >搜索</van-button
29
-            >
27
+            >搜索</van-button>
30
           </van-field>
28
           </van-field>
31
         </div>
29
         </div>
32
       </div>
30
       </div>
36
           <el-popover v-model="visible" placement="bottom" trigger="click">
34
           <el-popover v-model="visible" placement="bottom" trigger="click">
37
             <li slot="reference">
35
             <li slot="reference">
38
               {{ partitionName(partition)
36
               {{ partitionName(partition)
39
-              }}<span class="iconfont">&#xe74a;</span>
37
+              }}
38
+              <span class="iconfont">&#xe74a;</span>
40
             </li>
39
             </li>
41
             <div class="popover-demo-content">
40
             <div class="popover-demo-content">
42
               <ul>
41
               <ul>
45
                   :key="item.id"
44
                   :key="item.id"
46
                   @click="itemClick(item.id)"
45
                   @click="itemClick(item.id)"
47
                   :class="partition == item.id ? 'tick' : ''"
46
                   :class="partition == item.id ? 'tick' : ''"
48
-                >
49
-                  {{ item.name }}
50
-                </li>
47
+                >{{ item.name }}</li>
51
               </ul>
48
               </ul>
52
             </div>
49
             </div>
53
           </el-popover>
50
           </el-popover>
54
           <li @click="openPicker">
51
           <li @click="openPicker">
55
             {{ parseTime(date.getTime() / 1000, "{y}-{m}-{d}")
52
             {{ parseTime(date.getTime() / 1000, "{y}-{m}-{d}")
56
-            }}<span class="iconfont">&#xe74a;</span>
53
+            }}
54
+            <span
55
+              class="iconfont"
56
+            >&#xe74a;</span>
57
           </li>
57
           </li>
58
         </ul>
58
         </ul>
59
       </div>
59
       </div>
60
-      <van-list
61
-        v-model="loading"
62
-        :finished="finished"
63
-        finished-text="  "
64
-        @load="onLoad"
65
-      >
60
+      <van-list v-model="loading" :finished="finished" finished-text="  " @load="onLoad">
66
         <div class="blueBorder"></div>
61
         <div class="blueBorder"></div>
67
         <table class="table">
62
         <table class="table">
68
           <tr>
63
           <tr>
69
-            <th width="8%">机号</th>
70
             <th width="10%">姓名</th>
64
             <th width="10%">姓名</th>
65
+            <th width="8%">机号</th>
71
             <th width="9%">透析号</th>
66
             <th width="9%">透析号</th>
72
             <th width="13%">排班时间</th>
67
             <th width="13%">排班时间</th>
73
             <th width="10%">透析模式</th>
68
             <th width="10%">透析模式</th>
77
           </tr>
72
           </tr>
78
         </table>
73
         </table>
79
 
74
 
80
-        <table
81
-          class="table"
82
-          v-for="(items, index) in dialysis_scheduals"
83
-          :key="index"
84
-        >
75
+        <table class="table" v-for="(items, index) in dialysis_scheduals" :key="index">
85
           <tr v-if="items.zone_name.length > 0">
76
           <tr v-if="items.zone_name.length > 0">
86
             <td width="8%">{{ items.zone_name }}</td>
77
             <td width="8%">{{ items.zone_name }}</td>
87
-            <td width="10%"></td>
78
+            <td width="8%"></td>
88
             <td width="9%"></td>
79
             <td width="9%"></td>
89
             <td width="13%"></td>
80
             <td width="13%"></td>
90
             <td width="10%"></td>
81
             <td width="10%"></td>
92
             <td width="14%"></td>
83
             <td width="14%"></td>
93
             <td width="27%"></td>
84
             <td width="27%"></td>
94
           </tr>
85
           </tr>
95
-          <tr
96
-            v-for="(item, index) in items.scheduals"
97
-            :key="index"
98
-            @click="clickfunction(item)"
99
-          >
86
+          <tr v-for="(item, index) in items.scheduals" :key="index" @click="clickfunction(item)">
87
+            <td width="10%" style="color:#409eff;">{{ item.patient.name }}</td>
100
             <td width="8%">
88
             <td width="8%">
101
               {{
89
               {{
102
-                item.dialysis_order.device_number.number.length > 0
103
-                  ? item.dialysis_order.device_number.number
104
-                  : item.device_number.number
90
+              item.dialysis_order.device_number.number.length > 0
91
+              ? item.dialysis_order.device_number.number
92
+              : item.device_number.number
105
               }}
93
               }}
106
             </td>
94
             </td>
107
-            <td width="10%" style="color:#409eff;">{{ item.patient.name }}</td>
95
+
108
             <td width="9%">{{ item.patient.dialysis_no }}</td>
96
             <td width="9%">{{ item.patient.dialysis_no }}</td>
109
-            <td width="13%">
110
-              {{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}
111
-            </td>
97
+            <td width="13%">{{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}</td>
112
             <td width="10%">{{ item.treatment_mode.name }}</td>
98
             <td width="10%">{{ item.treatment_mode.name }}</td>
113
             <td width="9%">
99
             <td width="9%">
114
               {{
100
               {{
115
-                item.prescription.dewater_amount
116
-                  ? item.prescription.dewater_amount
117
-                  : ""
101
+              item.prescription.dewater_amount
102
+              ? item.prescription.dewater_amount
103
+              : ""
118
               }}
104
               }}
119
             </td>
105
             </td>
120
             <td width="14%">
106
             <td width="14%">
121
               {{
107
               {{
122
-                item.assessment_before_dislysis.weight_before
123
-                  ? item.assessment_before_dislysis.weight_before
124
-                  : ""
108
+              item.assessment_before_dislysis.weight_before
109
+              ? item.assessment_before_dislysis.weight_before
110
+              : ""
125
               }}/{{
111
               }}/{{
126
-                item.assessment_after_dislysis.weight_after
127
-                  ? item.assessment_after_dislysis.weight_after
128
-                  : ""
112
+              item.assessment_after_dislysis.weight_after
113
+              ? item.assessment_after_dislysis.weight_after
114
+              : ""
129
               }}
115
               }}
130
             </td>
116
             </td>
131
             <td width="27%">
117
             <td width="27%">
132
-              <span
133
-                v-if="monitorBloodPressureStatus(item.monitoring_record) == 1"
134
-                >低压</span
135
-              >
136
-              <span
137
-                v-if="monitorBloodPressureStatus(item.monitoring_record) == 2"
138
-                >正常</span
139
-              >
140
-              <span
141
-                v-if="monitorBloodPressureStatus(item.monitoring_record) == 3"
142
-                >高压</span
143
-              >
144
-              <span v-if="monitorRateStatus(item.monitoring_record) == 1"
145
-                >心率过缓</span
146
-              >
147
-              <span v-if="monitorRateStatus(item.monitoring_record) == 2"
148
-                >正常</span
149
-              >
150
-              <span v-if="monitorRateStatus(item.monitoring_record) == 3"
151
-                >心率过高</span
152
-              >
118
+              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 1">低压</span>
119
+              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 2">正常</span>
120
+              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 3">高压</span>
121
+              <span v-if="monitorRateStatus(item.monitoring_record) == 1">心率过缓</span>
122
+              <span v-if="monitorRateStatus(item.monitoring_record) == 2">正常</span>
123
+              <span v-if="monitorRateStatus(item.monitoring_record) == 3">心率过高</span>
153
             </td>
124
             </td>
154
           </tr>
125
           </tr>
155
         </table>
126
         </table>
156
 
127
 
157
         <div class="NoData" v-show="dialysis_scheduals.length == 0">
128
         <div class="NoData" v-show="dialysis_scheduals.length == 0">
158
-          <img
159
-            style="margin-top: 50px; margin-bottom: 50px"
160
-            src="@/assets/login/data.jpg"
161
-            alt=""
162
-          />
129
+          <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
163
         </div>
130
         </div>
164
       </van-list>
131
       </van-list>
165
     </div>
132
     </div>
133
+    <side-bar :active_index="1"></side-bar>
166
     <mt-datetime-picker
134
     <mt-datetime-picker
167
       ref="date_picker"
135
       ref="date_picker"
168
       type="date"
136
       type="date"
169
       @confirm="handleDateConfirm"
137
       @confirm="handleDateConfirm"
170
       :endDate="new Date()"
138
       :endDate="new Date()"
171
       v-model="date"
139
       v-model="date"
172
-    >
173
-    </mt-datetime-picker>
140
+    ></mt-datetime-picker>
174
   </div>
141
   </div>
175
 </template>
142
 </template>
176
 
143
 
451
   top: 63px;
418
   top: 63px;
452
   right: 0;
419
   right: 0;
453
   z-index: 66;
420
   z-index: 66;
454
-  left: 1.58rem;
421
+  left: 0;
455
   background: #fff;
422
   background: #fff;
456
-  @media only screen and (max-width: 812px) {
457
-    top: 43px !important;
423
+  @media only screen and (max-width: 415px) {
424
+    top: 39px !important;
425
+  }
426
+  @media only screen and (min-width: 376px) and (max-width: 737px) {
427
+    top: 45px !important;
458
   }
428
   }
459
   ul {
429
   ul {
460
     @include display-flex;
430
     @include display-flex;
461
     @include align-items-center;
431
     @include align-items-center;
462
     @include text-align;
432
     @include text-align;
463
     @include justify-content-between;
433
     @include justify-content-between;
464
-    width: 30%;
434
+    width: 45%;
465
     margin: 0 auto;
435
     margin: 0 auto;
466
     font-size: 0.32rem;
436
     font-size: 0.32rem;
467
     color: $pgh-color;
437
     color: $pgh-color;
489
   width: 100%;
459
   width: 100%;
490
 }
460
 }
491
 .van-list {
461
 .van-list {
492
-  padding-top: 115px;
462
+  padding-top: 76px;
493
   background: #fff;
463
   background: #fff;
494
   min-height: calc(100vh - 1px);
464
   min-height: calc(100vh - 1px);
495
-  @media only screen and (max-width: 812px) {
465
+  @media only screen and (min-width: 376px) and (max-width: 737px) {
496
     padding-top: 80px !important;
466
     padding-top: 80px !important;
497
   }
467
   }
468
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
469
+    padding-top: 116px !important;
470
+  }
471
+}
472
+.mainBox {
473
+  height: 100%;
474
+  display: flex;
475
+  flex-direction: column;
476
+  overflow: hidden;
477
+  > :first-child {
478
+    flex: 1;
479
+    overflow: auto;
480
+  }
498
 }
481
 }
499
 </style>
482
 </style>

+ 13 - 15
src/pages/personal/ElectronicSignature.vue View File

1
 <template>
1
 <template>
2
   <div class="mainBox">
2
   <div class="mainBox">
3
-    <side-bar :active_index="3"></side-bar>
4
     <div class="mainContent">
3
     <div class="mainContent">
5
       <h1 class="title">
4
       <h1 class="title">
6
         <div class="GoBack" @click="$router.go(-1)">
5
         <div class="GoBack" @click="$router.go(-1)">
31
           ></canvas>
30
           ></canvas>
32
         </div>
31
         </div>
33
         <div class="imagename" v-show="showpan == 'image'">
32
         <div class="imagename" v-show="showpan == 'image'">
34
-          <img :src="electronicsignature" alt="" srcset="" />
33
+          <img :src="electronicsignature" alt srcset />
35
         </div>
34
         </div>
36
         <div class="set">
35
         <div class="set">
37
           <el-row>
36
           <el-row>
38
             <el-button @click="clearCanvas">重写签名</el-button>
37
             <el-button @click="clearCanvas">重写签名</el-button>
39
-            <el-button
40
-              :disabled="nobeginAction"
41
-              type="primary"
42
-              @click="getImageAction"
43
-              >上传签名</el-button
44
-            >
38
+            <el-button :disabled="nobeginAction" type="primary" @click="getImageAction">上传签名</el-button>
45
           </el-row>
39
           </el-row>
46
         </div>
40
         </div>
47
       </div>
41
       </div>
48
     </div>
42
     </div>
43
+    <side-bar :active_index="3"></side-bar>
49
     <el-dialog
44
     <el-dialog
50
       title="提示"
45
       title="提示"
51
       :visible.sync="centerDialogVisible"
46
       :visible.sync="centerDialogVisible"
55
       element-loading-spinner="el-icon-loading"
50
       element-loading-spinner="el-icon-loading"
56
       center
51
       center
57
     >
52
     >
58
-      <vue-cropper
59
-        ref="cropper"
60
-        :src="imgUrl"
61
-        alt="Source Image"
62
-        :cropmove="cropImage"
63
-      >
64
-      </vue-cropper>
53
+      <vue-cropper ref="cropper" :src="imgUrl" alt="Source Image" :cropmove="cropImage"></vue-cropper>
65
       <span slot="footer" class="dialog-footer">
54
       <span slot="footer" class="dialog-footer">
66
         <el-button @click="centerDialogVisible = false">取 消</el-button>
55
         <el-button @click="centerDialogVisible = false">取 消</el-button>
67
         <el-button type="primary" @click="uploadImage">确 定</el-button>
56
         <el-button type="primary" @click="uploadImage">确 定</el-button>
468
     height: 200px !important;
457
     height: 200px !important;
469
   }
458
   }
470
 }
459
 }
460
+.mainBox {
461
+  height: 100%;
462
+  display: flex;
463
+  flex-direction: column;
464
+  > :first-child {
465
+    flex: 1;
466
+    overflow: auto;
467
+  }
468
+}
471
 </style>
469
 </style>

+ 95 - 75
src/pages/personal/index.vue View File

1
 <template>
1
 <template>
2
-    <div class="mainBox">
3
-        <side-bar :active_index="3"></side-bar>
4
-        <div class="mainContent">
5
-            <h1 class="title">我的</h1>
6
-            <div class="information">
7
-                <div class="blueBorder"></div>
8
-                <div class="name">
9
-                    <!--<router-link to="/EditPersonal">-->
10
-                        <div class="item">
11
-                            <div class="tx">
12
-                              <img :src="myinfo.avatar" alt="" v-if="myinfo.avatar != ''">
13
-                              <img :src="avatar" alt="" v-if="myinfo.avatar == ''">
14
-                            </div>
15
-                            <!--<span class="iconfont">&#xe6f9;</span>-->
16
-                        </div>
17
-                    <!--</router-link>-->
18
-                </div>
19
-                <div class="name">
20
-                    <router-link to="/ElectronicSignature">
21
-                        <div class="item">
22
-                            <div class="tx">
23
-                                <img :src="electronicsignature" alt="" v-if="electronicsignature">
24
-                                <h2>电子签名</h2>
25
-                            </div>
26
-                            <span class="iconfont">&#xe6f9;</span>
27
-                        </div>
28
-                    </router-link>
29
-                </div>
30
-                <div class="set" v-show="false">
31
-                   <div class="item">
32
-                       <div class="tx">
33
-                           <img src="@/assets/my/12.png" alt="">
34
-                           <h2>消息通知</h2>
35
-                       </div>
36
-                       <span class="iconfont">&#xe6f9;</span>
37
-                   </div>
38
-                   <div class="item">
39
-                       <div class="tx">
40
-                           <img src="@/assets/my/13.png" alt="">
41
-                           <h2>系统设置</h2>
42
-                       </div>
43
-                       <span class="iconfont">&#xe6f9;</span>
44
-                   </div>
45
-                   <div class="item">
46
-                       <div class="tx">
47
-                           <img src="@/assets/my/14.png" alt="">
48
-                           <h2>软件更新</h2>
49
-                       </div>
50
-                       <span class="iconfont">&#xe6f9;</span>
51
-                   </div>
52
-                   <div class="item">
53
-                       <div class="tx">
54
-                           <img src="@/assets/my/15.png" alt="">
55
-                           <h2>使用帮助</h2>
56
-                       </div>
57
-                       <span class="iconfont">&#xe6f9;</span>
58
-                   </div>
59
-                   <div class="item">
60
-                       <div class="tx">
61
-                           <img src="@/assets/my/16.png" alt="">
62
-                           <h2>关于我们</h2>
63
-                       </div>
64
-                       <span class="iconfont">&#xe6f9;</span>
65
-                   </div>
66
-                </div>
67
-                <div class="set">
68
-                    <span class="out" @click="logout">退出登录</span>
69
-                </div>
2
+  <div class="mainBox">
3
+    <div class="mainContent">
4
+      <h1 class="title">我的</h1>
5
+      <div class="information">
6
+        <div class="blueBorder"></div>
7
+        <div class="name">
8
+          <!--<router-link to="/EditPersonal">-->
9
+          <div class="item">
10
+            <div class="tx">
11
+              <img :src="myinfo.avatar" alt v-if="myinfo.avatar != ''" />
12
+              <img :src="avatar" alt v-if="myinfo.avatar == ''" />
70
             </div>
13
             </div>
14
+            <!--<span class="iconfont">&#xe6f9;</span>-->
15
+          </div>
16
+          <!--</router-link>-->
71
         </div>
17
         </div>
18
+        <div class="name">
19
+          <router-link to="/ElectronicSignature">
20
+            <div class="item">
21
+              <div class="tx">
22
+                <img :src="electronicsignature" alt v-if="electronicsignature" />
23
+                <h2>电子签名</h2>
24
+              </div>
25
+              <span class="iconfont">&#xe6f9;</span>
26
+            </div>
27
+          </router-link>
28
+        </div>
29
+        <!-- <div class="name"> 
30
+          <router-link to="/">
31
+            <div class="item">
32
+              <div class="tx">
33
+              <h2>修改密码</h2>
34
+              </div>
35
+              <span class="iconfont">&#xe6f9;</span>
36
+            </div>
37
+          </router-link>
38
+        </div> -->
39
+        <div class="set" v-show="false">
40
+          <div class="item">
41
+            <div class="tx">
42
+              <img src="@/assets/my/12.png" alt />
43
+              <h2>消息通知</h2>
44
+            </div>
45
+            <span class="iconfont">&#xe6f9;</span>
46
+          </div>
47
+          <div class="item">
48
+            <div class="tx">
49
+              <img src="@/assets/my/13.png" alt />
50
+              <h2>系统设置</h2>
51
+            </div>
52
+            <span class="iconfont">&#xe6f9;</span>
53
+          </div>
54
+          <div class="item">
55
+            <div class="tx">
56
+              <img src="@/assets/my/14.png" alt />
57
+              <h2>软件更新</h2>
58
+            </div>
59
+            <span class="iconfont">&#xe6f9;</span>
60
+          </div>
61
+          <div class="item">
62
+            <div class="tx">
63
+              <img src="@/assets/my/15.png" alt />
64
+              <h2>使用帮助</h2>
65
+            </div>
66
+            <span class="iconfont">&#xe6f9;</span>
67
+          </div>
68
+          <div class="item">
69
+            <div class="tx">
70
+              <img src="@/assets/my/16.png" alt />
71
+              <h2>关于我们</h2>
72
+            </div>
73
+            <span class="iconfont">&#xe6f9;</span>
74
+          </div>
75
+        </div>
76
+        <div class="set">
77
+          <span class="out" @click="logout">退出登录</span>
78
+        </div>
79
+      </div>
72
     </div>
80
     </div>
81
+    <side-bar :active_index="3"></side-bar>
82
+  </div>
73
 </template>
83
 </template>
74
 
84
 
75
 <script>
85
 <script>
87
     return {
97
     return {
88
       electronicsignature: "",
98
       electronicsignature: "",
89
       myinfo: {},
99
       myinfo: {},
90
-      avatar:"@/assets/product/test.jpg"
100
+      avatar: "@/assets/product/test.jpg"
91
     };
101
     };
92
   },
102
   },
93
   created() {
103
   created() {
120
 .mainContent {
130
 .mainContent {
121
   .title {
131
   .title {
122
     font-size: 0.36rem;
132
     font-size: 0.36rem;
123
-    padding: 0.30rem 0;
124
-    color: $title-color;
133
+    padding: 0.3rem 0;
134
+    // color: $title-color;
125
     text-align: center;
135
     text-align: center;
126
     position: fixed;
136
     position: fixed;
127
     top: 0;
137
     top: 0;
128
-    left: 1.58rem;
138
+    left: 0;
129
     right: 0;
139
     right: 0;
130
     z-index: 1000;
140
     z-index: 1000;
131
     background: #fff;
141
     background: #fff;
133
   .information {
143
   .information {
134
     width: 100%;
144
     width: 100%;
135
     margin: 0 auto;
145
     margin: 0 auto;
136
-    padding-top:63px;
146
+    padding-top: 63px;
137
     min-height: calc(100vh - 2px);
147
     min-height: calc(100vh - 2px);
138
     .name {
148
     .name {
139
       background: #fff;
149
       background: #fff;
171
         }
181
         }
172
       }
182
       }
173
       &:last-child {
183
       &:last-child {
174
-          border: none;
175
-        }
184
+        border: none;
185
+      }
176
     }
186
     }
177
 
187
 
178
     .set {
188
     .set {
222
 .el-collapse-item__header {
232
 .el-collapse-item__header {
223
   font-size: 0.3rem !important;
233
   font-size: 0.3rem !important;
224
 }
234
 }
235
+.mainBox {
236
+  height: 100%;
237
+  display: flex;
238
+  flex-direction: column;
239
+  overflow: hidden;
240
+  > :first-child {
241
+    flex: 1;
242
+    overflow: auto;
243
+  }
244
+}
225
 </style>
245
 </style>

+ 7 - 2
src/styles/media.scss View File

1
-@media only screen and (max-width: 812px) {
1
+@media only screen and (max-width: 376px) {
2
   html {
2
   html {
3
-    font-size: 29px;
3
+    font-size: 30px;
4
+  }
5
+}
6
+@media only screen and (min-width: 376px) and (max-width: 737px) {
7
+  html {
8
+    font-size: 36px;
4
   }
9
   }
5
 }
10
 }
6
 
11
 

+ 48 - 13
src/styles/style.scss View File

1
 .body {
1
 .body {
2
   // background: $base-color;
2
   // background: $base-color;
3
 }
3
 }
4
-
4
+html,
5
+body {
6
+  height: 100%;
7
+}
5
 #app {
8
 #app {
6
   width: 100%;
9
   width: 100%;
7
   height: 100%;
10
   height: 100%;
83
         line-height: 0.62rem;
86
         line-height: 0.62rem;
84
         float: left;
87
         float: left;
85
         width: 5.2rem;
88
         width: 5.2rem;
89
+        @media only screen and (max-width: 415px) {
90
+          width: 4.2rem;
91
+        }
86
         .content {
92
         .content {
87
           color: $main-color;
93
           color: $main-color;
88
         }
94
         }
338
 
344
 
339
 .mainBox {
345
 .mainBox {
340
   .mainContent {
346
   .mainContent {
341
-    margin: 0 0 0 1.58rem;
347
+    // margin: 0 0 0 1.58rem;
342
   }
348
   }
343
 }
349
 }
344
 
350
 
357
     height: 0 !important;
363
     height: 0 !important;
358
     background-color: transparent !important;
364
     background-color: transparent !important;
359
   }
365
   }
366
+  @media only screen and (min-width: 768px) and (max-width: 1024px) {
367
+    width: 0 !important;
368
+  }
369
+  @media only screen and (min-width: 1024px) {
370
+    width: 0 !important;
371
+  }
360
 }
372
 }
361
 
373
 
362
 ::-webkit-scrollbar-track {
374
 ::-webkit-scrollbar-track {
381
 }
393
 }
382
 
394
 
383
 .van-popup {
395
 .van-popup {
384
-  border-radius: 20px !important;
396
+  border-radius: 10px !important;
385
   .Dialog {
397
   .Dialog {
386
     font-size: 0.36rem;
398
     font-size: 0.36rem;
387
-    width: 16.8rem;
399
+    width: 11.8rem;
400
+    @media only screen and (min-width: 376px) and (max-width: 737px) {
401
+      width: 16.8rem !important;
402
+    }
403
+    @media only screen and (min-width: 376px) and (max-width: 415px) {
404
+      width: 10.8rem !important;
405
+    }
406
+    @media only screen and (min-width: 769px) and (max-width: 1024px) {
407
+      width: 12.8rem !important;
408
+    }
409
+    @media only screen and (min-width: 1024px) {
410
+      width: 15.8rem !important;
411
+    }
388
     background: #ebf1f7;
412
     background: #ebf1f7;
389
     position: relative;
413
     position: relative;
390
     .DialogTit {
414
     .DialogTit {
441
       height: 8.8rem;
465
       height: 8.8rem;
442
       overflow-y: scroll;
466
       overflow-y: scroll;
443
       background: #fff;
467
       background: #fff;
444
-      @media only screen and (max-width: 812px) {
445
-        height: 8.8rem !important;
468
+      @media only screen and (max-width: 415px) {
469
+        height: 14.8rem !important;
470
+      }
471
+      @media only screen and (min-width: 666px) and (max-width: 737px) {
472
+        height: 7.8rem;
473
+      }
474
+      @media only screen and (min-width: 737px) and (max-width: 768px) {
475
+        height: 14.8rem;
476
+      }
477
+      @media only screen and (min-width: 769px) and (max-width: 1024px) {
478
+        height: 11.8rem;
446
       }
479
       }
447
       .item {
480
       .item {
448
         padding: 0 0.32rem;
481
         padding: 0 0.32rem;
714
   float: right;
747
   float: right;
715
   font-size: 0.34rem;
748
   font-size: 0.34rem;
716
   .field {
749
   .field {
717
-    @media only screen and (max-width: 812px) {
718
-      margin-top: 6px;
719
-    }
750
+    // @media only screen and (max-width: 812px) {
751
+    //   margin-top: 6px;
752
+    // }
720
   }
753
   }
721
   .iconfont {
754
   .iconfont {
722
     color: #a8b3ba;
755
     color: #a8b3ba;
781
   @include text-align;
814
   @include text-align;
782
   font-size: 0.36rem;
815
   font-size: 0.36rem;
783
   .back {
816
   .back {
784
-    color: $main-color;
817
+    // color: $main-color;
818
+    color: #fff;
785
     margin-right: 0.87rem;
819
     margin-right: 0.87rem;
786
     .iconfont {
820
     .iconfont {
787
-      color: $main-color;
821
+      // color: $main-color;
822
+      color: #fff;
788
       font-size: 0.42rem;
823
       font-size: 0.42rem;
789
     }
824
     }
790
   }
825
   }
817
 .top_row {
852
 .top_row {
818
   position: fixed !important;
853
   position: fixed !important;
819
   top: 0;
854
   top: 0;
820
-  left: 1.58rem;
855
+  left: 0;
821
   right: 0;
856
   right: 0;
822
   z-index: 1000;
857
   z-index: 1000;
823
   background: #fff;
858
   background: #fff;
832
 //   background: #fff;
867
 //   background: #fff;
833
 // }
868
 // }
834
 .stateBox {
869
 .stateBox {
835
-  padding-top: 115px;
870
+  padding-top: 180px;
836
   background: #fff;
871
   background: #fff;
837
   min-height: calc(100vh - 2px);
872
   min-height: calc(100vh - 2px);
838
   padding-left: 0.45rem;
873
   padding-left: 0.45rem;