fetch(); } public function get_apply_list() { $where = UtilService::getMore([ ['page', 1], ['limit', 20], ['audit_status', -1], ['apply_user_name', ''], ['mer_id', ''], ]); // return JsonService::fail('找不到记录',$where); return app('ApplyLogic')->getPageList($where); } public function auditPage($id) { $this->assign('id', $id); return $this->fetch('audit'); } public function audit() { $data = Util::postMore([ ['id', 0], ['audit_status', 0], ['text', ''] ]); if (empty($data['id'])) { return JsonService::fail('id不能为空'); } if (empty($data['audit_status'])) { return JsonService::fail('请选择操作'); } return app('ApplyLogic')->audit($data); } public function isDel($id) { return app('ApplyLogic')->delById($id); } }