From cc79d7444fec632918cfdd90d5c35e8648615867 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 31 May 2024 11:00:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E8=AF=B4=E6=98=8E=EF=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除'task'配置以避免混淆,更新商品列表相关代码。 --- .../store_product/StoreProductController.php | 95 +++++++++++++++++++ .../lists/store_product/StoreProductLists.php | 65 +++++++++++++ .../logic/store_product/StoreProductLogic.php | 94 ++++++++++++++++++ .../store_product/StoreProductValidate.php | 84 ++++++++++++++++ .../model/store_product/StoreProduct.php | 22 +++++ .../service/generator/core/BaseGenerator.php | 2 +- config/server.php | 2 +- 7 files changed, 362 insertions(+), 2 deletions(-) create mode 100644 app/admin/controller/store_product/StoreProductController.php create mode 100644 app/admin/lists/store_product/StoreProductLists.php create mode 100644 app/admin/logic/store_product/StoreProductLogic.php create mode 100644 app/admin/validate/store_product/StoreProductValidate.php create mode 100644 app/common/model/store_product/StoreProduct.php diff --git a/app/admin/controller/store_product/StoreProductController.php b/app/admin/controller/store_product/StoreProductController.php new file mode 100644 index 00000000..4cf64caf --- /dev/null +++ b/app/admin/controller/store_product/StoreProductController.php @@ -0,0 +1,95 @@ +dataLists(new StoreProductLists()); + } + + + /** + * @notes 添加商品列表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function add() + { + $params = (new StoreProductValidate())->post()->goCheck('add'); + $result = StoreProductLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(StoreProductLogic::getError()); + } + + + /** + * @notes 编辑商品列表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function edit() + { + $params = (new StoreProductValidate())->post()->goCheck('edit'); + $result = StoreProductLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(StoreProductLogic::getError()); + } + + + /** + * @notes 删除商品列表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function delete() + { + $params = (new StoreProductValidate())->post()->goCheck('delete'); + StoreProductLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取商品列表详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function detail() + { + $params = (new StoreProductValidate())->goCheck('detail'); + $result = StoreProductLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/admin/lists/store_product/StoreProductLists.php b/app/admin/lists/store_product/StoreProductLists.php new file mode 100644 index 00000000..79b94fbd --- /dev/null +++ b/app/admin/lists/store_product/StoreProductLists.php @@ -0,0 +1,65 @@ + ['store_name', 'cate_id'], + ]; + } + + + /** + * @notes 获取商品列表列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function lists(): array + { + return StoreProduct::where($this->searchWhere) + ->field(['id', 'image', 'store_name', 'cate_id', 'price', 'unit_name', 'sales', 'stock', 'is_show', 'is_new', 'add_time', 'is_postage', 'is_del', 'cost']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取商品列表数量 + * @return int + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function count(): int + { + return StoreProduct::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/admin/logic/store_product/StoreProductLogic.php b/app/admin/logic/store_product/StoreProductLogic.php new file mode 100644 index 00000000..1e8c2fdc --- /dev/null +++ b/app/admin/logic/store_product/StoreProductLogic.php @@ -0,0 +1,94 @@ + $params['store_name'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑商品列表 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + StoreProduct::where('id', $params['id'])->update([ + 'store_name' => $params['store_name'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除商品列表 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public static function delete(array $params): bool + { + return StoreProduct::destroy($params['id']); + } + + + /** + * @notes 获取商品列表详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public static function detail($params): array + { + return StoreProduct::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/admin/validate/store_product/StoreProductValidate.php b/app/admin/validate/store_product/StoreProductValidate.php new file mode 100644 index 00000000..127637fd --- /dev/null +++ b/app/admin/validate/store_product/StoreProductValidate.php @@ -0,0 +1,84 @@ + 'require', + 'store_name' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'store_name' => '商品名称', + ]; + + + /** + * @notes 添加场景 + * @return StoreProductValidate + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function sceneAdd() + { + return $this->only(['store_name']); + } + + + /** + * @notes 编辑场景 + * @return StoreProductValidate + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function sceneEdit() + { + return $this->only(['id','store_name']); + } + + + /** + * @notes 删除场景 + * @return StoreProductValidate + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return StoreProductValidate + * @author likeadmin + * @date 2024/05/31 10:53 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/store_product/StoreProduct.php b/app/common/model/store_product/StoreProduct.php new file mode 100644 index 00000000..fd9659f0 --- /dev/null +++ b/app/common/model/store_product/StoreProduct.php @@ -0,0 +1,22 @@ +tableData['author']) ? 'likeadmin' : $this->tableData['author']; + return empty($this->tableData['author']) ? 'admin' : $this->tableData['author']; } diff --git a/config/server.php b/config/server.php index 12422de8..fb3af3c3 100644 --- a/config/server.php +++ b/config/server.php @@ -13,7 +13,7 @@ */ return [ - 'listen' => 'http://0.0.0.0:8546', + 'listen' => 'http://0.0.0.0:8545', 'transport' => 'tcp', 'context' => [], 'name' => 'webman',