|
...
|
...
|
@@ -37,9 +37,9 @@ class ProjectGscController extends BaseController |
|
|
|
*/
|
|
|
|
public function domainLists(GscLogic $gscLogic){
|
|
|
|
$this->request->validate([
|
|
|
|
'gsc_id'=>'required'
|
|
|
|
'id'=>'required'
|
|
|
|
],[
|
|
|
|
'gsc_id.required' => 'GSC账号ID不能为空'
|
|
|
|
'id.required' => 'GSC账号ID不能为空'
|
|
|
|
]);
|
|
|
|
$lists = $gscLogic->DomainLists($this->map,$this->page,$this->row,$this->order);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
...
|
...
|
|