Browse Source

修改bug

张保健 5 years ago
parent
commit
789d15ea4c
2 changed files with 3 additions and 3 deletions
  1. 2 2
      src/pages/main/dialog/MonitDialog.vue
  2. 1 1
      src/pages/main/today/TodayTab.vue

+ 2 - 2
src/pages/main/dialog/MonitDialog.vue View File

@@ -904,9 +904,9 @@ export default {
904 904
             var monitor = resp.data.monitor
905 905
             this.$emit('did_add_monitor', monitor)
906 906
 
907
-            this.monitor_records.unshift(monitor)
907
+            // this.monitor_records.unshift(monitor)
908 908
 
909
-            this.monitor_records= this.quickSort(this.monitor_records,"operate_time",false)
909
+            // this.monitor_records= this.quickSort(this.monitor_records,"operate_time",false)
910 910
 
911 911
             this.form.pulse_frequency = ''
912 912
             this.form.breathing_rated = ''

+ 1 - 1
src/pages/main/today/TodayTab.vue View File

@@ -429,7 +429,7 @@ export default {
429 429
     //   this.show_fixed_nav = scrollTop > 160;
430 430
     // },
431 431
 
432
-    didAddMonitor (monitor) {debugger
432
+    didAddMonitor (monitor) {
433 433
       this.monitor_records.push(monitor)
434 434
 
435 435
       this.monitor_records.sort((a, b) => b.operate_time - a.operate_time)