update:1.编辑公司时,加上更新主联系人身份证的逻辑。2.用户做完人脸识别后跳转到供销系统mobile首页
This commit is contained in:
parent
5bb2db740a
commit
f426d39c1d
@ -383,13 +383,4 @@ class IndexController extends BaseApiController
|
||||
|
||||
return json(['success' => false, 'msg' => '失败,没有参数']);
|
||||
}
|
||||
|
||||
/**
|
||||
* 企业人脸校验上传回调
|
||||
*/
|
||||
public function notifyOrganizationFaceCreate()
|
||||
{
|
||||
$parmas = Request()->param();
|
||||
Log::debug('认证回调:'.$parmas);
|
||||
}
|
||||
}
|
||||
|
@ -168,7 +168,7 @@ class JunziqianController extends BaseApiController
|
||||
$request-> facePerType = 1; // 1代理人
|
||||
$request-> faceAgantIdenName = $data['master_name'];
|
||||
$request-> faceAgantIdenCard = $data['master_id_card'];
|
||||
$request-> backUrl = env('url.url_prefix').'/notifyOrganizationFaceCreate?id='.$data['id'];
|
||||
$request-> backUrl = env('url.url_prefix').'/mobile'; // 做完人脸识别后,指定跳转到供销系统mobile首页
|
||||
$response = $requestUtils->doPost("/v2/user/organizationFaceCreate",$request);
|
||||
return $response;
|
||||
}
|
||||
|
@ -157,6 +157,7 @@ class CompanyLogic extends BaseLogic
|
||||
'address' => $params['address'],
|
||||
'company_type' => $params['company_type'],
|
||||
'master_name' => $params['master_name'],
|
||||
'master_id_card' => $params['id_card'], // 主联系人证件号
|
||||
'master_position' => $params['master_position'],
|
||||
'master_phone' => $params['master_phone'],
|
||||
'master_email' => $params['master_email'],
|
||||
|
@ -36,5 +36,4 @@ Route::rule('crontab', function () {
|
||||
|
||||
Route::post('/notify_url', IndexController::class . '@notifyUrl');
|
||||
Route::post('/notifyAuthentication',IndexController::class . '@notifyAuthentication');
|
||||
Route::post('/notifyOrganizationFaceCreate',IndexController::class . '@notifyOrganizationFaceCreate'); // 企业人脸上传校验回调接口
|
||||
Route::get('/api/junziqian/download_file',JunziqianController::class . '@download_file');
|
Loading…
x
Reference in New Issue
Block a user