209 lines
4.6 KiB
PHP
Raw Normal View History

2025-03-17 10:04:28 +08:00
<?php
/**
* +----------------------------------------------------------------------
* | CRMEB [ CRMEB赋能开发者助力企业发展 ]
* +----------------------------------------------------------------------
* | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
* +----------------------------------------------------------------------
* | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
* +----------------------------------------------------------------------
* | Author: CRMEB Team <admin@crmeb.com>
* +----------------------------------------------------------------------
*/
/**
* 联系我们留言
* @author crud自动生成代码
* @date 2025/03/13
*/
namespace app\adminapi\controller\crud;
use app\adminapi\controller\AuthController;
use think\facade\App;
use app\services\crud\LeaveWordServices;
/**
* Class LeaveWord
* @date 2025/03/13
* @package app\adminapi\controller\crud
*/
class LeaveWord extends AuthController
{
/**
* @var LeaveWordServices
*/
protected $service;
/**
* LeaveWordController constructor.
* @param App $app
* @param LeaveWordServices $service
*/
public function __construct(App $app, LeaveWordServices $service)
{
parent::__construct($app);
$this->service = $service;
}
/**
* 列表
* @date 2025/03/13
* @return \think\Response
*/
public function index()
{
$where = $this->request->getMore([
['name', ''],
['mobile', ''],
['content', ''],
['create_time', ''],
]);
return app('json')->success($this->service->getCrudListIndex($where));
}
/**
* 创建
* @return \think\Response
* @date 2025/03/13
*/
public function create()
{
return app('json')->success($this->service->getCrudForm());
}
/**
* 保存
* @return \think\Response
* @date 2025/03/13
*/
public function save()
{
$data = $this->request->postMore([
['name', ''],
['mobile', ''],
['content', ''],
['create_time', ''],
]);
validate(\app\adminapi\validate\crud\LeaveWordValidate::class)->check($data);
$this->service->crudSave($data);
return app('json')->success(100021);
}
/**
* 编辑获取数据
* @param $id
* @return \think\Response
* @date 2025/03/13
*/
public function edit($id)
{
return app('json')->success($this->service->getCrudForm((int)$id));
}
/**
* 修改
* @param $id
* @return \think\Response
* @date 2025/03/13
*/
public function update($id)
{
if (!$id) {
return app('json')->fail(100100);
}
$data = $this->request->postMore([
['name', ''],
['mobile', ''],
['content', ''],
['create_time', ''],
]);
validate(\app\adminapi\validate\crud\LeaveWordValidate::class)->check($data);
$this->service->crudUpdate((int)$id, $data);
return app('json')->success(100001);
}
/**
* 修改状态
* @param $id
* @return \think\Response
* @date 2025/03/13
*/
public function status($id)
{
if (!$id) {
return app('json')->fail(100100);
}
$data = $this->request->postMore([
['field', ''],
['value', '']
]);
$filedAll = [];
if (!in_array($data['field'], $filedAll)) {
return app('json')->fail(100100);
}
if ($this->service->update(['id'=> $id], [$data['field']=> $data['value']])) {
return app('json')->success(100001);
} else {
return app('json')->fail(100100);
}
}
/**
* 删除
* @param $id
* @return \think\Response
* @date 2025/03/13
*/
public function delete($id)
{
if (!$id) {
return app('json')->fail(100100);
}
if ($this->service->destroy((int)$id)) {
return app('json')->success(100002);
} else {
return app('json')->success(100008);
}
}
/**
* 查看
* @param $id
* @return \think\Response
* @date 2025/03/13
*/
public function read($id)
{
if (!$id) {
return app('json')->fail(100100);
}
$info = $this->service->get($id, ['*'], []);
if (!$info) {
return app('json')->fail(100100);
}
return app('json')->success($info->toArray());
}
}