From ad3613f84e3fa3ee7784a3927c8f5ebf51dba586 Mon Sep 17 00:00:00 2001 From: weiz Date: Sat, 9 Dec 2023 11:50:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BB=84=E7=BB=87=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E6=A8=A1=E5=9D=97=E7=9B=B8=E5=85=B3=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/dept/OrgsController.php | 108 +++++++++++++++++ app/adminapi/lists/dept/OrgsLists.php | 78 +++++++++++++ app/adminapi/logic/dept/OrgsLogic.php | 110 ++++++++++++++++++ app/adminapi/validate/dept/OrgsValidate.php | 100 ++++++++++++++++ app/common/model/dept/Orgs.php | 39 +++++++ 5 files changed, 435 insertions(+) create mode 100644 app/adminapi/controller/dept/OrgsController.php create mode 100644 app/adminapi/lists/dept/OrgsLists.php create mode 100644 app/adminapi/logic/dept/OrgsLogic.php create mode 100644 app/adminapi/validate/dept/OrgsValidate.php create mode 100644 app/common/model/dept/Orgs.php diff --git a/app/adminapi/controller/dept/OrgsController.php b/app/adminapi/controller/dept/OrgsController.php new file mode 100644 index 000000000..962f17258 --- /dev/null +++ b/app/adminapi/controller/dept/OrgsController.php @@ -0,0 +1,108 @@ +dataLists(new OrgsLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function add() + { + $params = (new OrgsValidate())->post()->goCheck('add'); + $result = OrgsLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OrgsLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function edit() + { + $params = (new OrgsValidate())->post()->goCheck('edit'); + $result = OrgsLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OrgsLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function delete() + { + $params = (new OrgsValidate())->post()->goCheck('delete'); + OrgsLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function detail() + { + $params = (new OrgsValidate())->goCheck('detail'); + $result = OrgsLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/dept/OrgsLists.php b/app/adminapi/lists/dept/OrgsLists.php new file mode 100644 index 000000000..4c29509dd --- /dev/null +++ b/app/adminapi/lists/dept/OrgsLists.php @@ -0,0 +1,78 @@ + ['status'], + '%like%' => ['name', 'master'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function lists(): array + { + return Orgs::where($this->searchWhere) + ->field(['id', 'name', 'master', 'status']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function count(): int + { + return Orgs::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/dept/OrgsLogic.php b/app/adminapi/logic/dept/OrgsLogic.php new file mode 100644 index 000000000..d564bf7ec --- /dev/null +++ b/app/adminapi/logic/dept/OrgsLogic.php @@ -0,0 +1,110 @@ + $params['name'], + 'master' => $params['master'], + 'status' => $params['status'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + Orgs::where('id', $params['id'])->update([ + 'name' => $params['name'], + 'master' => $params['master'], + 'status' => $params['status'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public static function delete(array $params): bool + { + return Orgs::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public static function detail($params): array + { + return Orgs::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/dept/OrgsValidate.php b/app/adminapi/validate/dept/OrgsValidate.php new file mode 100644 index 000000000..94d436279 --- /dev/null +++ b/app/adminapi/validate/dept/OrgsValidate.php @@ -0,0 +1,100 @@ + 'require', + 'name' => 'require', + 'master' => 'require', + 'status' => 'require|integer|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'name' => '组织名称', + 'master' => '组织负责人', + 'status' => '组织状态', + ]; + + + /** + * @notes 添加场景 + * @return OrgsValidate + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function sceneAdd() + { + return $this->only(['name','master','status']); + } + + + /** + * @notes 编辑场景 + * @return OrgsValidate + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function sceneEdit() + { + return $this->only(['id','name','master','status']); + } + + + /** + * @notes 删除场景 + * @return OrgsValidate + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OrgsValidate + * @author likeadmin + * @date 2023/12/09 10:55 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/dept/Orgs.php b/app/common/model/dept/Orgs.php new file mode 100644 index 000000000..84d709176 --- /dev/null +++ b/app/common/model/dept/Orgs.php @@ -0,0 +1,39 @@ +'禁用',0=>'正常']; + return $status[$value]; + } + +} \ No newline at end of file