diff --git a/app/adminapi/controller/project/ProjectTypeSetController.php b/app/adminapi/controller/project/ProjectTypeSetController.php new file mode 100644 index 000000000..1cc15dcf2 --- /dev/null +++ b/app/adminapi/controller/project/ProjectTypeSetController.php @@ -0,0 +1,108 @@ +dataLists(new ProjectTypeSetLists()); + } + + + /** + * @notes 添加项目类型设置 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function add() + { + $params = (new ProjectTypeSetValidate())->post()->goCheck('add'); + $result = ProjectTypeSetLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(ProjectTypeSetLogic::getError()); + } + + + /** + * @notes 编辑项目类型设置 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function edit() + { + $params = (new ProjectTypeSetValidate())->post()->goCheck('edit'); + $result = ProjectTypeSetLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(ProjectTypeSetLogic::getError()); + } + + + /** + * @notes 删除项目类型设置 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function delete() + { + $params = (new ProjectTypeSetValidate())->post()->goCheck('delete'); + ProjectTypeSetLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取项目类型设置详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function detail() + { + $params = (new ProjectTypeSetValidate())->goCheck('detail'); + $result = ProjectTypeSetLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/project/ProjectTypeSetLists.php b/app/adminapi/lists/project/ProjectTypeSetLists.php new file mode 100644 index 000000000..8fcbe5703 --- /dev/null +++ b/app/adminapi/lists/project/ProjectTypeSetLists.php @@ -0,0 +1,83 @@ + ['name'], + ]; + } + + + /** + * @notes 获取项目类型设置列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function lists(): array + { + return ProjectTypeSet::where($this->searchWhere) + ->field(['id', 'name', 'web_tags', 'app_tags', 'budget_tags']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($item){ + $item['web_tags_text'] = DictData::where('type_value','project_web_tags')->where('value','in',$item['web_tags'])->order('sort desc')->column('name'); + $item['app_tags_text'] = DictData::where('type_value','project_app_tags')->where('value','in',$item['app_tags'])->order('sort desc')->column('name'); + $item['budget_tags_text'] = DictData::where('type_value','project_budget_tags')->where('value','in',$item['budget_tags'])->order('sort desc')->column('name'); + return $item; + }) + ->toArray(); + } + + + /** + * @notes 获取项目类型设置数量 + * @return int + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function count(): int + { + return ProjectTypeSet::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/project/ProjectTypeSetLogic.php b/app/adminapi/logic/project/ProjectTypeSetLogic.php new file mode 100644 index 000000000..5b3ad1fe6 --- /dev/null +++ b/app/adminapi/logic/project/ProjectTypeSetLogic.php @@ -0,0 +1,111 @@ + $params['name'], + 'web_tags' => $params['web_tags'], + 'app_tags' => $params['app_tags'], + 'budget_tags' => $params['budget_tags'] + ]); + 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/13 11:15 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + ProjectTypeSet::where('id', $params['id'])->update([ + 'name' => $params['name'], + 'web_tags' => $params['web_tags'], + 'app_tags' => $params['app_tags'], + 'budget_tags' => $params['budget_tags'] + ]); + + 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/13 11:15 + */ + public static function delete(array $params): bool + { + return ProjectTypeSet::destroy($params['id']); + } + + + /** + * @notes 获取项目类型设置详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public static function detail($params): array + { + return ProjectTypeSet::field('id,name,web_tags,app_tags,budget_tags')->findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/project/ProjectTypeSetValidate.php b/app/adminapi/validate/project/ProjectTypeSetValidate.php new file mode 100644 index 000000000..185da0973 --- /dev/null +++ b/app/adminapi/validate/project/ProjectTypeSetValidate.php @@ -0,0 +1,149 @@ + 'require', + 'name' => 'require|unique:'.ProjectTypeSet::class, + 'web_tags' => 'checkWebTags', + 'app_tags' => 'checkAppTags', + 'budget_tags' => 'checkBudgetTags', + ]; + + protected $message = [ + 'id.require' => '缺少必要参数', + 'name.require' => '请填写类型名称', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'name' => '项目类型名称', + ]; + + + /** + * @notes 添加场景 + * @return ProjectTypeSetValidate + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return ProjectTypeSetValidate + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return ProjectTypeSetValidate + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ProjectTypeSetValidate + * @author likeadmin + * @date 2023/12/13 11:15 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkWebTags($value): bool|string + { + $tags = explode(',',$value); + if(empty($tags)){ + return '请选择web标签'; + } + $dictDate = DictData::where('type_value','project_web_tags')->column('value'); + foreach($tags as $v) { + if(!in_array($v,$dictDate)){ + return 'web标签不存在'; + } + } + return true; + } + + public function checkAppTags($value): bool|string + { + $tags = explode(',',$value); + if(empty($tags)){ + return '请选择app标签'; + } + $dictDate = DictData::where('type_value','project_app_tags')->column('value'); + foreach($tags as $v) { + if(!in_array($v,$dictDate)){ + return 'app标签不存在'; + } + } + return true; + } + + public function checkBudgetTags($value): bool|string + { + $tags = explode(',', $value); + if (empty($tags)) { + return '请选择预算标签'; + } + $dictDate = DictData::where('type_value','project_budget_tags')->column('value'); + foreach($tags as $v) { + if(!in_array($v,$dictDate)){ + return '预算标签不存在'; + } + } + return true; + } + +} \ No newline at end of file diff --git a/app/common/model/project/ProjectTypeSet.php b/app/common/model/project/ProjectTypeSet.php new file mode 100644 index 000000000..301248480 --- /dev/null +++ b/app/common/model/project/ProjectTypeSet.php @@ -0,0 +1,34 @@ +