|
...
|
...
|
@@ -12,6 +12,7 @@ namespace App\Http\Controllers\Bside\GoogleKeywordInsight; |
|
|
|
use App\Enums\Common\Code;
|
|
|
|
use App\Http\Controllers\Bside\BaseController;
|
|
|
|
use App\Http\Logic\Bside\GoogleKeywordInsight\GoogleKeywordInsightLogic;
|
|
|
|
use App\Models\GoogleKeywordInsight\GoogleKeywordInsightDetail;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :谷歌洞察数据
|
|
...
|
...
|
@@ -35,7 +36,9 @@ class GoogleKeywordInsightController extends BaseController |
|
|
|
],[
|
|
|
|
'keyword.required' => '关键词不能为空',
|
|
|
|
]);
|
|
|
|
$data = $logic->getGoogleInsight();
|
|
|
|
$logic->getGoogleInsight();
|
|
|
|
$detailModel = new GoogleKeywordInsightDetail();
|
|
|
|
$data = $detailModel->lists(['search'=>$this->param['keyword']],$this->page,$this->row);
|
|
|
|
$this->response('success',Code::SUCCESS,$data);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|