diff --git a/Controller/Admin/NotebookController.php b/Controller/Admin/NotebookController.php index cec097e..ad9ee9d 100644 --- a/Controller/Admin/NotebookController.php +++ b/Controller/Admin/NotebookController.php @@ -124,4 +124,20 @@ class NotebookController extends AbstractController return Response::json()->success($data); } + + /** + * 添加协作用户 + * + * @return ResponseInterface + */ + #[PostMapping(path: 'add-user')] + public function addUser(): ResponseInterface + { + NotebookService::aop()->addUser( + (int)$this->request->post('notebook_id'), + (array)$this->request->post('user_ids') + ); + + return Response::json()->success(); + } } diff --git a/Controller/Admin/NotebookUserController.php b/Controller/Admin/NotebookUserController.php new file mode 100644 index 0000000..e935d1f --- /dev/null +++ b/Controller/Admin/NotebookUserController.php @@ -0,0 +1,52 @@ +success(NotebookUserService::aop()->lists()); + } + + /** + * 更新数据 + * + * @return ResponseInterface + * @throws ApiMessageException + */ + #[Scene('update')] + #[PostMapping(path: 'update')] + public function update(): ResponseInterface + { + NotebookUserService::aop()->update($this->request->post()); + + return Response::json()->success(); + } + +} diff --git a/Service/Admin/NotebookService.php b/Service/Admin/NotebookService.php index 46b5eb8..0076398 100644 --- a/Service/Admin/NotebookService.php +++ b/Service/Admin/NotebookService.php @@ -12,6 +12,7 @@ use App\Service\Admin\Traits\SwitchServiceTrait; use App\Util\AdminAuth; use Plugins\Notebook\Model\Notebook; use App\Util\EasySearch; +use Plugins\Notebook\Model\NotebookUser; /** * Class NotebookService @@ -74,4 +75,28 @@ class NotebookService extends AbstractAdminService return $data; } + + /** + * @param int $notebook_id + * @param array $userIds + * + * @return void + * @throws ApiMessageException + */ + public function addUser(int $notebook_id, array $userIds): void + { + $data = []; + foreach ($userIds as $user_id) { + $data[] = [ + "notebook_id" => $notebook_id, + "administrators_id" => $user_id, + 'create_time' => date('Y-m-d H:i:s'), + 'update_time' => date('Y-m-d H:i:s'), + ]; + } + + if (!NotebookUser::insert($data)){ + throw new ApiMessageException('添加失败'); + } + } } diff --git a/Service/Admin/NotebookUserService.php b/Service/Admin/NotebookUserService.php new file mode 100644 index 0000000..0c22e91 --- /dev/null +++ b/Service/Admin/NotebookUserService.php @@ -0,0 +1,36 @@ +model = new NotebookUser(); + } + + /** + * @return array + */ + public function lists(): array + { + $query = $this->model->select(["notebook_user.id","notebook_user.notebook_id","notebook_user.administrators_id","notebook_user.mode","notebook_user.status","notebook_user.create_time"]); + + return EasySearch::create($query)->getData(); + } + +} diff --git a/View/Admin/Notebook/lists.blade.php b/View/Admin/Notebook/lists.blade.php index ffd197a..093bbb2 100644 --- a/View/Admin/Notebook/lists.blade.php +++ b/View/Admin/Notebook/lists.blade.php @@ -285,6 +285,7 @@ VueInit.methods.addAllowUser = function () { if (this.waitAddAllowUser.length > 0) { let isPure = true; + this.waitAddAllowUser.map(v =>{ if (!this.allowUserData.includes(v)) { this.allowUserData.push(v); @@ -298,6 +299,15 @@ } } }; + + VueInit.methods.addAllowUserRequest = function (waitAddAllowUser){ + axios({ + url:'', + method:'post', + data:waitAddAllowUser + }) + } + VueInit.methods.delAllowUser = function (index) { this.allowUserData.splice(index, 1); };