|
@@ -54,6 +54,9 @@ class VisitController extends BaseController |
|
@@ -54,6 +54,9 @@ class VisitController extends BaseController |
|
54
|
* @time :2024/5/6 16:42
|
54
|
* @time :2024/5/6 16:42
|
|
55
|
*/
|
55
|
*/
|
|
56
|
public function downloadIndex(VisitLogic $logic){
|
56
|
public function downloadIndex(VisitLogic $logic){
|
|
|
|
57
|
+ if(isset($this->map['updated_date']) && is_array($this->map['updated_date'])){
|
|
|
|
58
|
+ $this->map['updated_date'] = ['between',$this->map['updated_date']];
|
|
|
|
59
|
+ }
|
|
57
|
$data = $logic->downloadItem($this->map,$this->page,$this->row,$this->order);
|
60
|
$data = $logic->downloadItem($this->map,$this->page,$this->row,$this->order);
|
|
58
|
$this->response('success',Code::SUCCESS,$data);
|
61
|
$this->response('success',Code::SUCCESS,$data);
|
|
59
|
}
|
62
|
}
|