|
...
|
...
|
@@ -4,8 +4,9 @@ namespace App\Http\Logic\Aside\Projects; |
|
|
|
|
|
|
|
use App\Http\Logic\Aside\BaseLogic;
|
|
|
|
use App\Models\Inquiry\InquiryCount;
|
|
|
|
use App\Models\Inquiry\InquiryInfo;
|
|
|
|
use App\Models\Inquiry\InquiryIP;
|
|
|
|
use App\Models\Projects\InquiryInfo;
|
|
|
|
use App\Models\Project\Keywords;
|
|
|
|
use App\Models\Projects\InquiryUser;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
...
|
...
|
@@ -230,4 +231,18 @@ class InquiryInfoLogic extends BaseLogic |
|
|
|
$data = $lists['list'];
|
|
|
|
return $this->success($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :根据关键字获取域名
|
|
|
|
* @name :getKeywordUrl
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/7/17 9:09
|
|
|
|
*/
|
|
|
|
public function getKeywordUrl($map){
|
|
|
|
$keywordModel = new Keywords();
|
|
|
|
$map['type'] = 1;//关键字关联域名
|
|
|
|
$list = $keywordModel->list($map);
|
|
|
|
return $this->success($list);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|