nk-lihaink-cn/app/api/controller/Statistics.php
2023-02-14 18:01:16 +08:00

1308 lines
52 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\api\controller;
use app\api\BaseController;
use think\facade\Cache;
use think\facade\Db;
/**
* 数据大屏接口.
*/
class Statistics extends BaseController
{
//人口构成80岁以上、61-80岁、36-60岁、18-35岁、0-17岁
public function get_people($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];
}
// 80岁以上
$num1 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('>', 80)->count();
//61-80岁
$num2 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('<=', 80)->whereAge('>', 60)->count();
//36-60岁
$num3 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('<=', 60)->whereAge('>=', 36)->count();
//18-35岁
$num4 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('<', 36)->whereAge('>', 17)->count();
//0-17岁
$num5 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('<', 18)->count();
$return = [
['value'=>$num1,'name'=>'80岁以上'],
['value'=>$num2,'name'=>'61-80岁'],
['value'=>$num3,'name'=>'36-60岁'],
['value'=>$num4,'name'=>'18-35岁'],
['value'=>$num5,'name'=>'0-17岁']
];
$this->apiSuccess('获取成功',$return);
}
//人群关爱(特困人员、高龄老人、低保人员、空巢老人、残疾人员、留守儿童)
public function get_people2($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];
}
// 特困人员
$num1 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('>', 80)->count();
//高龄老人
$num2 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('>', 80)->count();
//空巢老人
$num4 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('<=', 80)->whereAge('>', 60)->count();
//留守儿童
$num6 = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('<', 18)->count();
foreach ($where as $key =>$value){
$where[$key][0] = 'm.'.$value[0];
}
//低保人员
$num3 = Db::table('fa_szxc_information_usermsg')
->alias('m')
->where($where)
->join(['fa_szxc_information_insurance'=> 'i'],'m.user_id=i.user_id and i.insurance_type!=219')->count();
//残疾人员
$num5 = Db::table('fa_szxc_information_usermsg')
->alias('m')
->where($where)
->join(['fa_szxc_information_insurance' => 'i'],'m.user_id=i.user_id and i.whether_disabled!=112')->count();
$return = [
['value'=>$num1,'name'=>'特困人员'],
['value'=>$num2,'name'=>'高龄老人'],
['value'=>$num3,'name'=>'空巢老人'],
['value'=>$num4,'name'=>'留守儿童'],
['value'=>$num5,'name'=>'低保人员'],
['value'=>$num6,'name'=>'残疾人员']
];
$this->apiSuccess('获取成功',$return);
}
//事项办理(待办事项、延期待办、总计办理、办理结率)
public function get_num($area_id=0,$street_id=0,$village_id=0){
$where = [];
if ($area_id){
$where[] = ['county', '=', $area_id];
}
if ($street_id){
$where[] = ['township', '=', $street_id];
}
if ($village_id){
$where[] = ['village', '=', $village_id];
}
// 待办事项
$shuqiu = Db::table('fa_article')->where('is_solve', 0)->where($where)->where('category_id', 'in',[165,150,149,148,147])->whereTime('end_time','>', date('Y-m-d h:i:s'))->count();
// 延期待办
$time = Db::table('fa_article')->where('is_solve', 0)->where($where)->where('category_id', 'in',[165,150,149,148,147])->whereTime('end_time','<=', date('Y-m-d h:i:s'))->count();
// 总计办理
$is_solve = Db::table('fa_article')->where('is_solve', 1)->where($where)->count();
if($is_solve){
// 办理结率
$num4 = ($is_solve-$shuqiu-$time)/$is_solve;
}else{
$num4 = 0;
}
$num4 = round($num4*100,2).'%';
$return = [
['value'=>$shuqiu,'name'=>'待办事项'],
['value'=>$time,'name'=>'延期待办'],
['value'=>$is_solve,'name'=>'总计办理'],
['value'=>$num4,'name'=>'办理结率']
];
$this->apiSuccess('获取成功',$return);
}
//资产情况(总耕地面积、人均耕地面积、退林还耕面积、种植物种类、养殖物种类)
public function get_num2($area_id=0,$street_id=0,$village_id=0){
$where = $map = [];
if ($area_id){
$where[] = ['b.area_id', '=', $area_id];
$map[] = ['area_id', '=', $area_id];
}
if ($street_id){
$where[] = ['b.street_id', '=', $street_id];
$map[] = ['street_id', '=', $street_id];
}
if ($village_id){
$where[] = ['b.village_id', '=', $village_id];
$map[] = ['village_id', '=', $village_id];
}
// 总耕地面积
$num1 = Db::table('fa_szxc_information_planting')->alias('a')->join(['fa_szxc_information_usermsg' => 'b'],'a.user_id = b.user_id')->where($where)->sum('land_area');
//人均耕地面积
$all = Db::table('fa_szxc_information_usermsg')->where($map)->whereStatus('=', 1)->count();
if($all){
$num2 = $num1/$all;
}else{
$num2 = 0;
}
//退林还耕面积
$num3 = $num1*0.3;
//种植物种类
$num4 = Db::table('fa_szxc_information_planting')->alias('a')->join(['fa_szxc_information_usermsg' => 'b'],'a.user_id = b.user_id')->where($where)->column('crops_msg');
$a = 0;
foreach ($num4 as $k=>$v){
$v = json_decode($v,true);
$v = array_filter(array_column($v,'name'));
$v = array_filter($v);
$a = $a + count($v);
}
$num4 = $a;
//养殖物种类
$num5 = 12;
$return = [
['value'=>$num1,'name'=>'总耕地面积'],
['value'=>$num2,'name'=>'人均耕地面积'],
['value'=>$num3,'name'=>'退林还耕面积'],
['value'=>$num4,'name'=>'种植物种类'],
['value'=>$num5,'name'=>'养殖物种类']
];
$this->apiSuccess('获取成功',$return);
}
//消费数据(农资消费总计、食品消费总计、衣着消费总计、居住消费总计、生活用品及服务总计、交通通信总计、教育文化娱乐总计、医疗服务总计)
public function get_num3($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];
}
// 农资消费总计
$num1 = 3687;
// 食品消费总计
$num2 = 42222;
// 衣着消费总计
$num3 = 25841;
// 居住消费总计
$num4 = 84511;
// 生活用品及服务总计
$num5 = 4254;
// 交通通信总计
$num6 = 12631;
// 教育文化娱乐总计
$num7 = 8571;
//医疗服务总计
$num8 = 63541;
$return = [
['value'=>$num1,'name'=>'农资消费总计'],
['value'=>$num2,'name'=>'食品消费总计'],
['value'=>$num3,'name'=>'衣着消费总计'],
['value'=>$num4,'name'=>'居住消费总计'],
['value'=>$num5,'name'=>'生活用品及服务总计'],
['value'=>$num6,'name'=>'交通通信总计'],
['value'=>$num7,'name'=>'教育文化娱乐总计'],
['value'=>$num8,'name'=>'医疗服务总计']
];
$this->apiSuccess('获取成功',$return);
}
//收入构成(工资性收入、生产经营性收入、财产性收入、保险性收入)
public function get_num4($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];
}
// 工资性收入
$num1 = 12;
// 生产经营性收入
$num2 = 123;
// 财产性收入
$num3 = 124;
// 保险性收入
$num4 = 125;
$return = [
['value'=>$num1,'name'=>'工资性收入'],
['value'=>$num2,'name'=>'生产经营性收入'],
['value'=>$num3,'name'=>'财产性收入'],
['value'=>$num4,'name'=>'保险性收入']
];
$this->apiSuccess('获取成功',$return);
}
//土地性质(园地
//耕地
//林地
//牧草地
//养殖
//坑塘
//农田水利设施用地)
public function get_num5($area_id=0,$street_id=0,$village_id=0){
$where = [];
if ($area_id){
$where[] = ['u.area_id', '=', $area_id];
}
if ($street_id){
$where[] = ['u.street_id', '=', $street_id];
}
if ($village_id){
$where[] = ['u.village_id', '=', $village_id];
}
// 总面积
$num = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id')->sum('p.land_area');
//农田水利
$sum_218 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=218')->sum('p.land_area');
//坑塘
$sum_217 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=217')->sum('p.land_area');
//养殖
$sum_yz = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=216')->sum('p.land_area');
//牧草地
$sum_215 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=215')->sum('p.land_area');
//林地
$sum_214 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=214')->sum('p.land_area');
//耕地
$sum_70 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=70')->sum('p.land_area');
//园地
$sum_69 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id and p.nature_of_land=69')->sum('p.land_area');
$return = [
['value'=>$sum_70,'name'=>'耕地面积','land'=>$num],
['value'=>$sum_69,'name'=>'园地','land'=>$num],
['value'=>$sum_214,'name'=>'林地','land'=>$num],
['value'=>$sum_215,'name'=>'牧草地','land'=>$num],
['value'=>$sum_yz,'name'=>'养殖','land'=>$num],
['value'=>$sum_217,'name'=>'坑塘','land'=>$num],
['value'=>$sum_218,'name'=>'农田水利设施用地','land'=>$num]
];
$this->apiSuccess('获取成功',$return);
}
//文化程度(
//文盲及半文盲
//小学
//初中
//高中/技校/中专
//大学专科及以上
//不详)
public function get_num6($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];
}
// 文盲及半文盲
$num1 = Db::table('fa_szxc_information_usermsg')->where('education',71)->where($where)->count();
//小学
$num2 = Db::table('fa_szxc_information_usermsg')->where('education',72)->where($where)->count();
//初中
$num3 = Db::table('fa_szxc_information_usermsg')->where('education',73)->where($where)->count();
//高中/技校/中专
$num4 = Db::table('fa_szxc_information_usermsg')->where('education',74)->where($where)->count();
//大学专科及以上
$num5 = Db::table('fa_szxc_information_usermsg')->where('education',75)->where($where)->count();
//不详
$num6 = Db::table('fa_szxc_information_usermsg')->where('education',76)->where($where)->count();
$total = $num2 + $num3 + $num4 + $num5;
$bcdiv1 = bcmul(bcdiv($num2,$total,3),100,1);
$bcdiv2 = bcmul(bcdiv($num3,$total,3),100,1);
$bcdiv3 = bcmul(bcdiv($num4,$total,3),100,1);
$bcdiv4 = bcmul(bcdiv($num5,$total,3),100,1);
$return = [
// ['value'=>$num1,'name'=>'文盲及半文盲'],
['value'=>$num2,'name'=>'小学','bfb'=>$bcdiv1],
['value'=>$num3,'name'=>'初中','bfb'=>$bcdiv2],
['value'=>$num4,'name'=>'高中/技校/中专','bfb'=>$bcdiv3],
['value'=>$num5,'name'=>'大学专科及以上','bfb'=>$bcdiv4],
// ['value'=>$num6,'name'=>'不详'],
];
$this->apiSuccess('获取成功',$return);
}
//政治面貌(
//群众
//团员
//党员
//预备役)
public function get_num7($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];
}
// 群众
$num1 = Db::table('fa_szxc_information_usermsg')->where('political_outlook',2)->where($where)->count();
//团员
$num2 = Db::table('fa_szxc_information_usermsg')->where('political_outlook',3)->where($where)->count();
//党员
$num3 = Db::table('fa_szxc_information_usermsg')->where('political_outlook',4)->where($where)->count();
//预备役
$num4 = Db::table('fa_szxc_information_usermsg')->where('political_outlook',177)->where($where)->count();
$return = [
['value'=>$num1,'name'=>'群众'],
['value'=>$num2,'name'=>'团员'],
['value'=>$num3,'name'=>'党员'],
['value'=>$num4,'name'=>'预备役'],
];
$this->apiSuccess('获取成功',$return);
}
//优秀村民
public function get_num8($area_id=0,$street_id=0,$village_id=0,$page=1,$limit=10){
// $where[] = ['user_id','in','1,3,5'];
$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 = Db::table('fa_szxc_information_usermsg')
->field('name,age,address_name as address,gender')
->where($where)
->page($page,$limit)
->withAttr('gender', function ($value, $data) {
if($value == 1){
return '男';
}elseif($value == 2){
return '女';
}else{
return '暂无';
}
})
->select();
$this->apiSuccess('获取成功',$return);
}
//是否参保
public function get_num9($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 = [
['yi'=>346],
['wei'=>30],
['type' => [['value'=>30,'name'=>'未参保'],
['value'=>60,'name'=>'低保'],
['value'=>45,'name'=>'城乡居民基本医保'],
['value'=>77,'name'=>'新农合'],
['value'=>82,'name'=>'城镇居民医保'],
['value'=>62,'name'=>'职工医保'],
['value'=>20,'name'=>'其他']]
]
];
$this->apiSuccess('获取成功',$return);
}
//农业结构
public function get_num10($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 = [
['value'=>135,'name'=>'萝卜'],
['value'=>24,'name'=>'白菜'],
['value'=>87,'name'=>'芋头'],
['value'=>51,'name'=>'地瓜'],
['value'=>102,'name'=>'土豆'],
['value'=>24,'name'=>'山药'],
];
$this->apiSuccess('获取成功',$return);
}
//村名数量 男 女 已婚 未婚 技能培训次数 农业指导次数 政策指导次数 求职人数 土地总面积 荒地总面积 养殖面积 种植面积
public function get_num11()
{
// $return = "{villagernum1000,mannum:600,wumannum:400,married:600,unmarried:400,skillnum:20,policynum:20,agriculture:20,Jobnum:105,landsum:800,wasteland:100,breeding:200,planting500}";
$where = [];
$post = get_params();
if ($post) {
if (isset($post['area_id']) && !empty($post['area_id'])) {
$where['area_id'] = $map['area_id'] = $post['area_id'];
}
if (isset($post['street_id']) && !empty($post['street_id'])) {
$where['street_id'] = $map['street_id'] = $post['street_id'];
}
if (isset($post['village_id']) && !empty($post['village_id'])) {
$where['village_id'] = $map['village_id'] = $post['village_id'];
}
}
//土地总面积
$land_area_num = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id')->sum('p.land_area');
// 荒地面积
$waste_land_area = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id')->sum('p.waste_land_area');
//养殖面积
$sum_216 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_planting'=>'p'], 'u.user_id = p.user_id')->sum('p.breed_area');
//种植面积
$zz_mianji = $land_area_num - $sum_216 - $waste_land_area;
if($land_area_num >= 100000){
$land_area_num = bcdiv($land_area_num,10000).'万';
}
//总人数
$num1 = Db::table('fa_szxc_information_usermsg')->where($map)->where('status',1)->count();
//男
$num2 = Db::table('fa_szxc_information_usermsg')->where($map)->where('gender',1)->count();
//女
$num3 = Db::table('fa_szxc_information_usermsg')->where($map)->where('gender',2)->count();
$return = [
'villagernum' => $num1,
'mannum' => $num2,
'wumannum' => $num3,
'married' => 600,
'unmarried' => 400,
'skillnum' => 20,
'policynum' => 20,
'agriculture' => 20,
'Jobnum' => 105,
'landsum' => $land_area_num,
'wasteland' => $waste_land_area,
'breeding' => $sum_216,
'planting' => $zz_mianji < 0 ? 0:$zz_mianji
];
$this->apiSuccess('获取成功', $return);
}
//优秀工作人员
public function get_num12($area_id=0,$street_id=0,$village_id=0,$page=1,$limit=10){
$where[] = ['user_id','in','77,78,79'];
// $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 = Db::table('fa_szxc_information_usermsg')
->field('name,phone as telephone')
->where($where)
->page($page,$limit)
->select()->toArray();
foreach ($return as $k=>$v){
$return[$k]['pic'] = "https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230118/a32db5b98f8cf2aa8d1fa07dce0ca9a3.png";
}
$this->apiSuccess('获取成功',$return);
}
//职业
// 国家机关、党群组织、企业、事业单位负责人
// 专业技术人员
// 办事人员和有关人员
// 社会生产服务和生活服务人员
// 农、林、牧、渔业生产及辅助人员
// 生产、运输设备操作人员及有关人员
// 军人
// 不便分类的其他从业人员
public function get_num13($area_id=0,$street_id=0,$village_id=0){
$where = [];
if ($area_id){
$where[] = ['u.area_id', '=', $area_id];
}
if ($street_id){
$where[] = ['u.street_id', '=', $street_id];
}
if ($village_id){
$where[] = ['u.village_id', '=', $village_id];
}
// 国家机关、党群组织、企业、事业单位负责人
$num1 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=77')->count();
// 专业技术人员
$num2 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=78')->count();
// 办事人员和有关人员
$num3 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=79')->count();
// 社会生产服务和生活服务人员
$num4 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=80')->count();
// 农、林、牧、渔业生产及辅助人员
$num5 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=81')->count();
// 生产、运输设备操作人员及有关人员
$num6 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=82')->count();
// 军人
$num7 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=83')->count();
// 不便分类的其他从业人员
$num8 = Db::table('fa_szxc_information_useraddress')
->alias('u')
->where($where)
->join(['fa_szxc_information_usermsg'=>'p'], 'u.user_id = p.user_id and p.occupation=84')->count();
$return = [
['value'=>$num1,'name'=>'国家机关、党群组织、企业、事业单位负责人'],
['value'=>$num2,'name'=>'专业技术人员'],
['value'=>$num3,'name'=>'办事人员和有关人员'],
['value'=>$num4,'name'=>'社会生产服务和生活服务人员'],
['value'=>$num5,'name'=>'农、林、牧、渔业生产及辅助人员'],
['value'=>$num6,'name'=>'生产、运输设备操作人员及有关人员'],
['value'=>$num7,'name'=>'军人'],
['value'=>$num8,'name'=>'不便分类的其他从业人员']
];
$this->apiSuccess('获取成功',$return);
}
//农业产量
public function get_num14($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 = [
['value'=>1351,'name'=>'萝卜'],
['value'=>245,'name'=>'白菜'],
['value'=>874,'name'=>'芋头'],
['value'=>511,'name'=>'地瓜'],
['value'=>1024,'name'=>'土豆'],
['value'=>249,'name'=>'山药'],
];
$this->apiSuccess('获取成功',$return);
}
//农产品品牌
public function get_num15($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['msg'] = [['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'百合山药企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'通滩山药企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'百合土豆企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'云龙土豆企业'],
['value'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230112/e0ce290ac9ff41da33f00f6ae72d02f1.png','name'=>'奇峰山药企业']];
$return['total'] = '62';
$return['xl'] = ['43','1.68'];
$return['cgl'] = ['24','1.21'];
$this->apiSuccess('获取成功',$return);
}
//农产品市场行情
public function get_num16($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 = [
['month'=>'1月','minnum'=>'661','maxnum'=>'879'],
['month'=>'2月','minnum'=>'356','maxnum'=>'521'],
['month'=>'3月','minnum'=>'415','maxnum'=>'754'],
['month'=>'4月','minnum'=>'258','maxnum'=>'369'],
['month'=>'5月','minnum'=>'779','maxnum'=>'916'],
['month'=>'6月','minnum'=>'1465','maxnum'=>'1874'],
['month'=>'7月','minnum'=>'668','maxnum'=>'837'],
['month'=>'8月','minnum'=>'571','maxnum'=>'710'],
['month'=>'9月','minnum'=>'498','maxnum'=>'638'],
['month'=>'10月','minnum'=>'587','maxnum'=>'800'],
['month'=>'11月','minnum'=>'881','maxnum'=>'983'],
['month'=>'12月','minnum'=>'1008','maxnum'=>'1250'],
];
$this->apiSuccess('获取成功',$return);
}
//农产品需求量
public function get_num17($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 = [
['value'=>835,'name'=>'萝卜'],
['value'=>124,'name'=>'白菜'],
['value'=>187,'name'=>'芋头'],
['value'=>251,'name'=>'地瓜'],
['value'=>902,'name'=>'土豆'],
['value'=>214,'name'=>'山药'],
];
$this->apiSuccess('获取成功',$return);
}
//企业直播
public function get_num18($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];
// }
$list = Db::connect('shop')->table('eb_broadcast_room')->field('room_id,name,cover_img,share_img,start_time,end_time,anchor_name,anchor_wechat,phone,live_status')->where($where)->select();
$this->apiSuccess('获取成功',$list);
}
//商户列表
public function get_num19($area_id=0,$street_id=0,$village_id=0){
$where = [];
if ($area_id){
$where[] = ['b.area_id', '=', $area_id];
}
if ($street_id){
$where[] = ['b.street_id', '=', $street_id];
}
if ($village_id){
$where[] = ['b.village_id', '=', $village_id];
}
$list = Db::connect('shop')->table('eb_merchant')
->alias('a')
->join('eb_merchant_address b','a.mer_id = b.mer_id')
->field('mer_name,real_name,mer_phone,mer_address,mer_keyword,mer_avatar,sales,category_id')
->withAttr('category',function ($value,$data){
return Db::connect('shop')->table('eb_merchant_category')->where('merchant_category_id',$data['category_id'])->value('category_name');
})
->where($where)
->select();
// 先给假数据
// $list = [
// ['mer_name'=>'得德店铺','category'=>'番茄,白菜','sales'=>'211','real_name'=>'赵德'],
// ['mer_name'=>'梦瑜店铺','category'=>'土豆,山药','sales'=>'365','real_name'=>'钱凯'],
// ['mer_name'=>'庆磊店铺','category'=>'玉米,萝卜','sales'=>'687','real_name'=>'孙佳镇'],
// ['mer_name'=>'先敬店铺','category'=>'鸡,鸭','sales'=>'456','real_name'=>'李需任'],
// ['mer_name'=>'葵魁店铺','category'=>'鱼,虾','sales'=>'527','real_name'=>'周开江'],
// ['mer_name'=>'泰盛店铺','category'=>'红薯,地瓜','sales'=>'369','real_name'=>'武艺'],
// ['mer_name'=>'瑞科店铺','category'=>'猪,羊','sales'=>'875','real_name'=>'郑成'],
// ['mer_name'=>'通骏店铺','category'=>'牛,鹅','sales'=>'489','real_name'=>'王爱国'],
// ['mer_name'=>'荫应店铺','category'=>'大米,小麦','sales'=>'702','real_name'=>'冯安康'],
// ['mer_name'=>'享翔店铺','category'=>'萝卜,白菜','sales'=>'635','real_name'=>'陈辰'],
// ];
$this->apiSuccess('获取成功',$list);
}
//农产品销量前十
public function get_num20($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];
}
$map[] = ['a.status','=',1];
$map[] = ['a.is_del','=',0];
// 录入商户
$return['shanghu'] = Db::connect('shop')->table('eb_merchant')->alias('a')->join('eb_merchant_address b','a.mer_id = b.mer_id')->where($where)->where($map)->count();
// 总订单
$return['total_order'] = Db::connect('shop')->table('eb_product_order_log')->where('status',1)->count();
// 镇订单
// 先默认方山镇
$z_order = Db::connect('shop')->table('eb_product_order_log')->where($where)->where('status',1)->count();
// 镇分佣
$return['fenyong'] = 0;
//总市场流量
// $return['liuliang'] = bcmul(bcdiv($z_order,$return['total_order'],2),100);
$return['liuliang'] = 15;
$return['month'] = 12;
// 商品销量前十
$return['data'] = Db::connect('shop')->table('eb_store_product')
->alias('a')
->join('eb_product_order_log b','a.product_id = b.product_id')
->join('eb_store_order c','b.order_id = c.order_id')
->field('a.store_name as name,sum(c.total_num) as value')
->withAttr('total', function ($value, $data) {
$where = [];
return Db::connect('shop')->table('eb_store_product')
->alias('a')
->join('eb_product_order_log b','a.product_id = b.product_id')
->join('eb_store_order c','b.order_id = c.order_id')
->where($where)
->group('a.product_id')->sum('c.total_num');
})
->where($where)
->limit(10)
->group('a.product_id')
->order('value desc')
->select();
$this->apiSuccess('获取成功',$return);
}
//新农产品市场行情
public function get_num21($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 = [
[
'name'=>'萝卜',
'demand'=>7852,
'minnum'=>
[['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']],
'maxnum'=>
[['month'=>'1月','value'=>'879'],
['month'=>'2月','value'=>'521'],
['month'=>'3月','value'=>'754'],
['month'=>'4月','value'=>'369'],
['month'=>'5月','value'=>'916'],
['month'=>'6月','value'=>'1874'],
['month'=>'7月','value'=>'837'],
['month'=>'8月','value'=>'667'],
['month'=>'9月','value'=>'547'],
['month'=>'10月','value'=>'741'],
['month'=>'11月','value'=>'983'],
['month'=>'12月','value'=>'1150']],
],
[
'name'=>'白菜',
'demand'=>8869,
'minnum'=>
[['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']],
'maxnum'=>
[['month'=>'1月','value'=>'879'],
['month'=>'2月','value'=>'897'],
['month'=>'3月','value'=>'1053'],
['month'=>'4月','value'=>'354'],
['month'=>'5月','value'=>'535'],
['month'=>'6月','value'=>'774'],
['month'=>'7月','value'=>'337'],
['month'=>'8月','value'=>'410'],
['month'=>'9月','value'=>'468'],
['month'=>'10月','value'=>'600'],
['month'=>'11月','value'=>'883'],
['month'=>'12月','value'=>'1100']],
],
[
'name'=>'芋头',
'demand'=>2356,
'minnum'=>
[['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']],
'maxnum'=>
[['month'=>'1月','value'=>'879'],
['month'=>'2月','value'=>'511'],
['month'=>'3月','value'=>'754'],
['month'=>'4月','value'=>'469'],
['month'=>'5月','value'=>'916'],
['month'=>'6月','value'=>'1474'],
['month'=>'7月','value'=>'887'],
['month'=>'8月','value'=>'710'],
['month'=>'9月','value'=>'678'],
['month'=>'10月','value'=>'854'],
['month'=>'11月','value'=>'983'],
['month'=>'12月','value'=>'1005']],
],
[
'name'=>'地瓜',
'demand'=>3641,
'minnum'=>
[['month'=>'1月','value'=>'255'],
['month'=>'2月','value'=>'324'],
['month'=>'3月','value'=>'124'],
['month'=>'4月','value'=>'235'],
['month'=>'5月','value'=>'364'],
['month'=>'6月','value'=>'688'],
['month'=>'7月','value'=>'678'],
['month'=>'8月','value'=>'471'],
['month'=>'9月','value'=>'468'],
['month'=>'10月','value'=>'510'],
['month'=>'11月','value'=>'789'],
['month'=>'12月','value'=>'986']],
'maxnum'=>
[['month'=>'1月','value'=>'899'],
['month'=>'2月','value'=>'531'],
['month'=>'3月','value'=>'759'],
['month'=>'4月','value'=>'569'],
['month'=>'5月','value'=>'946'],
['month'=>'6月','value'=>'1474'],
['month'=>'7月','value'=>'737'],
['month'=>'8月','value'=>'610'],
['month'=>'9月','value'=>'538'],
['month'=>'10月','value'=>'700'],
['month'=>'11月','value'=>'911'],
['month'=>'12月','value'=>'1050']],
],
[
'name'=>'土豆',
'demand'=>5345,
'minnum'=>
[['month'=>'1月','value'=>'468'],
['month'=>'2月','value'=>'315'],
['month'=>'3月','value'=>'409'],
['month'=>'4月','value'=>'268'],
['month'=>'5月','value'=>'756'],
['month'=>'6月','value'=>'1126'],
['month'=>'7月','value'=>'641'],
['month'=>'8月','value'=>'552'],
['month'=>'9月','value'=>'483'],
['month'=>'10月','value'=>'568'],
['month'=>'11月','value'=>'821'],
['month'=>'12月','value'=>'896']],
'maxnum'=>
[['month'=>'1月','value'=>'879'],
['month'=>'2月','value'=>'551'],
['month'=>'3月','value'=>'756'],
['month'=>'4月','value'=>'389'],
['month'=>'5月','value'=>'946'],
['month'=>'6月','value'=>'1474'],
['month'=>'7月','value'=>'847'],
['month'=>'8月','value'=>'720'],
['month'=>'9月','value'=>'668'],
['month'=>'10月','value'=>'830'],
['month'=>'11月','value'=>'993'],
['month'=>'12月','value'=>'1260']],
],
[
'name'=>'山药',
'demand'=>6548,
'minnum'=>
[['month'=>'1月','value'=>'578'],
['month'=>'2月','value'=>'316'],
['month'=>'3月','value'=>'409'],
['month'=>'4月','value'=>'249'],
['month'=>'5月','value'=>'789'],
['month'=>'6月','value'=>'1420'],
['month'=>'7月','value'=>'647'],
['month'=>'8月','value'=>'561'],
['month'=>'9月','value'=>'478'],
['month'=>'10月','value'=>'513'],
['month'=>'11月','value'=>'841'],
['month'=>'12月','value'=>'889']],
'maxnum'=>
[['month'=>'1月','value'=>'889'],
['month'=>'2月','value'=>'531'],
['month'=>'3月','value'=>'774'],
['month'=>'4月','value'=>'569'],
['month'=>'5月','value'=>'910'],
['month'=>'6月','value'=>'1574'],
['month'=>'7月','value'=>'857'],
['month'=>'8月','value'=>'740'],
['month'=>'9月','value'=>'648'],
['month'=>'10月','value'=>'810'],
['month'=>'11月','value'=>'983'],
['month'=>'12月','value'=>'1241']],
],
];
$this->apiSuccess('获取成功',$return);
}
//养殖户数
public function get_num22($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 = [
['value'=>50,'name'=>'养鸡'],
['value'=>48,'name'=>'养鸭'],
['value'=>28,'name'=>'养鹅'],
['value'=>10,'name'=>'养羊'],
['value'=>8,'name'=>'养虾'],
['value'=>30,'name'=>'养鱼'],
];
$this->apiSuccess('获取成功',$return);
}
//养殖户销量分析
public function get_num23($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 = [
[
'name'=>'鸡',
'data'=>[1200,2000,1800,1560,1896,2100,1952,1635,1874,2011,1921,1932]
],
[
'name'=>'鸭',
'data'=> [1124,1567,1800,1304,1596,2020,2158,1678,1999,1206,1479,2214]
],
[
'name'=>'鹅',
'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){
$where[] = ['area_id', '=', $area_id];
}
if ($street_id){
$where[] = ['street_id', '=', $street_id];
}
if ($village_id){
$where[] = ['village_id', '=', $village_id];
}
$return = [
['name' => '鸡','value'=>40],
['name' => '鸭','value'=>50],
['name' => '鹅','value'=>10],
];
$this->apiSuccess('获取成功',$return);
}
//产业结构,锥形图
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'=>90,'img'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z5.png'],
['name' => '番茄','value'=>34,'img'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z1.png'],
['name' => '红薯','value'=>64,'img'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z2.png'],
['name' => '山药','value'=>15,'img'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z4.png'],
['name' => '白菜','value'=>78,'img'=>'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z3.png'],
];
$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);
}
//市场行情(小程序端)
public function get_num26($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 = [
['value'=>3.50,'name'=>'黄瓜'],
['value'=>1.60,'name'=>'白萝卜'],
['value'=>2.30,'name'=>'茄子'],
['value'=>3.50,'name'=>'西红柿'],
['value'=>4.50,'name'=>'长豆角'],
['value'=>2.10,'name'=>'土豆'],
['value'=>2.10,'name'=>'胡萝卜'],
];
$this->apiSuccess('获取成功',$return);
}
//新农产品市场行情
public function get_num27($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 = [
[
'name'=>'萝卜',
'demand'=>7852,
'minnum'=>
[['value'=>'661'],
['value'=>'356'],
['value'=>'415'],
['value'=>'258'],
['value'=>'779'],
['value'=>'1465'],
['value'=>'668'],
['value'=>'571'],
['value'=>'498'],
['value'=>'587'],
['value'=>'881'],
['value'=>'1008']],
'maxnum'=>
[['value'=>'879'],
['value'=>'521'],
['value'=>'754'],
['value'=>'369'],
['value'=>'916'],
['value'=>'1874'],
['value'=>'837'],
['value'=>'667'],
['value'=>'547'],
['value'=>'741'],
['value'=>'983'],
['value'=>'1150']],
],
];
$this->apiSuccess('获取成功',$return);
}
//获取图片
public function get_num28($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 = [
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_baicai.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_dadou.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_fanqie.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_gaoliang.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_hongshu.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_huluobo.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_qiezi.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_shanyao.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_tudou.png',
'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/s_xiaomai.png',
];
$this->apiSuccess('获取成功',$return);
}
//获取天气
public function get_weather($street_id=0){
// 获取天气
// 101271007 纳溪 510503
// 101271002 江阳区 510502
// 101271008 龙马潭区 510504
// 101271003 泸县 510521
// 101271004 合江 510522
// 101271006 古蔺 510525
// 101271005 叙永 510524
// 判断区域
$name = '101271002';
if ($street_id){
$name = $street_id;
}
$url = "https://devapi.qweather.com/v7/weather/now?key=b3e94fa75aae4551b6a5db150b409261&location=".$name;
$url1 = "https://devapi.qweather.com/v7/indices/1d?key=b3e94fa75aae4551b6a5db150b409261&type=0&location=".$name;
$is_cun = Cache::store('redis')->get($name);
$is_cun1 = Cache::store('redis')->get($name.'-1');
if($is_cun){
$data = json_decode($is_cun,1);
$data1 = json_decode($is_cun1,1);
$news['weather'] = $data;
$news['weather_indices'] = $data1;
}else{
$data = file_get_contents("compress.zlib://".$url);
$data1 = file_get_contents("compress.zlib://".$url1);
Cache::store('redis')->set($name,$data,1800);
Cache::store('redis')->set($name.'-1',$data1,1800);
$data = json_decode($data,1);
$data1 = json_decode($data1,1);
$news['weather'] = $data;
$news['weather_indices'] = $data1;
}
$this->apiSuccess('获取成功', $news);
}
}