|
...
|
...
|
@@ -103,7 +103,7 @@ class InquiryForwardLogic extends BaseLogic |
|
|
|
$start_at = $now;
|
|
|
|
}
|
|
|
|
|
|
|
|
InquiryRelayDetail::createInquiry($info['id'], $website, $info['country'], $this->param['ip'], $this->param['name'], $this->param['email'], $this->param['phone'], $this->param['message'], $is_v6, $start_at);
|
|
|
|
InquiryRelayDetail::createInquiry($info['id'], $website, $info['country'], $this->param['ip'], $this->param['name'], $this->param['email'], $this->param['phone'], $this->param['message'], $is_v6, [$url], $start_at);
|
|
|
|
|
|
|
|
$num += 1;
|
|
|
|
}
|
|
...
|
...
|
@@ -185,9 +185,7 @@ class InquiryForwardLogic extends BaseLogic |
|
|
|
$route = '';
|
|
|
|
foreach ($re_route as $vr) {
|
|
|
|
if ($vr['project_id'] == $vp->id) {
|
|
|
|
if (substr($vr['route'], -5) != '.html') {
|
|
|
|
$vr['route'] = $vr['route'] . '/';
|
|
|
|
}
|
|
|
|
//TODO:路由是否以 / 结尾
|
|
|
|
$route = $vr['route'];
|
|
|
|
break;
|
|
|
|
}
|
...
|
...
|
|