See999 4 years ago
parent
commit
ce7013a253

+ 1 - 1
index.html View File

@@ -4,7 +4,7 @@
4 4
 <head>
5 5
   <meta charset="utf-8" />
6 6
   <meta name="viewport"
7
-    content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no,viewport-fit=cover" />
7
+    content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
8 8
   <title>酷医云移动端</title>
9 9
 </head>
10 10
 

+ 3 - 4
src/pages/patientManagement/components/Blood.vue View File

@@ -76,9 +76,7 @@ import {
76 76
 } from "@/api/patient/patient";
77 77
 export default {
78 78
   props: {
79
-    searchValue: String
80
-  },
81
-  props: {
79
+    searchValue: String,
82 80
     seacherActive: Number
83 81
   },
84 82
   data() {
@@ -242,6 +240,7 @@ export default {
242 240
     }
243 241
   },
244 242
   created() {
243
+    console.log(this.searchValue)
245 244
     if (this.searchValue) {
246 245
       this.SearchAllBlood(this.searchValue);
247 246
     } else {
@@ -251,7 +250,7 @@ export default {
251 250
   watch: {
252 251
     searchValue(newVal) {
253 252
       this.SearchAllBlood(newVal);
254
-    }
253
+    },
255 254
   }
256 255
 };
257 256
 </script>

+ 2 - 0
src/pages/patientManagement/patientManagement.vue View File

@@ -193,8 +193,10 @@ export default {
193 193
   watch: {
194 194
     value(newVal) {
195 195
       if (newVal == "") {
196
+        this.value = newVal
196 197
         this.getBloodDialysisPatient();
197 198
       } else {
199
+        this.value = newVal
198 200
         this.SearchAllPatient(newVal);
199 201
       }
200 202
     }

+ 0 - 18
src/styles/reset.scss View File

@@ -161,21 +161,3 @@ input:-webkit-autofill {
161 161
   background-color: #eee;
162 162
 }
163 163
 
164
-@mixin iphonex-css {
165
-  padding-top: constant(safe-area-inset-top); //为导航栏+状态栏的高度 88px
166
-  padding-top: env(safe-area-inset-top); //为导航栏+状态栏的高度 88px
167
-  padding-left: constant(safe-area-inset-left); //如果未竖屏时为0
168
-  padding-left: env(safe-area-inset-left); //如果未竖屏时为0
169
-  padding-right: constant(safe-area-inset-right); //如果未竖屏时为0
170
-  padding-right: env(safe-area-inset-right); //如果未竖屏时为0
171
-  padding-bottom: constant(safe-area-inset-bottom); //为底下圆弧的高度 34px
172
-  padding-bottom: env(safe-area-inset-bottom); //为底下圆弧的高度 34px
173
-}
174
-
175
-@mixin iphonex-support {
176
-  @supports (bottom: constant(safe-area-inset-top)) or (bottom: env(safe-area-inset-top)) {
177
-    body.iphonex {
178
-      @include iphonex-css;
179
-    }
180
-  }
181
-}