|
@@ -12,7 +12,7 @@ class Access extends CatchController
|
|
|
{
|
|
|
protected $accessModel;
|
|
|
private $label=['44010201','44010202'];
|
|
|
-
|
|
|
+ private $mac=[];
|
|
|
public function __construct(AccessModel $accessModel)
|
|
|
{
|
|
|
$this->accessModel = $accessModel;
|
|
@@ -40,19 +40,15 @@ class Access extends CatchController
|
|
|
}
|
|
|
|
|
|
if (!empty($tage)) {
|
|
|
- $where[] = ['lable', 'in', implode(",", $tage)];
|
|
|
+ $where[] = ['label', 'in', implode(",", $tage)];
|
|
|
}
|
|
|
$list=[];
|
|
|
-
|
|
|
- if (!empty($tage)) {
|
|
|
- $otherlabel=implode(",",$this->label);
|
|
|
- }
|
|
|
|
|
|
- $labelArray=explode(',',$otherlabel);
|
|
|
+ $labelArray=empty($tage) ? $this->label:$tage;
|
|
|
foreach($labelArray as $item){
|
|
|
$otherWhere=[];
|
|
|
// $otherWhere[]=["mac","=",$othermac];
|
|
|
- $otherWhere[]=["lable","=",trim($item)];
|
|
|
+ $otherWhere[]=["label","=",trim($item)];
|
|
|
|
|
|
$t1 = $this->accessModel->where($otherWhere)->order("id","desc")->find();
|
|
|
|
|
@@ -136,7 +132,7 @@ class Access extends CatchController
|
|
|
$where[]= ["time","<=",strtotime($times[1])];
|
|
|
}
|
|
|
|
|
|
- $where[] = ['lable', '=', $lable];
|
|
|
+ $where[] = ['label', '=', $lable];
|
|
|
|
|
|
|
|
|
$list = $this->accessModel->where($where)->order('id desc')->page($page)->limit($limit)->select();
|
|
@@ -154,5 +150,10 @@ class Access extends CatchController
|
|
|
'data' => $list,
|
|
|
]);
|
|
|
}
|
|
|
+ public function getStations(Request $request)
|
|
|
+ {
|
|
|
+
|
|
|
+ return CatchResponse::success($this->mac);
|
|
|
+ }
|
|
|
|
|
|
}
|