|
@@ -120,11 +120,23 @@ class ApiAction extends Action {
|
|
|
public function get_baojing_info( ){
|
|
|
//$this->token_verify();
|
|
|
$plate = I('get.plate');
|
|
|
- $msg = M('jms_baojing_message')->where(array('Type'=>C('STOLEN_ALARM'),'LicensePlate'=>$plate))->select();
|
|
|
+ if(!$plate){
|
|
|
+ json_fail('未获取到车牌');
|
|
|
+ }
|
|
|
+ $pageSize = I('get.pagesize');
|
|
|
+ if(!$pageSize){
|
|
|
+ $pageSize = 10;
|
|
|
+ }
|
|
|
+ $page = I('get.page');
|
|
|
+ if(!$page){
|
|
|
+ $page = 0;
|
|
|
+ }
|
|
|
+ $start = $pageSize * $page;
|
|
|
+ $msg = M('jms_baojing_message')->where(array('LicensePlate'=>$plate))->limit($start, $pageSize)->order('AddTime desc')->select();
|
|
|
if(!$msg){
|
|
|
$this->api_fail(C('FAIL'),'报警信息不存在');
|
|
|
}
|
|
|
- $this->api_success('成功',$msg);
|
|
|
+ $this->api_success('成功',$msg);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -541,8 +553,8 @@ class ApiAction extends Action {
|
|
|
public function get_baojing_detail( ){
|
|
|
$this->token_verify();
|
|
|
$plate = I('get.plate');
|
|
|
- $addtime = I('get.addtime');
|
|
|
- $msg = M('jms_baojing_message')->where(array('Type'=>C('STOLEN_ALARM'),'LicensePlate'=>$plate,'AddTime'=>$addtime))->find();
|
|
|
+ $id = I('get.id');
|
|
|
+ $msg = M('jms_baojing_message')->where(array('ID' => $id, 'LicensePlate'=>$plate))->find();
|
|
|
if(!$msg){
|
|
|
$this->api_fail(C('FAIL'),'报警信息不存在');
|
|
|
}
|
|
@@ -821,16 +833,14 @@ class ApiAction extends Action {
|
|
|
$this->token_verify();
|
|
|
$userid = I('userid');
|
|
|
$electronicPlateUrl = S('key');
|
|
|
- if(!empty($electronicPlateUrl[0]['FrontElectronicPlateUrl']) && !empty($electronicPlateUrl[0]['BackElectronicPlateUrl'])){
|
|
|
- $this->api_success('成功',$electronicPlateUrl[0]);
|
|
|
+ if(!empty($electronicPlateUrl['FrontElectronicPlateUrl']) && !empty($electronicPlateUrl['BackElectronicPlateUrl'] )){
|
|
|
+ $this->api_success('成功',$electronicPlateUrl);
|
|
|
}
|
|
|
else{
|
|
|
- $result = M('jms_vehicle')->where(array('ID'=>$userid))->field('FrontElectronicPlateUrl,BackElectronicPlateUrl')->cache('key',86400)->select();
|
|
|
- $electronicPlateUrl = S('key');
|
|
|
- $this->api_success('成功',$electronicPlateUrl[0]);
|
|
|
+ $vehicle_info = M('jms_vehicle')->where(array('ID'=>$userid))->field('FrontElectronicPlateUrl,BackElectronicPlateUrl')->find();
|
|
|
+ S('key',$vehicle_info,86400);
|
|
|
+ $this->api_success('成功',$vehicle_info);
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|