|
...
|
...
|
@@ -24,7 +24,7 @@ class VisitLogic extends BaseLogic |
|
|
|
|
|
|
|
public function getVisitList($map,$page,$row,$order,$filed = ['*'])
|
|
|
|
{
|
|
|
|
$map['domain'] = $this->user['domain'];
|
|
|
|
// $map['domain'] = $this->user['domain'];
|
|
|
|
$lists = $this->model->lists($map,$page,$row,$order,$filed);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
...
|
...
|
@@ -33,7 +33,7 @@ class VisitLogic extends BaseLogic |
|
|
|
$this->model = new VisitItem();
|
|
|
|
$map = [
|
|
|
|
'customer_visit_id' => $this->param['id'],
|
|
|
|
'domain' => $this->user['domain'],
|
|
|
|
// 'domain' => $this->user['domain'],
|
|
|
|
];
|
|
|
|
$data = $this->model->list($map);
|
|
|
|
return $this->success($data);
|
...
|
...
|
|