dataLists(new PropertyActivityLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2024/11/21 15:04 */ public function add() { $params = (new PropertyActivityValidate())->post()->goCheck('add'); $result = PropertyActivityLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(PropertyActivityLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2024/11/21 15:04 */ public function edit() { $params = (new PropertyActivityValidate())->post()->goCheck('edit'); $result = PropertyActivityLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(PropertyActivityLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2024/11/21 15:04 */ public function delete() { $params = (new PropertyActivityValidate())->post()->goCheck('delete'); PropertyActivityLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2024/11/21 15:04 */ public function detail() { $params = (new PropertyActivityValidate())->goCheck('detail'); $result = PropertyActivityLogic::detail($params); return $this->data($result); } public function propertys() { return $this->success('',\app\adminapi\logic\property\PropertyHeadLogic::selectList(), 1, 1); } public function getQRCode() { $params = (new PropertyActivityValidate())->post()->goCheck('detail'); return $this->success('',['qrcode'=>PropertyActivityLogic::getQRCode($params,$this->request->domain())], 1, 1); } // 上线前的旧数据处理为可用的新数据 public function copy() { $params = (new PropertyActivityValidate())->post()->goCheck('detail'); $result = PropertyActivityLogic::copy($params); if (true === $result) { return $this->success('复制成功', [], 1, 1); } return $this->fail(PropertyActivityLogic::getError()); } }