|
...
|
...
|
@@ -7,6 +7,7 @@ use App\Models\GoogleSeoIps\InquiryUser; |
|
|
|
use App\Models\Inquiry\InquiryCount;
|
|
|
|
use App\Models\Inquiry\InquiryInfo;
|
|
|
|
use App\Models\Inquiry\InquiryIP;
|
|
|
|
use App\Models\Inquiry\InquiryType;
|
|
|
|
use App\Models\Project\Keywords;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
...
|
...
|
@@ -24,11 +25,6 @@ class InquiryInfoLogic extends BaseLogic |
|
|
|
parent::__construct();
|
|
|
|
$this->param = $this->requestAll;
|
|
|
|
$this->model = new InquiryInfo();
|
|
|
|
//TODO::测试数据
|
|
|
|
$this->manager = [
|
|
|
|
'id'=>1,
|
|
|
|
'name'=>'cs'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
...
|
...
|
@@ -255,4 +251,18 @@ class InquiryInfoLogic extends BaseLogic |
|
|
|
}
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :获取类型
|
|
|
|
* @name :getType
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/8/1 9:16
|
|
|
|
*/
|
|
|
|
public function getType(){
|
|
|
|
$typeModel = new InquiryType();
|
|
|
|
$list = $typeModel->list(['status'=>0]);
|
|
|
|
return $this->success($list);
|
|
|
|
}
|
|
|
|
|
|
|
|
} |
...
|
...
|
|