_pagesize : $param['limit']; $where=[]; if($param['status']!=''){ $where['order_status'] = ['eq',$param['status']]; } if(!empty($param['uid'])){ $where['o.user_id'] = ['eq',$param['uid'] ]; } if(!empty($param['wd'])){ $param['wd'] = htmlspecialchars(urldecode($param['wd'])); $where['order_code'] = ['like','%'.$param['wd'].'%']; } $order='order_id desc'; $res = model('Order')->listData($where,$order,$param['page'],$param['limit']); $this->assign('list',$res['list']); $this->assign('total',$res['total']); $this->assign('page',$res['page']); $this->assign('limit',$res['limit']); $param['page'] = '{page}'; $param['limit'] = '{limit}'; $this->assign('param',$param); $this->assign('title',lang('admin/order/title')); return $this->fetch('admin@order/index'); } public function del() { $param = input(); $ids = $param['ids']; $all = $param['all']; if(!empty($ids)){ $where=[]; $where['order_id'] = ['in',$ids]; if($all==1){ $where['order_id'] = ['gt',0]; } $res = model('Order')->delData($where); if($res['code']>1){ return $this->error($res['msg']); } return $this->success($res['msg']); } return $this->error(lang('param_err')); } }