From 359c015a156fcae977b9cee6941f1b1e520c47d0 Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Thu, 6 Jun 2024 16:45:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=85=8D=E9=80=81=E5=91=98?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/lists/DeliveryServiceLists.php | 44 ++++++ app/common/logic/DeliveryServiceLogic.php | 78 +++++++++++ app/common/logic/SystemStoreStaffLogic.php | 20 +++ .../model/system_store/DeliveryService.php | 33 +++++ app/store/controller/DeliveryController.php | 129 ++++++++++++++++++ app/store/controller/StaffController.php | 24 +++- 6 files changed, 324 insertions(+), 4 deletions(-) create mode 100644 app/common/lists/DeliveryServiceLists.php create mode 100644 app/common/logic/DeliveryServiceLogic.php create mode 100644 app/common/model/system_store/DeliveryService.php create mode 100644 app/store/controller/DeliveryController.php diff --git a/app/common/lists/DeliveryServiceLists.php b/app/common/lists/DeliveryServiceLists.php new file mode 100644 index 00000000..7a5b099f --- /dev/null +++ b/app/common/lists/DeliveryServiceLists.php @@ -0,0 +1,44 @@ +when(!empty($this->request->adminInfo['store_id']), function ($query) { + $query->where('store_id', '=', $this->request->adminInfo['store_id']); + }) + ->when(!empty($this->params['keyword']), function ($query) { + $query->where('nickname|phone', 'like', "%{$this->params['keyword']}%"); + }) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + public function count(): int + { + return DeliveryService::when(!empty($this->request->adminInfo['store_id']), function ($query) { + $query->where('store_id', '=', $this->request->adminInfo['store_id']); + }) + ->when(!empty($this->params['keyword']), function ($query) { + $query->where('nickname|phone', 'like', "%{$this->params['keyword']}%"); + }) + ->count(); + } + +} diff --git a/app/common/logic/DeliveryServiceLogic.php b/app/common/logic/DeliveryServiceLogic.php new file mode 100644 index 00000000..36b3428e --- /dev/null +++ b/app/common/logic/DeliveryServiceLogic.php @@ -0,0 +1,78 @@ +setAttrs($params); + $model->store_id = request()->adminInfo['store_id']; + $defaultAvatar = config('project.default_image.admin_avatar'); + $model->avatar = !empty($model['avatar']) ? FileService::setFileUrl($model['avatar']) : $defaultAvatar; + $model->save(); + } catch (\Exception $exception) { + throw new \Exception($exception->getMessage()); + } + } + + public function edit($id, $params) + { + try { + $model = DeliveryService::find($id); + if (empty($model)) { + throw new \Exception('数据不存在'); + } + $model->setAttrs($params); + $defaultAvatar = config('project.default_image.admin_avatar'); + $model->avatar = !empty($model['avatar']) ? FileService::setFileUrl($model['avatar']) : $defaultAvatar; + $model->save(); + } catch (\Exception $exception) { + throw new \Exception($exception->getMessage()); + } + } + + public function delete($id) + { + try { + $model = DeliveryService::find($id); + if (empty($model)) { + throw new \Exception('数据不存在'); + } + $model->delete(); + } catch (\Exception $exception) { + throw new \Exception($exception->getMessage()); + } + } + + public function detail($id) + { + $model = DeliveryService::find($id); + if (empty($model)) { + throw new \Exception('数据不存在'); + } + return $model->toArray(); + } + + public function status($id) + { + try { + $model = DeliveryService::find($id); + if (empty($model)) { + throw new \Exception('数据不存在'); + } + $model->status = $model->status == 1 ? 0 : 1; + $model->save(); + } catch (\Exception $exception) { + throw new \Exception($exception->getMessage()); + } + } + +} diff --git a/app/common/logic/SystemStoreStaffLogic.php b/app/common/logic/SystemStoreStaffLogic.php index 94ed3501..4e25dc41 100644 --- a/app/common/logic/SystemStoreStaffLogic.php +++ b/app/common/logic/SystemStoreStaffLogic.php @@ -38,6 +38,12 @@ class SystemStoreStaffLogic extends BaseLogic throw new \Exception('数据不存在'); } $model->setAttrs($params); + if (!empty($params['pwd'])) { + $passwordSalt = Config::get('project.unique_identification'); + $model->pwd = create_password($params['pwd'], $passwordSalt); + } + $defaultAvatar = config('project.default_image.admin_avatar'); + $model->avatar = !empty($model['avatar']) ? FileService::setFileUrl($model['avatar']) : $defaultAvatar; $model->save(); } catch (\Exception $exception) { throw new \Exception($exception->getMessage()); @@ -66,4 +72,18 @@ class SystemStoreStaffLogic extends BaseLogic return $model->toArray(); } + public function status($id) + { + try { + $model = SystemStoreStaff::find($id); + if (empty($model)) { + throw new \Exception('数据不存在'); + } + $model->status = $model->status == 1 ? 0 : 1; + $model->save(); + } catch (\Exception $exception) { + throw new \Exception($exception->getMessage()); + } + } + } diff --git a/app/common/model/system_store/DeliveryService.php b/app/common/model/system_store/DeliveryService.php new file mode 100644 index 00000000..51a7b5f1 --- /dev/null +++ b/app/common/model/system_store/DeliveryService.php @@ -0,0 +1,33 @@ +dataLists(new DeliveryServiceLists()); + } + + #[ + ApiDoc\Title('添加'), + ApiDoc\url('/store/delivery/add'), + ApiDoc\Method('POST'), + ApiDoc\NotHeaders(), + ApiDoc\Header(ref: [Definitions::class, "token"]), + ApiDoc\Param(name: 'avatar', type: 'string', require: true, desc: '头像'), + ApiDoc\Param(name: 'nickname', type: 'string', require: true, desc: '店员名称'), + ApiDoc\Param(name: 'phone', type: 'string', require: true, desc: '手机号'), + ApiDoc\Param(name: 'status', type: 'string', require: true, desc: '状态,1启用,0禁用'), + ApiDoc\ResponseSuccess("data", type: "array"), + ] + public function add(DeliveryServiceLogic $logic) + { + $params = $this->request->post(); + $logic->add($params); + return $this->success('操作成功', [], 1, 1); + } + + #[ + ApiDoc\Title('编辑'), + ApiDoc\url('/store/delivery/edit'), + ApiDoc\Method('POST'), + ApiDoc\NotHeaders(), + ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'), + ApiDoc\Header(ref: [Definitions::class, "token"]), + ApiDoc\Param(name: 'avatar', type: 'string', require: true, desc: '头像'), + ApiDoc\Param(name: 'nickname', type: 'string', require: true, desc: '店员名称'), + ApiDoc\Param(name: 'phone', type: 'string', require: true, desc: '手机号'), + ApiDoc\Param(name: 'status', type: 'string', require: true, desc: '状态,1启用,0禁用'), + ApiDoc\ResponseSuccess("data", type: "array"), + ] + public function edit(DeliveryServiceLogic $logic) + { + $id = $this->request->post('id'); + $params = $this->request->post(); + $logic->edit($id, $params); + return $this->success('操作成功', [], 1, 1); + } + + #[ + ApiDoc\Title('删除'), + ApiDoc\url('/store/delivery/delete'), + ApiDoc\Method('POST'), + ApiDoc\NotHeaders(), + ApiDoc\Header(ref: [Definitions::class, "token"]), + ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'), + ApiDoc\ResponseSuccess("data", type: "array"), + ] + public function delete(DeliveryServiceLogic $logic) + { + $id = $this->request->post('id'); + $logic->delete($id); + return $this->success('操作成功', [], 1, 1); + } + + #[ + ApiDoc\Title('详情'), + ApiDoc\url('/store/delivery/detail'), + ApiDoc\Method('GET'), + ApiDoc\NotHeaders(), + ApiDoc\Header(ref: [Definitions::class, "token"]), + ApiDoc\Query(name: 'id', type: 'int', require: true, desc: 'id'), + ApiDoc\ResponseSuccess("data", type: "array", children: [ + ['name' => 'id', 'desc' => 'ID', 'type' => 'int'], + ['name' => 'account', 'desc' => '账号', 'type' => 'string'], + ['name' => 'avatar', 'desc' => '头像', 'type' => 'string'], + ['name' => 'staff_name', 'desc' => '店员名称', 'type' => 'string'], + ['name' => 'phone', 'desc' => '手机号', 'type' => 'string'], + ['name' => 'verify_status', 'desc' => '核销开关,1开启,0关闭', 'type' => 'int'], + ['name' => 'order_status', 'desc' => '订单状态,1开启,0关闭', 'type' => 'int'], + ['name' => 'is_admin', 'desc' => '是否管理员,1是,0不是', 'type' => 'int'], + ['name' => 'is_manager', 'desc' => '是否是店长,1是,0不是', 'type' => 'int'], + ['name' => 'status', 'desc' => '状态,1启用,0禁用', 'type' => 'int'], + ]), + ] + public function detail(DeliveryServiceLogic $logic) + { + $id = $this->request->get('id'); + $data = $logic->detail($id); + return $this->data($data); + } + + #[ + ApiDoc\Title('开启/关闭'), + ApiDoc\url('/store/delivery/status'), + ApiDoc\Method('POST'), + ApiDoc\NotHeaders(), + ApiDoc\Header(ref: [Definitions::class, "token"]), + ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'), + ApiDoc\ResponseSuccess("data", type: "array"), + ] + public function status(DeliveryServiceLogic $logic) + { + $id = $this->request->post('id'); + $logic->status($id); + return $this->success('操作成功', [], 1, 1); + } + +} diff --git a/app/store/controller/StaffController.php b/app/store/controller/StaffController.php index ac4cb919..60e604c4 100644 --- a/app/store/controller/StaffController.php +++ b/app/store/controller/StaffController.php @@ -64,8 +64,8 @@ class StaffController extends BaseAdminController ApiDoc\url('/store/staff/edit'), ApiDoc\Method('POST'), ApiDoc\NotHeaders(), - ApiDoc\Query(name: 'id', type: 'int', require: true, desc: 'id'), ApiDoc\Header(ref: [Definitions::class, "token"]), + ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'), ApiDoc\Param(name: 'account', type: 'string', require: true, desc: '账号'), ApiDoc\Param(name: 'pwd', type: 'string', require: true, desc: '密码'), ApiDoc\Param(name: 'avatar', type: 'string', require: true, desc: '头像'), @@ -79,7 +79,7 @@ class StaffController extends BaseAdminController ] public function edit(SystemStoreStaffLogic $staffLogic) { - $id = $this->request->get('id'); + $id = $this->request->post('id'); $params = $this->request->post(); $staffLogic->edit($id, $params); return $this->success('操作成功', [], 1, 1); @@ -91,12 +91,12 @@ class StaffController extends BaseAdminController ApiDoc\Method('POST'), ApiDoc\NotHeaders(), ApiDoc\Header(ref: [Definitions::class, "token"]), - ApiDoc\Query(name: 'id', type: 'int', require: true, desc: 'id'), + ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'), ApiDoc\ResponseSuccess("data", type: "array"), ] public function delete(SystemStoreStaffLogic $staffLogic) { - $id = $this->request->get('id'); + $id = $this->request->post('id'); $staffLogic->delete($id); return $this->success('操作成功', [], 1, 1); } @@ -128,4 +128,20 @@ class StaffController extends BaseAdminController return $this->data($data); } + #[ + ApiDoc\Title('开启/关闭'), + ApiDoc\url('/store/staff/status'), + ApiDoc\Method('POST'), + ApiDoc\NotHeaders(), + ApiDoc\Header(ref: [Definitions::class, "token"]), + ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'), + ApiDoc\ResponseSuccess("data", type: "array"), + ] + public function status(SystemStoreStaffLogic $logic) + { + $id = $this->request->post('id'); + $logic->status($id); + return $this->success('操作成功', [], 1, 1); + } + }