mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-10 17:42:50 +00:00
147 lines
4.0 KiB
PHP
147 lines
4.0 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\controller\v1\kefu;
|
||
|
||
|
||
use app\Request;
|
||
use think\facade\App;
|
||
use app\adminapi\controller\AuthController;
|
||
use app\services\kefu\service\StoreServiceSpeechcraftCateServices;
|
||
|
||
/**
|
||
* Class StoreServiceSpeechcraftCate
|
||
* @package app\adminapi\controller\v1\application\wechat
|
||
*/
|
||
class StoreServiceSpeechcraftCate extends AuthController
|
||
{
|
||
|
||
/**
|
||
* StoreServiceSpeechcraftCate constructor.
|
||
* @param App $app
|
||
* @param StoreServiceSpeechcraftCateServices $services
|
||
*/
|
||
public function __construct(App $app, StoreServiceSpeechcraftCateServices $services)
|
||
{
|
||
parent::__construct($app);
|
||
$this->services = $services;
|
||
}
|
||
|
||
/**
|
||
* 获取列表
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function index()
|
||
{
|
||
$where = $this->request->getMore([
|
||
['name', '']
|
||
]);
|
||
$where['owner_id'] = 0;
|
||
$where['type'] = 1;
|
||
return app('json')->success($this->services->getCateList($where));
|
||
}
|
||
|
||
/**
|
||
* 获取创建表单
|
||
* @return mixed
|
||
* @throws \FormBuilder\Exception\FormBuilderException
|
||
*/
|
||
public function create()
|
||
{
|
||
return app('json')->success($this->services->createForm());
|
||
}
|
||
|
||
/**
|
||
* 保存数据
|
||
* @return mixed
|
||
*/
|
||
public function save()
|
||
{
|
||
$data = $this->request->postMore([
|
||
['name', ''],
|
||
['sort', 0],
|
||
]);
|
||
|
||
if (!$data['name']) {
|
||
return app('json')->fail(400100);
|
||
}
|
||
|
||
if ($this->services->count(['name' => $data['name'], 'type' => 1, 'owner_id' => 0])) {
|
||
return app('json')->fail(400101);
|
||
}
|
||
|
||
$data['add_time'] = time();
|
||
$data['type'] = 1;
|
||
|
||
$this->services->save($data);
|
||
return app('json')->success(100021);
|
||
}
|
||
|
||
/**
|
||
* 获取修改表单
|
||
* @param $id
|
||
* @return mixed
|
||
* @throws \FormBuilder\Exception\FormBuilderException
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function edit($id)
|
||
{
|
||
return app('json')->success($this->services->editForm((int)$id));
|
||
}
|
||
|
||
/**
|
||
* 修改保存
|
||
* @param Request $request
|
||
* @param $id
|
||
* @return mixed
|
||
*/
|
||
public function update(Request $request, $id)
|
||
{
|
||
$data = $request->postMore([
|
||
['name', ''],
|
||
[['sort', 'd'], 0],
|
||
]);
|
||
if (!$data['name']) {
|
||
return app('json')->fail(400100);
|
||
}
|
||
|
||
$cateInfo = $this->services->get($id);
|
||
if (!$cateInfo) {
|
||
return app('json')->fail(400103);
|
||
}
|
||
$cateInfo->name = $data['name'];
|
||
$cateInfo->sort = $data['sort'];
|
||
$cateInfo->save();
|
||
return app('json')->success(100001);
|
||
}
|
||
|
||
/**
|
||
* 删除
|
||
* @param $id
|
||
* @return mixed
|
||
*/
|
||
public function delete($id)
|
||
{
|
||
if ($id == 0) return app('json')->fail(400273);
|
||
$cateInfo = $this->services->get($id);
|
||
if (!$cateInfo) {
|
||
return app('json')->fail(400103);
|
||
}
|
||
$cateInfo->delete();
|
||
return app('json')->success(100002);
|
||
}
|
||
}
|