See999 před 5 roky
rodič
revize
fbf6363408

+ 1 - 1
src/pages/advice/AdvicePage.vue Zobrazit soubor

151
   background: #fff;
151
   background: #fff;
152
   border-radius: 30px;
152
   border-radius: 30px;
153
   .searchBtn {
153
   .searchBtn {
154
-    width: 15%;
154
+    width: 14%;
155
     float: left;
155
     float: left;
156
     height: 1rem;
156
     height: 1rem;
157
     line-height: 1rem;
157
     line-height: 1rem;

+ 12 - 11
src/pages/home/login.vue Zobrazit soubor

6
           <img src="../../assets/login/newLogo.png" alt />
6
           <img src="../../assets/login/newLogo.png" alt />
7
         </div>
7
         </div>
8
         <div class="reg">
8
         <div class="reg">
9
-          <div class="welcome">欢迎登录</div>
10
           <div class="form">
9
           <div class="form">
11
             <ul>
10
             <ul>
12
               <li>
11
               <li>
26
             :class="loginDisable ? 'disableLoginBtn' : ''"
25
             :class="loginDisable ? 'disableLoginBtn' : ''"
27
             :disabled="loginDisable"
26
             :disabled="loginDisable"
28
           >登录</button>
27
           >登录</button>
29
-          <div class="newForget" @click="to()">忘记密码</div>
28
+          <router-link to="/forgetPassword">
29
+            <div class="newForget">忘记密码</div>
30
+          </router-link>
30
           <!-- </router-link> -->
31
           <!-- </router-link> -->
31
           <!-- <div class="forget">
32
           <!-- <div class="forget">
32
           <a href="">免密码登录</a>
33
           <a href="">免密码登录</a>
139
     @include flex-direction;
140
     @include flex-direction;
140
     height: 100%;
141
     height: 100%;
141
     .logo {
142
     .logo {
142
-      padding: 3rem 0 1rem;
143
+      padding: 3rem 0 2.5rem;
143
       img {
144
       img {
144
-        width: 40%;
145
+        width: 44%;
145
         height: auto;
146
         height: auto;
146
         display: inline-block;
147
         display: inline-block;
147
       }
148
       }
148
     }
149
     }
149
     .reg {
150
     .reg {
150
-      width: 8.77rem;
151
+      width: 9.3rem;
151
       .welcome {
152
       .welcome {
152
         text-align: left;
153
         text-align: left;
153
         font-size: 0.55rem;
154
         font-size: 0.55rem;
158
       }
159
       }
159
       .newForget {
160
       .newForget {
160
         text-align: right;
161
         text-align: right;
161
-        font-size: 0.5rem;
162
+        font-size: 0.45rem;
162
         font-weight: 400;
163
         font-weight: 400;
163
         color: rgba(37, 143, 252, 1);
164
         color: rgba(37, 143, 252, 1);
164
-        margin-top: 0.5rem;
165
+        margin-top: 0.3rem;
165
       }
166
       }
166
       .form {
167
       .form {
167
         border: 1px $border-color solid;
168
         border: 1px $border-color solid;
187
           }
188
           }
188
           .iconfont {
189
           .iconfont {
189
             color: $main-color;
190
             color: $main-color;
190
-            font-size: 0.5rem;
191
+            font-size: 0.6rem;
191
             margin: 0 0.46rem;
192
             margin: 0 0.46rem;
192
           }
193
           }
193
         }
194
         }
210
       }
211
       }
211
       .loginBtn {
212
       .loginBtn {
212
         width: 100%;
213
         width: 100%;
213
-        height: 1.3rem;
214
-        line-height: 1.3rem;
214
+        height: 1.4rem;
215
+        line-height: 1.4rem;
215
         background: $main-color;
216
         background: $main-color;
216
         color: #fff;
217
         color: #fff;
217
         font-size: 0.45rem;
218
         font-size: 0.45rem;
218
         @include text-align;
219
         @include text-align;
219
         border-radius: 4px;
220
         border-radius: 4px;
220
-        margin: 40px 0 0 0;
221
+        margin: 1rem 0 0 0;
221
       }
222
       }
222
       .disableLoginBtn {
223
       .disableLoginBtn {
223
         background: lightgray;
224
         background: lightgray;

+ 1 - 1
src/pages/main/RecordPage.vue Zobrazit soubor

301
   background: #fff;
301
   background: #fff;
302
   border-radius: 30px;
302
   border-radius: 30px;
303
   .searchBtn {
303
   .searchBtn {
304
-    width: 15%;
304
+    width: 14%;
305
     float: left;
305
     float: left;
306
     height: 1rem;
306
     height: 1rem;
307
     line-height: 1rem;
307
     line-height: 1rem;

+ 171 - 195
src/pages/monitoring/index.vue Zobrazit soubor

168
           />
168
           />
169
         </div>
169
         </div>
170
       </van-list>-->
170
       </van-list>-->
171
-       <div class="monitoringTable">
172
-      <el-table :data="tableData" border style="width: 100%" class="newTable">
173
-        <el-table-column fixed prop="date" label="机号" width="100" align="center">
171
+      <div class="monitoringTable">
172
+        <el-table :data="tableData" border style="width: 100%" class="newTable">
173
+          <el-table-column fixed prop="date" label="机号" width="100" align="center">
174
             <template slot-scope="scope">
174
             <template slot-scope="scope">
175
-               {{
176
-                scope.row.dialysis_order.device_number.number.length > 0
177
-                  ? scope.row.dialysis_order.device_number.number
178
-                  : scope.row.device_number.number
175
+              {{
176
+              scope.row.dialysis_order.device_number.number.length > 0
177
+              ? scope.row.dialysis_order.device_number.number
178
+              : scope.row.device_number.number
179
               }}
179
               }}
180
             </template>
180
             </template>
181
-
182
-        </el-table-column>
183
-        <el-table-column prop="name" label="姓名" width="100" align="center">
184
-          <template slot-scope="scope">
185
-                {{scope.row.patient.name}}
186
-          </template>
187
-        </el-table-column>
188
-        <el-table-column prop="province" label="透析号" width="100" align="center">
181
+          </el-table-column>
182
+          <el-table-column prop="name" label="姓名" width="100" align="center">
183
+            <template slot-scope="scope">{{scope.row.patient.name}}</template>
184
+          </el-table-column>
185
+          <el-table-column prop="province" label="透析号" width="100" align="center">
186
+            <template slot-scope="scope">{{scope.row.patient.dialysis_no}}</template>
187
+          </el-table-column>
188
+          <el-table-column prop="city" label="排班时间" width="100" align="center">
189
+            <template slot-scope="scope">{{parseTime(scope.row.schedule_date,"{y}-{m}-{d}")}}</template>
190
+          </el-table-column>
191
+          <el-table-column prop="address" label="透析模式" width="200" align="center">
192
+            <template slot-scope="scope">{{ scope.row.treatment_mode.name}}</template>
193
+          </el-table-column>
194
+          <el-table-column prop="zip" label="脱水量" width="100" align="center">
189
             <template slot-scope="scope">
195
             <template slot-scope="scope">
190
-                {{scope.row.patient.dialysis_no}}
191
-            </template>
192
-        </el-table-column>
193
-        <el-table-column prop="city" label="排班时间" width="100" align="center">
194
-                   <template slot-scope="scope">
195
-                      {{parseTime(scope.row.schedule_date,"{y}-{m}-{d}")}}
196
-                   </template>
197
-        </el-table-column>
198
-        <el-table-column prop="address" label="透析模式" width="200" align="center">
199
-                <template slot-scope="scope">
200
-                    {{ scope.row.treatment_mode.name}}
201
-                </template>
202
-        </el-table-column>
203
-        <el-table-column prop="zip" label="脱水量" width="100" align="center">
204
-               <template slot-scope="scope">
205
-                  {{
206
-                scope.row.prescription.dewater_amount
207
-                  ? scope.row.prescription.dewater_amount
208
-                  : ""
196
+              {{
197
+              scope.row.prescription.dewater_amount
198
+              ? scope.row.prescription.dewater_amount
199
+              : ""
209
               }}
200
               }}
210
-               </template>
211
-        </el-table-column>
212
-        <el-table-column prop="zip" label="体重(透前/透后)" width="150" align="center">
213
-              <template slot-scope="scope">
214
-                    {{
215
-                scope.row.assessment_before_dislysis.weight_before
216
-                  ? scope.row.assessment_before_dislysis.weight_before
217
-                  : ""
201
+            </template>
202
+          </el-table-column>
203
+          <el-table-column prop="zip" label="体重(透前/透后)" width="150" align="center">
204
+            <template slot-scope="scope">
205
+              {{
206
+              scope.row.assessment_before_dislysis.weight_before
207
+              ? scope.row.assessment_before_dislysis.weight_before
208
+              : ""
218
               }}/{{
209
               }}/{{
219
-                scope.row.assessment_after_dislysis.weight_after
220
-                  ? scope.row.assessment_after_dislysis.weight_after
221
-                  : ""
210
+              scope.row.assessment_after_dislysis.weight_after
211
+              ? scope.row.assessment_after_dislysis.weight_after
212
+              : ""
222
               }}
213
               }}
223
-              </template>
224
-        </el-table-column>
225
-        <el-table-column prop="zip" label="监控预警(血压/心率)" width="200" align="center">
214
+            </template>
215
+          </el-table-column>
216
+          <el-table-column prop="zip" label="监控预警(血压/心率)" width="200" align="center">
226
             <template slot-scope="scope">
217
             <template slot-scope="scope">
227
-                <span
228
-                v-if="monitorBloodPressureStatus(scope.row.monitoring_record) == 1"
229
-                >低压</span
230
-              >
231
-              <span
232
-                v-if="monitorBloodPressureStatus(scope.row.monitoring_record) == 2"
233
-                >正常</span
234
-              >
235
-              <span
236
-                v-if="monitorBloodPressureStatus(scope.row.monitoring_record) == 3"
237
-                >高压</span
238
-              >
239
-              <span v-if="monitorRateStatus(scope.row.monitoring_record) == 1"
240
-                >心率过缓</span
241
-              >
242
-              <span v-if="monitorRateStatus(scope.row.monitoring_record) == 2"
243
-                >正常</span
244
-              >
245
-              <span v-if="monitorRateStatus(scope.row.monitoring_record) == 3"
246
-                >心率过高</span
247
-              >
218
+              <span v-if="monitorBloodPressureStatus(scope.row.monitoring_record) == 1">低压</span>
219
+              <span v-if="monitorBloodPressureStatus(scope.row.monitoring_record) == 2">正常</span>
220
+              <span v-if="monitorBloodPressureStatus(scope.row.monitoring_record) == 3">高压</span>
221
+              <span v-if="monitorRateStatus(scope.row.monitoring_record) == 1">心率过缓</span>
222
+              <span v-if="monitorRateStatus(scope.row.monitoring_record) == 2">正常</span>
223
+              <span v-if="monitorRateStatus(scope.row.monitoring_record) == 3">心率过高</span>
248
             </template>
224
             </template>
249
-        </el-table-column>
250
-      </el-table>
251
-       </div>
225
+          </el-table-column>
226
+        </el-table>
227
+      </div>
252
     </div>
228
     </div>
253
     <side-bar :active_index="1"></side-bar>
229
     <side-bar :active_index="1"></side-bar>
254
     <mt-datetime-picker
230
     <mt-datetime-picker
262
 </template>
238
 </template>
263
 
239
 
264
 <script>
240
 <script>
265
-import SideBar from '@/pages/layout/SideBar'
266
-import Divider from 'vux/src/components/divider/index'
267
-import { getMonitorList, GetAllZone, getPatientMonitors } from '@/api/monitor'
268
-import { parseTime } from '@/utils'
269
-import { Toast } from 'vant'
241
+import SideBar from "@/pages/layout/SideBar";
242
+import Divider from "vux/src/components/divider/index";
243
+import { getMonitorList, GetAllZone, getPatientMonitors } from "@/api/monitor";
244
+import { parseTime } from "@/utils";
245
+import { Toast } from "vant";
270
 
246
 
271
 export default {
247
 export default {
272
-  name: 'MonitoringIndex',
273
-  created () {
248
+  name: "MonitoringIndex",
249
+  created() {
274
     this.queryParams.date = this.parseTime(
250
     this.queryParams.date = this.parseTime(
275
       new Date().getTime() / 1000,
251
       new Date().getTime() / 1000,
276
-      '{y}-{m}-{d}'
277
-    )
278
-    this.queryParams.partition = this.partition
279
-    this.getMonitor(this.queryParams)
280
-    this.GetAllZone()
252
+      "{y}-{m}-{d}"
253
+    );
254
+    this.queryParams.partition = this.partition;
255
+    this.getMonitor(this.queryParams);
256
+    this.GetAllZone();
281
   },
257
   },
282
-  data () {
258
+  data() {
283
     return {
259
     return {
284
       tableData: [],
260
       tableData: [],
285
       loading: false,
261
       loading: false,
293
       partition: 0,
269
       partition: 0,
294
       queryParams: {
270
       queryParams: {
295
         date: new Date(),
271
         date: new Date(),
296
-        partition: ''
272
+        partition: ""
297
       },
273
       },
298
-      patient_keyword: '',
274
+      patient_keyword: "",
299
       search_page: 1,
275
       search_page: 1,
300
-      schedule_date: '2016-02-03'
301
-    }
276
+      schedule_date: "2016-02-03"
277
+    };
302
   },
278
   },
303
   methods: {
279
   methods: {
304
-    clickfunction: function (val) {
280
+    clickfunction: function(val) {
305
       this.$router.push({
281
       this.$router.push({
306
-        path: '/details',
282
+        path: "/details",
307
         query: {
283
         query: {
308
           patient_id: val.patient_id,
284
           patient_id: val.patient_id,
309
           date: val.schedule_date,
285
           date: val.schedule_date,
310
           patient_name: val.patient.name
286
           patient_name: val.patient.name
311
         }
287
         }
312
-      })
288
+      });
313
     },
289
     },
314
-    getMonitor: function (queryParams) {
315
-      this.search_page = 1
316
-      this.patient_keyword = ''
290
+    getMonitor: function(queryParams) {
291
+      this.search_page = 1;
292
+      this.patient_keyword = "";
317
 
293
 
318
-      this.loading = true
319
-      this.finished = false
320
-      this.dialysis_scheduals = []
294
+      this.loading = true;
295
+      this.finished = false;
296
+      this.dialysis_scheduals = [];
321
       getMonitorList(queryParams).then(response => {
297
       getMonitorList(queryParams).then(response => {
322
-        this.loading = false
323
-        this.finished = true
298
+        this.loading = false;
299
+        this.finished = true;
324
         if (response.data.state == 0) {
300
         if (response.data.state == 0) {
325
-          return false
301
+          return false;
326
         } else {
302
         } else {
327
-          var scheduals = response.data.data.monitor
328
-          var zoneMap = {}
329
-          var schedualMap = {}
303
+          var scheduals = response.data.data.monitor;
304
+          var zoneMap = {};
305
+          var schedualMap = {};
330
 
306
 
331
           for (let index = 0; index < scheduals.length; index++) {
307
           for (let index = 0; index < scheduals.length; index++) {
332
-            const schedual = scheduals[index]
308
+            const schedual = scheduals[index];
333
             if (schedualMap[schedual.device_zone.name] == null) {
309
             if (schedualMap[schedual.device_zone.name] == null) {
334
-              schedualMap[schedual.device_zone.name] = []
310
+              schedualMap[schedual.device_zone.name] = [];
335
             }
311
             }
336
-            schedualMap[schedual.device_zone.name].push(schedual)
312
+            schedualMap[schedual.device_zone.name].push(schedual);
337
             if (zoneMap[schedual.device_zone.name] == null) {
313
             if (zoneMap[schedual.device_zone.name] == null) {
338
-              zoneMap[schedual.device_zone.name] = schedual.device_zone
314
+              zoneMap[schedual.device_zone.name] = schedual.device_zone;
339
             }
315
             }
340
           }
316
           }
341
 
317
 
342
-          var zones = []
343
-          zones.push({ value: 0, text: '全部分区' })
318
+          var zones = [];
319
+          zones.push({ value: 0, text: "全部分区" });
344
           for (var zoneName in zoneMap) {
320
           for (var zoneName in zoneMap) {
345
-            zones.push({ value: zoneMap[zoneName].id, text: zoneName })
321
+            zones.push({ value: zoneMap[zoneName].id, text: zoneName });
346
           }
322
           }
347
-          zones = zones.sort(function (a, b) {
348
-            return a.value > b.value
349
-          })
350
-          this.zones = zones
323
+          zones = zones.sort(function(a, b) {
324
+            return a.value > b.value;
325
+          });
326
+          this.zones = zones;
351
 
327
 
352
-          var dialysis_scheduals = []
328
+          var dialysis_scheduals = [];
353
           for (let index = 0; index < zones.length; index++) {
329
           for (let index = 0; index < zones.length; index++) {
354
-            const zone = zones[index]
355
-            var scheduals = schedualMap[zone.text]
330
+            const zone = zones[index];
331
+            var scheduals = schedualMap[zone.text];
356
             if (scheduals == null) {
332
             if (scheduals == null) {
357
-              continue
333
+              continue;
358
             }
334
             }
359
             dialysis_scheduals.push({
335
             dialysis_scheduals.push({
360
               zone_name: zone.text,
336
               zone_name: zone.text,
361
               scheduals: scheduals
337
               scheduals: scheduals
362
-            })
338
+            });
363
           }
339
           }
364
-          this.dialysis_scheduals = dialysis_scheduals
340
+          this.dialysis_scheduals = dialysis_scheduals;
365
 
341
 
366
-          console.log('是什么东西啊', this.dialysis_scheduals)
367
-          let arr = [...this.dialysis_scheduals]
368
-          console.log('arr', arr)
369
-          let arr2 = []
342
+          console.log("是什么东西啊", this.dialysis_scheduals);
343
+          let arr = [...this.dialysis_scheduals];
344
+          console.log("arr", arr);
345
+          let arr2 = [];
370
           arr.map(item => {
346
           arr.map(item => {
371
-            arr2.push(...item.scheduals)
372
-          })
373
-          console.log('arr2', arr2)
374
-          let arr3 = []
347
+            arr2.push(...item.scheduals);
348
+          });
349
+          console.log("arr2", arr2);
350
+          let arr3 = [];
375
           arr2.map(item => {
351
           arr2.map(item => {
376
-            this.schedule_date = item.schedule_date
377
-            arr3.push(item.patient)
378
-          })
379
-          this.tableData = arr2
352
+            this.schedule_date = item.schedule_date;
353
+            arr3.push(item.patient);
354
+          });
355
+          this.tableData = arr2;
380
         }
356
         }
381
-      })
357
+      });
382
     },
358
     },
383
-    parseTime (time, layout) {
384
-      return parseTime(time, layout)
359
+    parseTime(time, layout) {
360
+      return parseTime(time, layout);
385
     },
361
     },
386
-    openPicker: function () {
387
-      this.$refs.date_picker.open()
362
+    openPicker: function() {
363
+      this.$refs.date_picker.open();
388
     },
364
     },
389
-    handleDateConfirm: function (val) {
390
-      this.queryParams.date = this.parseTime(this.date / 1000, '{y}-{m}-{d}')
391
-      this.queryParams.partition = this.partition
365
+    handleDateConfirm: function(val) {
366
+      this.queryParams.date = this.parseTime(this.date / 1000, "{y}-{m}-{d}");
367
+      this.queryParams.partition = this.partition;
392
 
368
 
393
-      this.getMonitor(this.queryParams)
369
+      this.getMonitor(this.queryParams);
394
     },
370
     },
395
-    partitionName: function (val) {
396
-      return typeof this.partitionArr[val] !== 'undefined' &&
397
-        typeof this.partitionArr[val].name !== 'undefined'
371
+    partitionName: function(val) {
372
+      return typeof this.partitionArr[val] !== "undefined" &&
373
+        typeof this.partitionArr[val].name !== "undefined"
398
         ? this.partitionArr[val].name
374
         ? this.partitionArr[val].name
399
-        : ''
375
+        : "";
400
     },
376
     },
401
-    GetAllZone: function () {
377
+    GetAllZone: function() {
402
       GetAllZone().then(response => {
378
       GetAllZone().then(response => {
403
         if (response.data.state == 0) {
379
         if (response.data.state == 0) {
404
-          return false
380
+          return false;
405
         } else {
381
         } else {
406
-          this.partitionArr = response.data.data.zone
407
-          this.partitionArr.unshift({ id: 0, name: '全部分区' })
382
+          this.partitionArr = response.data.data.zone;
383
+          this.partitionArr.unshift({ id: 0, name: "全部分区" });
408
         }
384
         }
409
-      })
385
+      });
410
     },
386
     },
411
-    itemClick: function (id) {
412
-      this.partition = id
413
-      this.visible = false
414
-      this.queryParams.date = this.parseTime(this.date / 1000, '{y}-{m}-{d}')
415
-      this.queryParams.partition = this.partition
416
-      this.getMonitor(this.queryParams)
387
+    itemClick: function(id) {
388
+      this.partition = id;
389
+      this.visible = false;
390
+      this.queryParams.date = this.parseTime(this.date / 1000, "{y}-{m}-{d}");
391
+      this.queryParams.partition = this.partition;
392
+      this.getMonitor(this.queryParams);
417
     },
393
     },
418
-    monitorBloodPressureStatus: function (val) {
419
-      let status = 0
394
+    monitorBloodPressureStatus: function(val) {
395
+      let status = 0;
420
       if (val.length == 0) {
396
       if (val.length == 0) {
421
-        return 0
397
+        return 0;
422
       }
398
       }
423
       for (let i = 0; i < val.length; i++) {
399
       for (let i = 0; i < val.length; i++) {
424
         // 舒张压(低压)(diastolic_blood_pressure)    收缩压(高压)(systolic_blood_pressure)
400
         // 舒张压(低压)(diastolic_blood_pressure)    收缩压(高压)(systolic_blood_pressure)
426
           val[i].systolic_blood_pressure >= 140 ||
402
           val[i].systolic_blood_pressure >= 140 ||
427
           val[i].diastolic_blood_pressure >= 90
403
           val[i].diastolic_blood_pressure >= 90
428
         ) {
404
         ) {
429
-          status = 3 // 高压
405
+          status = 3; // 高压
430
         } else if (
406
         } else if (
431
           val[i].diastolic_blood_pressure < 60 ||
407
           val[i].diastolic_blood_pressure < 60 ||
432
           val[i].systolic_blood_pressure < 90
408
           val[i].systolic_blood_pressure < 90
433
         ) {
409
         ) {
434
-          status = 1 // 低压
410
+          status = 1; // 低压
435
         } else if (
411
         } else if (
436
           val[i].diastolic_blood_pressure >= 60 ||
412
           val[i].diastolic_blood_pressure >= 60 ||
437
           val[i].systolic_blood_pressure < 140
413
           val[i].systolic_blood_pressure < 140
438
         ) {
414
         ) {
439
-          status = 2 // 正常
415
+          status = 2; // 正常
440
         }
416
         }
441
 
417
 
442
         // if ( val[i].diastolic_blood_pressure < 60 | val[i].systolic_blood_pressure < 90 ) {
418
         // if ( val[i].diastolic_blood_pressure < 60 | val[i].systolic_blood_pressure < 90 ) {
454
         // }
430
         // }
455
       }
431
       }
456
 
432
 
457
-      return status
433
+      return status;
458
     },
434
     },
459
-    monitorRateStatus: function (val) {
460
-      let status = 0
435
+    monitorRateStatus: function(val) {
436
+      let status = 0;
461
       if (val.length == 0) {
437
       if (val.length == 0) {
462
-        return 0
438
+        return 0;
463
       }
439
       }
464
       for (let i = 0; i < val.length; i++) {
440
       for (let i = 0; i < val.length; i++) {
465
         // 舒张压(低压)(diastolic_blood_pressure)    收缩压(高压)(systolic_blood_pressure)
441
         // 舒张压(低压)(diastolic_blood_pressure)    收缩压(高压)(systolic_blood_pressure)
466
         if (val[i].pulse_frequency < 60) {
442
         if (val[i].pulse_frequency < 60) {
467
-          status = 1 // 心率过缓
443
+          status = 1; // 心率过缓
468
         } else if (
444
         } else if (
469
           val[i].pulse_frequency >= 60 &&
445
           val[i].pulse_frequency >= 60 &&
470
           val[i].pulse_frequency < 100
446
           val[i].pulse_frequency < 100
471
         ) {
447
         ) {
472
-          status = 2 // 心率正常
448
+          status = 2; // 心率正常
473
         } else if (val[i].pulse_frequency >= 100) {
449
         } else if (val[i].pulse_frequency >= 100) {
474
-          status = 3 // 心率过快
450
+          status = 3; // 心率过快
475
         }
451
         }
476
       }
452
       }
477
-      return status
453
+      return status;
478
     },
454
     },
479
-    searchWithKeyword: function (page) {
480
-      this.$refs.search_field.blur()
455
+    searchWithKeyword: function(page) {
456
+      this.$refs.search_field.blur();
481
       if (this.patient_keyword.length == 0) {
457
       if (this.patient_keyword.length == 0) {
482
-        this.queryParams.date = this.parseTime(this.date / 1000, '{y}-{m}-{d}')
483
-        this.queryParams.partition = this.partition
484
-        this.getMonitor(this.queryParams)
485
-        return
458
+        this.queryParams.date = this.parseTime(this.date / 1000, "{y}-{m}-{d}");
459
+        this.queryParams.partition = this.partition;
460
+        this.getMonitor(this.queryParams);
461
+        return;
486
       }
462
       }
487
 
463
 
488
-      this.partition = 0
464
+      this.partition = 0;
489
 
465
 
490
-      this.search_page = page
466
+      this.search_page = page;
491
       if (page == 1) {
467
       if (page == 1) {
492
-        this.dialysis_scheduals = []
468
+        this.dialysis_scheduals = [];
493
       }
469
       }
494
-      this.loading = true
495
-      this.finished = false
470
+      this.loading = true;
471
+      this.finished = false;
496
       getPatientMonitors({
472
       getPatientMonitors({
497
         keyword: this.patient_keyword,
473
         keyword: this.patient_keyword,
498
         page: this.search_page
474
         page: this.search_page
499
       }).then(rs => {
475
       }).then(rs => {
500
-        this.loading = false
501
-        this.finished = true
502
-        var resp = rs.data
476
+        this.loading = false;
477
+        this.finished = true;
478
+        var resp = rs.data;
503
         if (resp.state == 1) {
479
         if (resp.state == 1) {
504
           if (resp.data.monitor.length > 0) {
480
           if (resp.data.monitor.length > 0) {
505
             this.dialysis_scheduals.push({
481
             this.dialysis_scheduals.push({
506
-              zone_name: '',
482
+              zone_name: "",
507
               scheduals: resp.data.monitor
483
               scheduals: resp.data.monitor
508
-            })
509
-            this.finished = false
484
+            });
485
+            this.finished = false;
510
           } else {
486
           } else {
511
-            this.finished = true
487
+            this.finished = true;
512
           }
488
           }
513
         }
489
         }
514
-      })
490
+      });
515
     },
491
     },
516
-    onLoad: function () {
517
-      this.searchWithKeyword(this.search_page + 1)
492
+    onLoad: function() {
493
+      this.searchWithKeyword(this.search_page + 1);
518
     }
494
     }
519
   },
495
   },
520
   components: {
496
   components: {
521
     Divider,
497
     Divider,
522
     SideBar
498
     SideBar
523
   }
499
   }
524
-}
500
+};
525
 </script>
501
 </script>
526
 
502
 
527
 <style lang="scss" scoped>
503
 <style lang="scss" scoped>
555
 .choice {
531
 .choice {
556
   border-bottom: 1px #e5e5e5 solid;
532
   border-bottom: 1px #e5e5e5 solid;
557
   position: fixed;
533
   position: fixed;
558
-  top: 48px;
534
+  top: 47px;
559
   right: 0;
535
   right: 0;
560
   z-index: 66;
536
   z-index: 66;
561
   left: 0;
537
   left: 0;
632
   background: #fff;
608
   background: #fff;
633
   border-radius: 30px;
609
   border-radius: 30px;
634
   .searchBtn {
610
   .searchBtn {
635
-    width: 15%;
611
+    width: 14%;
636
     float: left;
612
     float: left;
637
     height: 1rem;
613
     height: 1rem;
638
     line-height: 1rem;
614
     line-height: 1rem;

+ 50 - 1
src/pages/personal/ChangePassword.vue Zobrazit soubor

1
 <template>
1
 <template>
2
-  <div>123</div>
2
+  <div class="container">
3
+    <div class="changePassword">
4
+      <van-field v-model="username" clearable label="旧密码" placeholder="请输入旧密码" />
5
+      <van-field v-model="password" type="password" label="新密码" placeholder="请输入新密码" />
6
+      <van-field v-model="password" type="password" label="确认密码" placeholder="请确认密码" />
7
+      <div class="finish">完成</div>
8
+    </div>
9
+  </div>
3
 </template>
10
 </template>
11
+
12
+<style rel="stylesheet/scss" lang="scss" >
13
+.container {
14
+  background: #f5f5f5;
15
+  @include box-sizing;
16
+  position: fixed;
17
+  width: 100%;
18
+  height: 100%;
19
+  display: flex;
20
+  justify-content: space-between;
21
+  .changePassword {
22
+    width: 100%;
23
+    margin-top: 1rem;
24
+    font-size: 0.45rem;
25
+    .van-cell {
26
+      width: 90%;
27
+      margin: 0 auto;
28
+      height: 1.4rem;
29
+      padding: 0 15px;
30
+    }
31
+    .van-field__label {
32
+      height: 1.4rem;
33
+      line-height: 1.4rem;
34
+    }
35
+    .van-field__body {
36
+      height: 100%;
37
+    }
38
+  }
39
+  .finish {
40
+    width: 90%;
41
+    margin: 0 auto;
42
+    border-radius: 5px;
43
+    height: 1.4rem;
44
+    background: rgba(37, 143, 252, 1);
45
+    color: #fff;
46
+    text-align: center;
47
+    font-size: 0.6rem;
48
+    line-height: 1.4rem;
49
+    margin-top: 1rem;
50
+  }
51
+}
52
+</style>

+ 48 - 75
src/pages/personal/ForgetPassword.vue Zobrazit soubor

5
         <div class="logo">
5
         <div class="logo">
6
           <img src="../../assets/login/newLogo.png" alt />
6
           <img src="../../assets/login/newLogo.png" alt />
7
         </div>
7
         </div>
8
+        <div class="formBox">
9
+          <div class="formOne">
10
+            <el-input placeholder="请输入账号" v-model="input" clearable></el-input>
11
+          </div>
12
+          <div class="formOne">
13
+            <el-input class="reyzm" v-model="input"></el-input>
14
+            <div class="get">获取验证码</div>
15
+          </div>
16
+          <div class="formOne">
17
+            <el-input placeholder="请输入新密码" v-model="input"></el-input>
18
+          </div>
19
+          <div class="confirm">确定修改</div>
20
+        </div>
8
       </div>
21
       </div>
9
     </div>
22
     </div>
10
   </div>
23
   </div>
11
 </template>
24
 </template>
12
 
25
 
13
-<style rel="stylesheet/scss" lang="scss" scoped >
26
+<style rel="stylesheet/scss" lang="scss" >
14
 .container {
27
 .container {
15
-  // background: $white-bg;
16
   background: #f5f5f5;
28
   background: #f5f5f5;
17
   @include box-sizing;
29
   @include box-sizing;
18
   position: fixed;
30
   position: fixed;
38
     @include flex-direction;
50
     @include flex-direction;
39
     height: 100%;
51
     height: 100%;
40
     .logo {
52
     .logo {
41
-      padding: 3rem 0 1rem;
53
+      padding: 3rem 0 2.5rem;
42
       img {
54
       img {
43
-        width: 40%;
55
+        width: 44%;
44
         height: auto;
56
         height: auto;
45
         display: inline-block;
57
         display: inline-block;
46
       }
58
       }
47
     }
59
     }
48
-    .reg {
49
-      width: 8.77rem;
50
-      .welcome {
51
-        text-align: left;
52
-        font-size: 0.55rem;
53
-        font-weight: 400;
54
-        color: rgba(37, 143, 252, 1);
55
-        margin-bottom: 0.5rem;
56
-        // line-height: 14px;
57
-      }
58
-      .newForget {
59
-        text-align: right;
60
-        font-size: 0.5rem;
61
-        font-weight: 400;
62
-        color: rgba(37, 143, 252, 1);
63
-        margin-top: 0.5rem;
64
-      }
65
-      .form {
66
-        border: 1px $border-color solid;
67
-        border-radius: 4px;
68
-        li {
69
-          border-bottom: 1px $border-color solid;
70
-          @include align-items-center;
71
-          @include text-align;
72
-          @include display-flex;
73
-          @include box-sizing;
74
-          .tel {
75
-            padding: 0.4rem 0;
76
-            width: 90%;
77
-            border: none;
78
-            outline: none;
79
-            font-size: 0.45rem;
80
-          }
81
-          .mint-cell {
82
-            width: 100%;
83
-          }
84
-          &:last-child {
85
-            border: none;
86
-          }
87
-          .iconfont {
88
-            color: $main-color;
89
-            font-size: 0.5rem;
90
-            margin: 0 0.46rem;
91
-          }
92
-        }
60
+
61
+    .newForget {
62
+      text-align: right;
63
+      font-size: 0.5rem;
64
+      font-weight: 400;
65
+      color: rgba(37, 143, 252, 1);
66
+      margin-top: 0.5rem;
67
+    }
68
+    .formOne {
69
+      height: 1.3rem;
70
+      display: flex;
71
+      justify-content: space-between;
72
+      margin-bottom: 0.5rem;
73
+      .el-input__inner {
74
+        height: 100%;
75
+        font-size: 0.45rem;
93
       }
76
       }
94
-      .forget {
95
-        text-align: left;
96
-        padding: 0.45rem 1rem;
97
-        a {
98
-          float: left;
99
-          font-size: 0.28rem;
100
-          color: $main-color;
101
-          &:nth-child(2) {
102
-            color: #999999;
103
-            float: right;
104
-          }
105
-          &:active {
106
-            background: $white-bg;
107
-          }
108
-        }
77
+      .reyzm {
78
+        width: 60%;
109
       }
79
       }
110
-      .loginBtn {
111
-        width: 100%;
112
-        height: 1.3rem;
80
+      .get {
81
+        width: 36%;
82
+        height: 100%;
83
+        font-size: 0.5rem;
84
+        background: rgba(37, 143, 252, 1);
113
         line-height: 1.3rem;
85
         line-height: 1.3rem;
114
-        background: $main-color;
86
+        border-radius: 5px;
115
         color: #fff;
87
         color: #fff;
116
-        font-size: 0.45rem;
117
-        @include text-align;
118
-        border-radius: 4px;
119
-        margin: 40px 0 0 0;
120
-      }
121
-      .disableLoginBtn {
122
-        background: lightgray;
123
       }
88
       }
124
     }
89
     }
90
+    .confirm {
91
+      height: 1.3rem;
92
+      background: rgba(37, 143, 252, 1);
93
+      line-height: 1.3rem;
94
+      color: #fff;
95
+      border-radius: 5px;
96
+      font-size: 0.5rem;
97
+    }
125
   }
98
   }
126
 }
99
 }
127
 </style>
100
 </style>

+ 2 - 3
src/pages/personal/index.vue Zobrazit soubor

289
     .avatar {
289
     .avatar {
290
       position: absolute;
290
       position: absolute;
291
       width: 4rem;
291
       width: 4rem;
292
-      top: 1rem;
292
+      top: 1.3rem;
293
       left: 0;
293
       left: 0;
294
       right: 0;
294
       right: 0;
295
       bottom: 0;
295
       bottom: 0;
323
       display: flex;
323
       display: flex;
324
       align-items: center;
324
       align-items: center;
325
       span {
325
       span {
326
-        color: #333333;
326
+        color: #34495e;
327
         font-size: 0.5rem;
327
         font-size: 0.5rem;
328
         margin-left: 0.4rem;
328
         margin-left: 0.4rem;
329
-        font-weight: 600;
330
       }
329
       }
331
     }
330
     }
332
     img {
331
     img {

+ 1 - 1
src/router/index.js Zobrazit soubor

73
     {
73
     {
74
       path: "/changePassword",
74
       path: "/changePassword",
75
       name: "changePassword",
75
       name: "changePassword",
76
-      component: () => import("@/pages/personal/changePassword")
76
+      component: () => import("@/pages/personal/ChangePassword")
77
     }
77
     }
78
   ]
78
   ]
79
 });
79
 });

+ 3 - 3
src/styles/style.scss Zobrazit soubor

774
 }
774
 }
775
 
775
 
776
 .van-cell {
776
 .van-cell {
777
-  @media only screen and (max-width: 812px) {
778
-    font-size: 12px !important;
779
-  }
777
+  // @media only screen and (max-width: 812px) {
778
+  //   font-size: 12px !important;
779
+  // }
780
 }
780
 }
781
 .van-field__left-icon {
781
 .van-field__left-icon {
782
   // @media only screen and (max-width: 812px) {
782
   // @media only screen and (max-width: 812px) {