接口修改8

This commit is contained in:
彭桃 2023-02-11 16:20:00 +08:00
parent 0efd385920
commit 5c2b8e18fa

View File

@ -976,57 +976,21 @@ class Statistics extends BaseController
$return = [
[
'name'=>'鸡',
'data'=>
[['month'=>'1月','value'=>'661'],
['month'=>'2月','value'=>'356'],
['month'=>'3月','value'=>'415'],
['month'=>'4月','value'=>'258'],
['month'=>'5月','value'=>'779'],
['month'=>'6月','value'=>'1465'],
['month'=>'7月','value'=>'668'],
['month'=>'8月','value'=>'571'],
['month'=>'9月','value'=>'498'],
['month'=>'10月','value'=>'587'],
['month'=>'11月','value'=>'881'],
['month'=>'12月','value'=>'1008']],
'value'=>[1200,2000,1800,1560,1896,2100,1952,1635,1874,2011,1921,1932]
],
[
'name'=>'鸭',
'data'=>
[['month'=>'1月','value'=>'123'],
['month'=>'2月','value'=>'456'],
['month'=>'3月','value'=>'789'],
['month'=>'4月','value'=>'147'],
['month'=>'5月','value'=>'258'],
['month'=>'6月','value'=>'369'],
['month'=>'7月','value'=>'159'],
['month'=>'8月','value'=>'267'],
['month'=>'9月','value'=>'367'],
['month'=>'10月','value'=>'541'],
['month'=>'11月','value'=>'354'],
['month'=>'12月','value'=>'897']],
'data'=> [1124,1567,1800,1304,1596,2020,2158,1678,1999,1206,1479,2214]
],
[
'name'=>'鹅',
'data'=>
[['month'=>'1月','value'=>'245'],
['month'=>'2月','value'=>'245'],
['month'=>'3月','value'=>'411'],
['month'=>'4月','value'=>'246'],
['month'=>'5月','value'=>'631'],
['month'=>'6月','value'=>'1234'],
['month'=>'7月','value'=>'546'],
['month'=>'8月','value'=>'246'],
['month'=>'9月','value'=>'356'],
['month'=>'10月','value'=>'466'],
['month'=>'11月','value'=>'744'],
['month'=>'12月','value'=>'998']],
'data'=> [1323,756,1346,886,896,1100,952,635,874,1411,921,932]
]
];
$this->apiSuccess('获取成功',$return);
}
//养殖户产量分析
//养殖户产量分析(饼状图)
public function get_num24($area_id=0,$street_id=0,$village_id=0){
$where = [];
if ($area_id){
@ -1048,6 +1012,36 @@ class Statistics extends BaseController
}
//产业结构,锥形图
public function get_num25($area_id=0,$street_id=0,$village_id=0){
$where = [];
if ($area_id){
$where[] = ['area_id', '=', $area_id];
}
if ($street_id){
$where[] = ['street_id', '=', $street_id];
}
if ($village_id){
$where[] = ['village_id', '=', $village_id];
}
$return['data'] = [
['name' => '土豆','value'=>80],
['name' => '番茄','value'=>50],
['name' => '红薯','value'=>30],
['name' => '山药','value'=>20],
['name' => '白菜','value'=>70],
];
$return['img'] = [
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z5.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z1.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z2.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z4.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z3.png',
];
$this->apiSuccess('获取成功',$return);
}
}