multi-store/app/admin/controller/supplier/SupplierController.php
mkm ae2dcb759e feat(order): 添加订单处理逻辑
fix(order): 修复订单中的错误
refactor(order): 重构订单代码,优化结构
style(order): 优化订单代码风格
test(order): 为订单添加测试
docs(order): 更新订单相关文档
build(order): 更新订单依赖
ops(order): 更新订单基础设施
chore(order): 更新订单 .gitignore
2024-08-15 17:52:16 +08:00

95 lines
2.1 KiB
PHP

<?php
namespace app\admin\controller\supplier;
use app\admin\controller\BaseAdminController;
use app\admin\lists\supplier\SupplierLists;
use app\admin\logic\supplier\SupplierLogic;
use app\admin\validate\supplier\SupplierValidate;
/**
* 供应链控制器
* Class SupplierController
* @package app\admin\controller\supplier
*/
class SupplierController extends BaseAdminController
{
/**
* @notes 获取供应链列表
* @return \think\response\Json
* @author admin
* @date 2024/08/15 14:10
*/
public function lists()
{
return $this->dataLists(new SupplierLists());
}
/**
* @notes 添加供应链
* @return \think\response\Json
* @author admin
* @date 2024/08/15 14:10
*/
public function add()
{
$params = (new SupplierValidate())->post()->goCheck('add');
$result = SupplierLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupplierLogic::getError());
}
/**
* @notes 编辑供应链
* @return \think\response\Json
* @author admin
* @date 2024/08/15 14:10
*/
public function edit()
{
$params = (new SupplierValidate())->post()->goCheck('edit');
$result = SupplierLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupplierLogic::getError());
}
/**
* @notes 删除供应链
* @return \think\response\Json
* @author admin
* @date 2024/08/15 14:10
*/
public function delete()
{
$params = (new SupplierValidate())->post()->goCheck('delete');
SupplierLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取供应链详情
* @return \think\response\Json
* @author admin
* @date 2024/08/15 14:10
*/
public function detail()
{
$params = (new SupplierValidate())->goCheck('detail');
$result = SupplierLogic::detail($params);
return $this->data($result);
}
}