|
...
|
...
|
@@ -37,6 +37,9 @@ class GeoLinkLogic extends BaseLogic |
|
|
|
*/
|
|
|
|
public function getLinkList($map = [],$page = 1,$row = 20,$order = 'id'){
|
|
|
|
$filed = ['*'];
|
|
|
|
if(isset($map['url']) && !empty($map['url'])){
|
|
|
|
$map['url'] = ['like','%'.$map['url'].'%'];
|
|
|
|
}
|
|
|
|
$lists = $this->model->lists($map,$page,$row,$order,$filed);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
...
|
...
|
|