request->getMore([ ['status', ''], ['keyword', ''], ]); return $this->success($this->services->applyList($where)); } /** * 申请审核 * @return \think\Response * @author wuhaotian * @email 442384644@qq.com * @date 2024/8/21 */ public function applyExamine($id) { return $this->success($this->services->applyExamine($id)); } /** * 申请审核保存 * @param $id * @return \think\Response * @author wuhaotian * @email 442384644@qq.com * @date 2025/7/16 */ public function applyExamineSave($id) { $data = $this->request->postMore([ ['status', 0], ['refusal_reason', ''], ]); $this->services->applyExamineSave($id, $data); return $this->success($data['status'] == 1 ? '审核通过' : '拒绝申请'); } /** * 申请删除 * @param $id * @return \think\Response * @author wuhaotian * @email 442384644@qq.com * @date 2024/8/21 */ public function applyDelete($id) { $this->services->applyDelete($id); return $this->success('删除成功'); } }