Index.php
7.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
/**
* Created by PhpStorm.
* User: YRF
* Date: 2023/11/14
* Time: 16:42
*/
namespace app\api\controller\v8;
//允许所有的跨域请求
header('Access-Control-Allow-Origin: *');
header("Access-Control-Allow-Headers: *");
header('Access-Control-Allow-Methods: POST,GET,OPTIONS');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400');
date_default_timezone_set('PRC');
use app\common\controller\Api;
use app\common\helper\HttpHelper;
use think\Db;
//v6 巡检端功能
class Index extends Api
{
// 无需登录的接口,*表示全部
protected $noNeedLogin = ['*'];
// 无需鉴权的接口,*表示全部
protected $noNeedRight = ['*'];
protected $token = "";
protected $cameraurl = "https://camera.ynzhsk.cn";
protected $uimsApiurl="https://tyuims.tenyes.cn/";
protected $swApiurl="http://121.37.218.20:9011/";
protected $sxjApiurl="http://124.71.107.128:9040/";
//前置方法
public function _initialize()
{
$user=new User();
$this->token=$user->tokenLogin();
parent::_initialize();
}
//1.查询摄像头接口
public function getCamera(){
$url=$this->cameraurl."/api/reservoir/hkws/Hardware/getListByReservoir";
$info =HttpHelper::get($url);
$info = json_decode($info, true);
if($info['data']){
return $this->success("返回成功",$info);
}else{
return $this->error("返回失败");
}
}
//获取水厂列表
public function getwaterworks(){
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_api/v1/getWaterworksListData";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//获取水厂列表
public function getWaterworksDetailData(){
$id= $this->request->param('id',"");
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_api/v1/getWaterworksDetailData";
$data=['id'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
if($res){
$ress= $this->getDataWaterCenInfo($id);
$res['data']['dayPct']=$ress['data']['dayPct'];
$res['data']['total']=$ress['data']['total'];
$res['data']['passed']=$ress['data']['passed'];
}
return $this->success($res['message'],$res['data']);
}
//获得净水设备列表
public function getWaterworksEquipmentListData(){
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_api/v1/getWaterworksEquipmentListData";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//获得净水设备列表
public function getWaterworksEquipmentDetailData(){
$id= $this->request->param('id',"");
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_api/v1/getWaterworksEquipmentDetailData";
$data=['id'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得净水设备数据列表
public function getWaterworksEquipmentDataListData(){
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_api/v1/getWaterworksEquipmentDataListData";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得设备数据详情
public function getWaterworksEquipmentDataDetailData(){
$id= $this->request->param('id',"");
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_api/v1/getWaterworksEquipmentDataDetailData";
$data=['id'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得设备数据详情
public function eqpData7DayList(){
$id= $this->request->param('id',"");
$token=$this->token;
$url="https://wq.screen.xp.yn.cn/api/screen_eqp_data/v1/eqpData7DayList";
$data=['wid'=>"$id"];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得设备数据详情
public function getAllSupplyStatistics(){
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_all/v1/getAllSupplyStatistics";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得设备数据详情
public function getPayAndOwe(){
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."data_all/v1/getPayAndOwe";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得水表列表
public function getInstrumentListData(){
$user=new User();
$token=$user->swApitoken();
$url=$this->swApiurl."data_api/v1/insListAll";
$data=["cat"=>0];
$res =HttpHelper::getheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得水表列表
public function getInstrumentDetailData(){
$id= $this->request->param('id',"");
$user=new User();
$token=$user->swApitoken();
$url=$this->swApiurl."data_api/v1/getInstrumentDetailData";
$data=['id'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得水表列表
public function eqpDataWaterCenInfo(){
$id= $this->request->param('id',"");
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."screen_eqp_data/v1/eqpDataWaterCenInfo";
$data=['wid'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得水表列表
public function getDataWaterCenInfo($id){
$user=new User();
$token=$user->sxjApitoken();
$url=$this->sxjApiurl."screen_eqp_data/v1/eqpDataWaterCenInfo";
$data=['wid'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $res;
}
//-获得水表列表
public function getInstrumentcount(){
$user=new User();
$token=$user->swApitoken();
$url=$this->swApiurl."data_api/v1/getInstrumentListData";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
if($res['code']){
$returndata=['total'=>$res['data']['total']];
return $this->success($res['message'],$returndata);
}else{
return $this->error($res['message']);
}
}
}