246 lines
9.7 KiB
PHP
246 lines
9.7 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 勾股工作室
|
|
* @license https://opensource.org/licenses/Apache-2.0
|
|
* @link https://www.gougucms.com
|
|
*/
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\admin\BaseController;
|
|
use think\facade\Db;
|
|
use think\facade\View;
|
|
use app\admin\model\ShopUser;
|
|
use app\admin\model\InformationUserMsg;
|
|
use app\admin\model\InformationUserAddress;
|
|
use app\admin\model\GeoStreet;
|
|
|
|
class Index extends BaseController
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->adminInfo = get_login_admin();
|
|
}
|
|
public function index()
|
|
{
|
|
$admin = get_login_admin();
|
|
if (get_cache('menu' . $admin['id'])) {
|
|
$list = get_cache('menu' . $admin['id']);
|
|
} else {
|
|
$adminGroup = Db::name('AdminGroupAccess')->where(['uid' => get_login_admin('id')])->column('group_id');
|
|
$adminMenu = Db::name('AdminGroup')->where('id', 'in', $adminGroup)->column('rules');
|
|
$adminMenus = [];
|
|
foreach ($adminMenu as $k => $v) {
|
|
$v = explode(',', $v);
|
|
$adminMenus = array_merge($adminMenus, $v);
|
|
}
|
|
$menu = Db::name('AdminRule')->where(['menu' => 1,'status'=>1])->where('id', 'in', $adminMenus)->order('sort asc')->select()->toArray();
|
|
$list = list_to_tree($menu);
|
|
\think\facade\Cache::tag('adminMenu')->set('menu' . $admin['id'], $list);
|
|
}
|
|
$theme = Db::name('Admin')->where('id',$admin['id'])->value('theme');
|
|
View::assign('theme',$theme);
|
|
View::assign('menu', $list);
|
|
return View();
|
|
}
|
|
|
|
public function main()
|
|
{
|
|
// 镇街表id
|
|
$street_id = InformationUserAddress::where('admin_id',$this->adminInfo['id'])->value('street_id');
|
|
// 街道名称
|
|
$street_name = GeoStreet::where('street_code', $street_id)->value('street_name');
|
|
|
|
// 大屏相关
|
|
if ($this->adminInfo['group_access'] == 4){
|
|
|
|
$urls="http://zhen.lihaink.cn/#/?street_id=$street_id"."&street_name=".$street_name;
|
|
View::assign('urls',$urls);
|
|
return View('main3');
|
|
|
|
}elseif($this->adminInfo['group_access'] == 5){
|
|
|
|
$day_price=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id)
|
|
->where('status',1)
|
|
->whereDay('create_time')
|
|
->sum('product_price');
|
|
|
|
$day_order=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id)
|
|
->where('status',1)
|
|
->whereDay('create_time')
|
|
->count();
|
|
|
|
$Month_price=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id)
|
|
->where('status',1)
|
|
->whereMonth('create_time')
|
|
->sum('product_price');
|
|
|
|
$Month_order=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id)
|
|
->where('status',1)
|
|
->whereMonth('create_time')
|
|
->count();
|
|
|
|
$urls="http://zhenqiye.lihaink.cn/#/?street_id=$street_id"."&street_name=".$street_name;
|
|
View::assign('urls',$urls);
|
|
View::assign('day_order',$day_order);
|
|
View::assign('day_price',$day_price);
|
|
View::assign('month_price',$Month_price);
|
|
View::assign('month_order',$Month_order);
|
|
return View('main2');
|
|
}
|
|
|
|
// 如果登录ID不是超管的话
|
|
if ($this->adminInfo['id'] != 1){
|
|
|
|
// 获取当当前登录用户绑定地址
|
|
$find = InformationUserAddress::where('user_id', $this->adminInfo['user_id'])->find();
|
|
|
|
if($find)
|
|
{
|
|
// 所属市镇区县村级别
|
|
if ($find['auth_range'] == 1){
|
|
$where[] = ['village_id', '=', $find['village_id']];
|
|
}elseif ($find['auth_range']==2){
|
|
$where[] = ['street_id', '=', $find['street_id']];
|
|
}elseif ($find['auth_range']==3){
|
|
$where[] = ['area_id', '=', $find['area_id']];
|
|
}elseif ($find['auth_range']==5){
|
|
$where[] = ['brigade_id', '=', $find['brigade_id']];
|
|
}
|
|
}
|
|
|
|
}else{
|
|
$where=[];
|
|
}
|
|
|
|
// 获取**数量
|
|
$num = InformationUserMsg::where($where)->count();
|
|
|
|
// 大于60岁人数
|
|
$old_num = InformationUserMsg::where($where)->whereAge('>=', 60)->count();
|
|
|
|
// 儿童人数
|
|
$children_num = InformationUserMsg::where($where)->whereAge('<', 15)->count();
|
|
// 未婚男
|
|
$unmarried_man_num = InformationUserMsg::where($where)->where($where)->where([['gender', '=', 1], ['marital_status', '=', 169]])->count();
|
|
// 未婚女
|
|
$unmarried_woman_num = InformationUserMsg::where($where)->where($where)->where([['gender', '=', 2], ['marital_status', '=', 169]])->count();
|
|
// 少数民族
|
|
$nation_s_num = InformationUserMsg::where($where)->where($where)->whereBetween('nation', [13, 68])->count();
|
|
// 汉族
|
|
$nation_h_num = InformationUserMsg::where($where)->where($where)->where('nation', 12)->count();
|
|
|
|
// foreach ($where as $key =>$value){
|
|
// $where[$key][0] = 'm.'.$value[0];
|
|
// }
|
|
|
|
// 残疾人数
|
|
$whether_disabled_num = 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();
|
|
|
|
// 参保人数
|
|
$insurance_type_num = 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();
|
|
|
|
$work_num = InformationUsermsg::with('user')->count();
|
|
|
|
if ($this->adminInfo['id'] != 1){
|
|
|
|
// 工作人员数
|
|
$work_num = InformationUsermsg::with('user')->where($where)->count();
|
|
|
|
// $work_num = Db::table('fa_szxc_information_usermsg')
|
|
// ->alias('m')
|
|
// ->join(['shop.eb_user'=>'u'],'m.user_id=u.id and u.group_id = 3')
|
|
// ->count();
|
|
|
|
}else{
|
|
$work_num = ShopUser::where('group_id', 3)->count();
|
|
}
|
|
|
|
//土地
|
|
$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');
|
|
$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_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');
|
|
$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');
|
|
// 荒地面积
|
|
$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');
|
|
|
|
View::assign(
|
|
[
|
|
'totaluser' => $num,//User::where($whe)->count(),// 总用户数
|
|
'old_num' => $old_num,
|
|
'children_num' => $children_num,
|
|
'unmarried_man_num' => $unmarried_man_num,
|
|
'unmarried_woman_num' => $unmarried_woman_num,
|
|
'whether_disabled_num' => $whether_disabled_num,
|
|
'insurance_type_num' => $insurance_type_num,
|
|
'nation_s_num' => $nation_s_num,
|
|
'nation_h_num' => $nation_h_num,
|
|
'work_num' => $work_num,
|
|
'land_area_num' => $land_area_num,
|
|
'waste_land_area' => $waste_land_area,
|
|
'sum_218' => $sum_218,
|
|
'sum_217' => $sum_217,
|
|
'sum_216' => $sum_216,
|
|
'sum_215' => $sum_215,
|
|
'sum_214' => $sum_214,
|
|
'sum_70' => $sum_70,
|
|
'sum_69' => $sum_69,
|
|
]
|
|
);
|
|
return View();
|
|
}
|
|
|
|
//设置theme
|
|
public function set_theme()
|
|
{
|
|
if (request()->isAjax()) {
|
|
$param = get_params();
|
|
$admin = get_login_admin();
|
|
Db::name('Admin')->where('id',$admin['id'])->update(['theme'=>$param['theme']]);
|
|
return to_assign();
|
|
}
|
|
else{
|
|
return to_assign(1,'操作错误');
|
|
}
|
|
}
|
|
}
|