|
@@ -17,7 +17,7 @@ class Order extends Base
|
|
$page = isset($this->post['page']) && $this->post['page'] != "" ? intval($this->post['page']) : 1;
|
|
$page = isset($this->post['page']) && $this->post['page'] != "" ? intval($this->post['page']) : 1;
|
|
$size = isset($this->post['size']) && $this->post['size'] != "" ? intval($this->post['size']) : 10;
|
|
$size = isset($this->post['size']) && $this->post['size'] != "" ? intval($this->post['size']) : 10;
|
|
$status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "";
|
|
$status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "";
|
|
- $where = [];
|
|
|
|
|
|
+ $where = ["a.is_del"=>0];
|
|
if ($status !== "") {
|
|
if ($status !== "") {
|
|
$where['a.status'] = $status;
|
|
$where['a.status'] = $status;
|
|
}
|
|
}
|