|
@@ -2425,7 +2425,7 @@ class RecruitController extends Controller
|
|
|
$sheet->setCellValueByColumnAndRow(2, $k+2, $v->sex == 0 ? '女' : '男');
|
|
|
$time = explode('-',$v->birthday);
|
|
|
$sheet->setCellValueByColumnAndRow(3, $k+2, 2021-$time[0]);
|
|
|
- $sheet->setCellValueByColumnAndRow(4, $k+2, $v->mobile);
|
|
|
+ $sheet->setCellValueExplicitByColumnAndRow(4, $k+2, $v->mobile, DataType::TYPE_STRING);
|
|
|
$sheet->setCellValueExplicitByColumnAndRow(5, $k+2, $v->card, DataType::TYPE_STRING);
|
|
|
$sheet->setCellValueByColumnAndRow(6, $k+2, $post_data[$v->post_id]);
|
|
|
|