Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
chenbo 2023-10-18 10:43:07 +08:00
commit aa0e5c9ae6

View File

@ -158,7 +158,11 @@ class VehicleContractController extends BaseAdminController
$notify_url = '';
if($contract['type'] == 0){
$smsTitle = '《租赁合同》';
$notify_url = env('project.website_domain').'/api/index/townCarRent';
if(empty($contract['contract_logistic_id'])){
$notify_url = env('project.website_domain').'/api/index/systemCarRent';
}else{
$notify_url = env('project.website_domain').'/api/index/townCarRent';
}
}elseif($contract['type'] == 1){
$smsTitle = '《自有车辆上传合同》';
$notify_url = env('project.website_domain').'/api/index/selfCarRent';