likang 2 years ago
parent
commit
fed65b290f
1 changed files with 2 additions and 5 deletions
  1. 2 5
      catch/tag_history/controller/TagHistory.php

+ 2 - 5
catch/tag_history/controller/TagHistory.php

@@ -153,14 +153,11 @@ class TagHistory extends CatchController
             {
                 $time = $this->tagHistoryModel->where($wh)->max('addTime');
                
-                if(($value['addTime']-$time)<=90)
-                {
-                    $list[$key]['status']=1;
-                }
-                else
+                if((time()-$value['addTime'])>90)
                 {
                     $list[$key]['status']=0;
                 }
+               
             }
             $list[$key]['rssi'] = $da['rssi'];
             $list[$key]['move'] = $da['move'];