|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
|
|
use App\Helpers\ResponseCode;
|
|
|
|
|
use App\Models\Admin;
|
|
|
|
|
use App\Models\Appointment;
|
|
|
|
|
use App\Models\AppointmentConfig;
|
|
|
|
|
use App\Models\CarparkLog;
|
|
|
|
|
use App\Models\Company;
|
|
|
|
|
use App\Models\CourseSign;
|
|
|
|
|
use App\Models\CourseType;
|
|
|
|
|
use App\Models\CustomFormField;
|
|
|
|
|
use App\Models\Department;
|
|
|
|
|
use App\Models\ParameterDetail;
|
|
|
|
|
use App\Models\User;
|
|
|
|
|
use App\Repositories\DoorRepository;
|
|
|
|
|
use App\Repositories\EntranceRepository;
|
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
|
use App\Models\Course;
|
|
|
|
|
use EasyWeChat\Factory;
|
|
|
|
|
use Illuminate\Filesystem\Filesystem;
|
|
|
|
|
|
|
|
|
|
class OtherController extends CommonController
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @OA\Get(
|
|
|
|
|
* path="/api/admin/other/home",
|
|
|
|
|
* tags={"其他"},
|
|
|
|
|
* summary="驾驶舱",
|
|
|
|
|
* description="",
|
|
|
|
|
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
|
|
|
|
* @OA\Response(
|
|
|
|
|
* response="200",
|
|
|
|
|
* description="暂无"
|
|
|
|
|
* )
|
|
|
|
|
* )
|
|
|
|
|
*/
|
|
|
|
|
public function home()
|
|
|
|
|
{
|
|
|
|
|
// 校友总数
|
|
|
|
|
$schoolmate['schoolmate_total'] = User::where('is_schoolmate', 1)->count();
|
|
|
|
|
// 2025年校友数
|
|
|
|
|
$schoolmate['schoolmate_year'] = User::where('is_schoolmate', 1)->where('created_at', 'like', '%' . date('Y') . '%')->count();
|
|
|
|
|
// 上市企业总市值
|
|
|
|
|
$company['company_market'] = Company::where('company_market', 1)->sum('market_value');
|
|
|
|
|
// 校友企业总融资额
|
|
|
|
|
$company['company_fund'] = Company::where('is_schoolmate', 1)->sum('company_fund');
|
|
|
|
|
// 校友企业总估值
|
|
|
|
|
$company['valuation'] = Company::where('is_schoolmate', 1)->sum('valuation');
|
|
|
|
|
// 校友企业所属领域
|
|
|
|
|
$industryTotal = [];
|
|
|
|
|
$industries = ParameterDetail::where('parameter_id', 4)->get();
|
|
|
|
|
foreach ($industries as $item) {
|
|
|
|
|
$level2Names = ParameterDetail::where('parameter_id', 10)->where('remark', $item->value)->pluck('value');
|
|
|
|
|
$industryTotal[] = [
|
|
|
|
|
'industry' => $item->value,
|
|
|
|
|
'total' => User::whereIn('company_industry', $level2Names)->count()
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
// 课程统计
|
|
|
|
|
$courseTypes = CourseType::where('is_chart', 1)->get();
|
|
|
|
|
foreach ($courseTypes as $courseType) {
|
|
|
|
|
$courseIds = Course::where('type', $courseType->id)->pluck('id');
|
|
|
|
|
$courseType->course_signs_total = CourseSign::whereIn('course_id', $courseIds)
|
|
|
|
|
->where('status', 1)
|
|
|
|
|
->count();
|
|
|
|
|
}
|
|
|
|
|
// 苏州区域数据
|
|
|
|
|
$suzhou = Company::where('company_city', '苏州市')
|
|
|
|
|
// 根据company_area分组查询公司数量
|
|
|
|
|
->select('company_area', DB::raw('count(*) as company_total'))
|
|
|
|
|
->groupBy('company_area')
|
|
|
|
|
->get();
|
|
|
|
|
// 全国数据
|
|
|
|
|
$country = Company::select('company_city', DB::raw('count(*) as company_total'))
|
|
|
|
|
->groupBy('company_city')
|
|
|
|
|
->get();
|
|
|
|
|
return $this->success(compact('courseTypes', 'schoolmate', 'company', 'industryTotal', 'suzhou', 'country'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @OA\Post(
|
|
|
|
|
* path="/api/admin/other/admin-user-list",
|
|
|
|
|
* tags={"其他"},
|
|
|
|
|
* summary="后台用户列表",
|
|
|
|
|
* description="",
|
|
|
|
|
* @OA\Parameter(name="page_size", in="query", @OA\Schema(type="string"), required=false, description="每页显示的条数"),
|
|
|
|
|
* @OA\Parameter(name="page", in="query", @OA\Schema(type="string"), required=false, description="页码"),
|
|
|
|
|
* @OA\Parameter(name="sort_name", in="query", @OA\Schema(type="string"), required=false, description="排序字段名字"),
|
|
|
|
|
* @OA\Parameter(name="sort_type", in="query", @OA\Schema(type="string"), required=false, description="排序类型"),
|
|
|
|
|
* @OA\Parameter(name="department_id", in="query", @OA\Schema(type="int"), required=false, description="部门id"),
|
|
|
|
|
* @OA\Parameter(name="keyword", in="query", @OA\Schema(type="string"), required=false, description="关键词"),
|
|
|
|
|
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
|
|
|
|
* @OA\Response(
|
|
|
|
|
* response="200",
|
|
|
|
|
* description="暂无"
|
|
|
|
|
* )
|
|
|
|
|
* )
|
|
|
|
|
*/
|
|
|
|
|
public function adminUserList()
|
|
|
|
|
{
|
|
|
|
|
$all = \request()->all();
|
|
|
|
|
$list = Admin::where(function ($query) use ($all) {
|
|
|
|
|
if (isset($all['department_id'])) {
|
|
|
|
|
$query->where('department_id', $all['department_id']);
|
|
|
|
|
}
|
|
|
|
|
if (isset($all['keyword'])) {
|
|
|
|
|
$query->where('name', 'like', '%' . $all['keyword'] . '%')->orWhere('username', 'like', '%' . $all['keyword'] . '%')->orWhere('mobile', 'like', '%' . $all['keyword'] . '%');
|
|
|
|
|
}
|
|
|
|
|
})->orderBy($all['sort_name'] ?? 'id', $all['sort_type'] ?? 'desc')
|
|
|
|
|
->paginate($all['page_size'] ?? 20);
|
|
|
|
|
return $this->success($list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @OA\Post(
|
|
|
|
|
* path="/api/admin/other/admin-department-list",
|
|
|
|
|
* tags={"其他"},
|
|
|
|
|
* summary="后台部门列表",
|
|
|
|
|
* description="",
|
|
|
|
|
* @OA\Parameter(name="page_size", in="query", @OA\Schema(type="string"), required=false, description="每页显示的条数"),
|
|
|
|
|
* @OA\Parameter(name="page", in="query", @OA\Schema(type="string"), required=false, description="页码。不传则全部,传入则分页"),
|
|
|
|
|
* @OA\Parameter(name="sort_name", in="query", @OA\Schema(type="string"), required=false, description="排序字段名字"),
|
|
|
|
|
* @OA\Parameter(name="sort_type", in="query", @OA\Schema(type="string"), required=false, description="排序类型"),
|
|
|
|
|
* @OA\Parameter(name="keyword", in="query", @OA\Schema(type="string"), required=false, description="关键词"),
|
|
|
|
|
* @OA\Parameter(name="show_tree", in="query", @OA\Schema(type="string"), required=false, description="是否显示树形结构 0否1是"),
|
|
|
|
|
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
|
|
|
|
* @OA\Response(
|
|
|
|
|
* response="200",
|
|
|
|
|
* description="暂无"
|
|
|
|
|
* )
|
|
|
|
|
* )
|
|
|
|
|
*/
|
|
|
|
|
public function adminDepartmentList()
|
|
|
|
|
{
|
|
|
|
|
$all = \request()->all();
|
|
|
|
|
$list = Department::with('users')->where(function ($query) use ($all) {
|
|
|
|
|
if (isset($all['keyword'])) {
|
|
|
|
|
$query->where('name', 'like', '%' . $all['keyword'] . '%');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if (isset($all['show_tree']) && $all['show_tree']) {
|
|
|
|
|
// 显示树形结构
|
|
|
|
|
$list = array2tree($list->orderBy($all['sort_name'] ?? 'id', $all['sort_type'] ?? 'desc')->get()->toArray());
|
|
|
|
|
} else {
|
|
|
|
|
$list = $list->orderBy($all['sort_name'] ?? 'id', $all['sort_type'] ?? 'desc')->paginate($all['page_size'] ?? 20);
|
|
|
|
|
}
|
|
|
|
|
return $this->success($list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @OA\Get(
|
|
|
|
|
* path="/api/admin/other/table-fileds",
|
|
|
|
|
* tags={"其他"},
|
|
|
|
|
* summary="获取表字段",
|
|
|
|
|
* description="",
|
|
|
|
|
* @OA\Parameter(name="table_name", in="query", @OA\Schema(type="string"), required=true, description="table_name"),
|
|
|
|
|
* @OA\Parameter(name="except", in="query", @OA\Schema(type="string"), required=true, description="排除的字段数组"),
|
|
|
|
|
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
|
|
|
|
|
* @OA\Response(
|
|
|
|
|
* response="200",
|
|
|
|
|
* description="暂无"
|
|
|
|
|
* )
|
|
|
|
|
* )
|
|
|
|
|
*/
|
|
|
|
|
public function tableFileds()
|
|
|
|
|
{
|
|
|
|
|
$all = \request()->all();
|
|
|
|
|
$messages = [
|
|
|
|
|
'table_name.required' => '表名必填',
|
|
|
|
|
];
|
|
|
|
|
$validator = Validator::make($all, [
|
|
|
|
|
'table_name' => 'required'
|
|
|
|
|
], $messages);
|
|
|
|
|
if ($validator->fails()) {
|
|
|
|
|
return $this->fail([ResponseCode::ERROR_PARAMETER, implode(',', $validator->errors()->all())]);
|
|
|
|
|
}
|
|
|
|
|
$except = request('except');
|
|
|
|
|
$detail = (new CustomFormField())->getRowTableFieldsByComment($all['table_name']);
|
|
|
|
|
$list = [];
|
|
|
|
|
if ($except) {
|
|
|
|
|
foreach ($detail as $key => $item) {
|
|
|
|
|
if (in_array($key, $except)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
$list[] = $item;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$list = $detail;
|
|
|
|
|
}
|
|
|
|
|
return $this->success($list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function test()
|
|
|
|
|
{
|
|
|
|
|
$door = new DoorRepository();
|
|
|
|
|
$result = $door->getAllDoorInfo();
|
|
|
|
|
dd($result);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 车辆进出场日志
|
|
|
|
|
*/
|
|
|
|
|
public function postCarInInfo()
|
|
|
|
|
{
|
|
|
|
|
$all = request()->all();
|
|
|
|
|
CarparkLog::add(1, $all, $all['plateNo']);
|
|
|
|
|
return $this->success($all);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 车辆出场日志
|
|
|
|
|
*/
|
|
|
|
|
public function postCarOutInfo()
|
|
|
|
|
{
|
|
|
|
|
$all = request()->all();
|
|
|
|
|
CarparkLog::add(2, $all, $all['plateNo']);
|
|
|
|
|
return $this->success($all);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|