94 lines
2.1 KiB
PHP
94 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
|
|
use app\admin\controller\BaseAdminController;
|
|
use app\admin\lists\ActivityZoneLists;
|
|
use app\admin\logic\ActivityZoneLogic;
|
|
use app\admin\validate\ActivityZoneValidate;
|
|
|
|
|
|
/**
|
|
* ActivityZone控制器
|
|
* Class ActivityZoneController
|
|
* @package app\admin\controller
|
|
*/
|
|
class ActivityZoneController extends BaseAdminController
|
|
{
|
|
|
|
|
|
/**
|
|
* @notes 获取列表
|
|
* @return \think\response\Json
|
|
* @author admin
|
|
* @date 2024/12/20 10:52
|
|
*/
|
|
public function lists()
|
|
{
|
|
return $this->dataLists(new ActivityZoneLists());
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 添加
|
|
* @return \think\response\Json
|
|
* @author admin
|
|
* @date 2024/12/20 10:52
|
|
*/
|
|
public function add()
|
|
{
|
|
$params = (new ActivityZoneValidate())->post()->goCheck('add');
|
|
$result = ActivityZoneLogic::add($params);
|
|
if (true === $result) {
|
|
return $this->success('添加成功', [], 1, 1);
|
|
}
|
|
return $this->fail(ActivityZoneLogic::getError());
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 编辑
|
|
* @return \think\response\Json
|
|
* @author admin
|
|
* @date 2024/12/20 10:52
|
|
*/
|
|
public function edit()
|
|
{
|
|
$params = (new ActivityZoneValidate())->post()->goCheck('edit');
|
|
$result = ActivityZoneLogic::edit($params);
|
|
if (true === $result) {
|
|
return $this->success('编辑成功', [], 1, 1);
|
|
}
|
|
return $this->fail(ActivityZoneLogic::getError());
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 删除
|
|
* @return \think\response\Json
|
|
* @author admin
|
|
* @date 2024/12/20 10:52
|
|
*/
|
|
public function delete()
|
|
{
|
|
$params = (new ActivityZoneValidate())->post()->goCheck('delete');
|
|
ActivityZoneLogic::delete($params);
|
|
return $this->success('删除成功', [], 1, 1);
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 获取详情
|
|
* @return \think\response\Json
|
|
* @author admin
|
|
* @date 2024/12/20 10:52
|
|
*/
|
|
public function detail()
|
|
{
|
|
$params = (new ActivityZoneValidate())->goCheck('detail');
|
|
$result = ActivityZoneLogic::detail($params);
|
|
return $this->data($result);
|
|
}
|
|
|
|
} |