|
|
|
@ -141,7 +141,7 @@ class OtherController extends CommonController
|
|
|
|
// 重点上市公司
|
|
|
|
// 重点上市公司
|
|
|
|
$list['cover_stock_total'] = CourseSign::shangshi();
|
|
|
|
$list['cover_stock_total'] = CourseSign::shangshi();
|
|
|
|
// 本月课程
|
|
|
|
// 本月课程
|
|
|
|
$monthCourses = Calendar::with('course.teacher')->where('type', 1)
|
|
|
|
$monthCourses = Calendar::with('course.teacher')
|
|
|
|
->where('date', 'like', '%' . date('Y-m') . '%')
|
|
|
|
->where('date', 'like', '%' . date('Y-m') . '%')
|
|
|
|
->get();
|
|
|
|
->get();
|
|
|
|
// 课程统计
|
|
|
|
// 课程统计
|
|
|
|
@ -591,6 +591,7 @@ class OtherController extends CommonController
|
|
|
|
'mobile' => $user->mobile ?? '',
|
|
|
|
'mobile' => $user->mobile ?? '',
|
|
|
|
'company_name' => $user->company_name ?? '',
|
|
|
|
'company_name' => $user->company_name ?? '',
|
|
|
|
'company_position' => $user->company_position ?? '',
|
|
|
|
'company_position' => $user->company_position ?? '',
|
|
|
|
|
|
|
|
'from' => $user->from ?? '',
|
|
|
|
];
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fields = [
|
|
|
|
$fields = [
|
|
|
|
@ -599,6 +600,7 @@ class OtherController extends CommonController
|
|
|
|
'mobile' => '手机号',
|
|
|
|
'mobile' => '手机号',
|
|
|
|
'company_name' => '企业名称',
|
|
|
|
'company_name' => '企业名称',
|
|
|
|
'company_position' => '职位',
|
|
|
|
'company_position' => '职位',
|
|
|
|
|
|
|
|
'from' => '标签',
|
|
|
|
];
|
|
|
|
];
|
|
|
|
$filename = '跟班学员明细';
|
|
|
|
$filename = '跟班学员明细';
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
|