提交说明:

移除'task'配置以避免混淆,更新商品列表相关代码。
This commit is contained in:
mkm 2024-05-31 11:00:31 +08:00
parent 0a56f77f71
commit cc79d7444f
7 changed files with 362 additions and 2 deletions

View File

@ -0,0 +1,95 @@
<?php
namespace app\admin\controller\store_product;
use app\admin\controller\BaseAdminController;
use app\admin\lists\store_product\StoreProductLists;
use app\admin\logic\store_product\StoreProductLogic;
use app\admin\validate\store_product\StoreProductValidate;
/**
* 商品列表控制器
* Class StoreProductController
* @package app\admin\controller\store_product
*/
class StoreProductController extends BaseAdminController
{
/**
* @notes 获取商品列表列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/05/31 10:53
*/
public function lists()
{
return $this->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);
}
}

View File

@ -0,0 +1,65 @@
<?php
namespace app\admin\lists\store_product;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\store_product\StoreProduct;
use app\common\lists\ListsSearchInterface;
/**
* 商品列表列表
* Class StoreProductLists
* @package app\admin\listsstore_product
*/
class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/05/31 10:53
*/
public function setSearch(): array
{
return [
'=' => ['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();
}
}

View File

@ -0,0 +1,94 @@
<?php
namespace app\admin\logic\store_product;
use app\common\model\store_product\StoreProduct;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 商品列表逻辑
* Class StoreProductLogic
* @package app\admin\logic\store_product
*/
class StoreProductLogic extends BaseLogic
{
/**
* @notes 添加商品列表
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/05/31 10:53
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
StoreProduct::create([
'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 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();
}
}

View File

@ -0,0 +1,84 @@
<?php
namespace app\admin\validate\store_product;
use app\common\validate\BaseValidate;
/**
* 商品列表验证器
* Class StoreProductValidate
* @package app\admin\validate\store_product
*/
class StoreProductValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => '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']);
}
}

View File

@ -0,0 +1,22 @@
<?php
namespace app\common\model\store_product;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 商品列表模型
* Class StoreProduct
* @package app\common\model\store_product
*/
class StoreProduct extends BaseModel
{
use SoftDelete;
protected $name = 'store_product';
protected $deleteTime = 'delete_time';
}

View File

@ -408,7 +408,7 @@ abstract class BaseGenerator
*/
public function getAuthorContent()
{
return empty($this->tableData['author']) ? 'likeadmin' : $this->tableData['author'];
return empty($this->tableData['author']) ? 'admin' : $this->tableData['author'];
}

View File

@ -13,7 +13,7 @@
*/
return [
'listen' => 'http://0.0.0.0:8546',
'listen' => 'http://0.0.0.0:8545',
'transport' => 'tcp',
'context' => [],
'name' => 'webman',