|
...
|
...
|
@@ -29,9 +29,13 @@ class VisitLogic extends BaseLogic |
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getItemList(array $map = [], $page,$row,$order = 'id',$filed = ['*']){
|
|
|
|
public function getItemList($order = 'id',$filed = ['*']){
|
|
|
|
$this->model = new VisitItem();
|
|
|
|
return $this->model->lists($map,$page,$row,$order,$filed);
|
|
|
|
$map = [
|
|
|
|
'customer_visit_id' => $this->param['id'],
|
|
|
|
'domain' => $this->user['domain'],
|
|
|
|
];
|
|
|
|
return $this->model->lists($map,$order,$filed);
|
|
|
|
}
|
|
|
|
|
|
|
|
} |
...
|
...
|
|