dataLists(new NoticeSettingLists()); } /** * @notes 查看通知设置详情 * @return \think\response\Json * @author 段誉 * @date 2022/3/29 11:18 */ public function detail() { $params = (new NoticeValidate())->goCheck('detail'); $result = NoticeLogic::detail($params); return $this->data($result); } /** * @notes 通知设置 * @return \think\response\Json * @author 段誉 * @date 2022/3/29 11:18 */ public function set() { $params = $this->request->post(); $result = NoticeLogic::set($params); if ($result) { return $this->success('设置成功'); } return $this->fail(NoticeLogic::getError()); } /** * @notes 获取通知弹框信息 */ public function getInformation() { $params = $this->request->post(); $result = NoticeLogic::getInformation($params); if ($result) { return $this->success('获取成功', $result); } return $this->fail(NoticeLogic::getError()); } /** * @notes 后台测试通知 */ public function testNotice() { try { $params = $this->request->get(); $noticeSetting = NoticeSetting::where('scene_id', $params['scene_id'])->findOrEmpty()->toArray(); if(isset($noticeSetting['sms_notice']['status'])){ $res = event('Notice', [ 'scene_id' => $params['scene_id'], 'params' => [ 'user_id' => $params['user_id'], ] ]); } if(isset($noticeSetting['oa_notice']['status'])){ $res = event('Notice', [ 'scene_id' => $params['scene_id'], 'params' => [ 'user_id' => $params['user_id'], 'thing9' => $params['user_id'], 'time7' => $params['user_id'], 'thing8' => $params['user_id'], 'phone_number6' => $params['user_id'], ] ]); } dd($noticeSetting,$res); } catch (\Exception $e) { dd($e->getMessage()); } } }