|
...
|
...
|
@@ -29,11 +29,32 @@ class DomainApplicantLogLogic extends BaseLogic |
|
|
|
* @time :2025/5/29 14:34
|
|
|
|
*/
|
|
|
|
public function lists($map,$page,$row){
|
|
|
|
if(isset($map['domain']) && !empty($map['domain'])){
|
|
|
|
$map['domain'] = ['like','%'.$map['domain'].'%'];
|
|
|
|
}
|
|
|
|
if(isset($map['applicant_name']) && !empty($map['applicant_name'])){
|
|
|
|
$map['applicant_name'] = ['like','%'.$map['applicant_name'].'%'];
|
|
|
|
}
|
|
|
|
if(isset($map['operator_name']) && !empty($map['operator_name'])){
|
|
|
|
$map['operator_name'] = ['like','%'.$map['operator_name'].'%'];
|
|
|
|
}
|
|
|
|
$lists = $this->model->lists($map,$page,$row,'id',['*']);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :获取详情
|
|
|
|
* @name :info
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/5/30 14:35
|
|
|
|
*/
|
|
|
|
public function info(){
|
|
|
|
$lists = $this->model->read($this->param);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :保存域名申请记录
|
|
|
|
* @name :saveDomainLog
|
|
|
|
* @author :lyh
|
...
|
...
|
|