You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
216 lines
6.7 KiB
216 lines
6.7 KiB
3 months ago
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: CRMEB Team <admin@crmeb.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
namespace app\controller\admin\v1\system\config;
|
||
|
|
||
|
use app\controller\admin\AuthController;
|
||
|
use app\services\system\config\SystemGroupDataServices;
|
||
|
use app\services\system\config\SystemGroupServices;
|
||
|
use think\facade\App;
|
||
|
|
||
|
/**
|
||
|
* 组合数据
|
||
|
* Class SystemGroup
|
||
|
* @package app\controller\admin\v1\setting
|
||
|
*/
|
||
|
class SystemGroup extends AuthController
|
||
|
{
|
||
|
/**
|
||
|
* 构造方法
|
||
|
* SystemGroup constructor.
|
||
|
* @param App $app
|
||
|
* @param SystemGroupServices $services
|
||
|
*/
|
||
|
public function __construct(App $app, SystemGroupServices $services)
|
||
|
{
|
||
|
parent::__construct($app);
|
||
|
$this->services = $services;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 显示资源列表
|
||
|
*
|
||
|
* @return \think\Response
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
$where = $this->request->getMore([
|
||
|
['title', '']
|
||
|
]);
|
||
|
return $this->success($this->services->getGroupList($where));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 显示创建资源表单页.
|
||
|
*
|
||
|
* @return \think\Response
|
||
|
*/
|
||
|
public function create()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 保存新建的资源
|
||
|
*
|
||
|
* @return \think\Response
|
||
|
*/
|
||
|
public function save()
|
||
|
{
|
||
|
$params = $this->request->postMore([
|
||
|
['name', ''],
|
||
|
['config_name', ''],
|
||
|
[['cate_id', 'd'], 0],
|
||
|
['info', ''],
|
||
|
['typelist', []],
|
||
|
]);
|
||
|
|
||
|
//数据组名称判断
|
||
|
if (!$params['name']) {
|
||
|
return $this->fail('请输入数据组名称!');
|
||
|
}
|
||
|
if (!$params['config_name']) {
|
||
|
return $this->fail('请输入配置名称!');
|
||
|
}
|
||
|
$data["name"] = $params['name'];
|
||
|
$data["config_name"] = $params['config_name'];
|
||
|
$data["info"] = $params['info'];
|
||
|
$data["cate_id"] = $params['cate_id'];
|
||
|
//字段信息判断
|
||
|
if (!count($params['typelist']))
|
||
|
return $this->fail('字段至少存在一个!');
|
||
|
else {
|
||
|
$validate = ["name", "type", "title", "description"];
|
||
|
foreach ($params["typelist"] as $key => $value) {
|
||
|
foreach ($value as $name => $field) {
|
||
|
if (empty($field["value"]) && in_array($name, $validate))
|
||
|
return $this->fail("字段" . ($key + 1) . ":" . $field["placeholder"] . "不能为空!");
|
||
|
else
|
||
|
$data["fields"][$key][$name] = $field["value"];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
$data["fields"] = json_encode($data["fields"]);
|
||
|
$this->services->save($data);
|
||
|
\crmeb\services\CacheService::clear();
|
||
|
return $this->success('添加数据组成功!');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 显示指定的资源
|
||
|
*
|
||
|
* @param int $id
|
||
|
* @return \think\Response
|
||
|
*/
|
||
|
public function read($id)
|
||
|
{
|
||
|
$info = $this->services->get($id);
|
||
|
$fields = json_decode($info['fields'], true);
|
||
|
$type_list = [];
|
||
|
foreach ($fields as $key => $v) {
|
||
|
$type_list[$key]['name']['value'] = $v['name'];
|
||
|
$type_list[$key]['title']['value'] = $v['title'];
|
||
|
$type_list[$key]['type']['value'] = $v['type'];
|
||
|
$type_list[$key]['param']['value'] = $v['param'];
|
||
|
}
|
||
|
$info['typelist'] = $type_list;
|
||
|
unset($info['fields']);
|
||
|
return $this->success(compact('info'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 显示编辑资源表单页.
|
||
|
*
|
||
|
* @param int $id
|
||
|
* @return \think\Response
|
||
|
*/
|
||
|
public function edit($id)
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 保存更新的资源
|
||
|
*
|
||
|
* @param int $id
|
||
|
* @return \think\Response
|
||
|
*/
|
||
|
public function update($id)
|
||
|
{
|
||
|
$params = $this->request->postMore([
|
||
|
['name', ''],
|
||
|
['config_name', ''],
|
||
|
[['cate_id', 'd'], 0],
|
||
|
['info', ''],
|
||
|
['typelist', []],
|
||
|
]);
|
||
|
|
||
|
//数据组名称判断
|
||
|
if (!$params['name']) return $this->fail('请输入数据组名称!');
|
||
|
if (!$params['config_name']) return $this->fail('请输入配置名称!');
|
||
|
//判断ID是否存在,存在就是编辑,不存在就是添加
|
||
|
if (!$id) {
|
||
|
if ($this->services->count(['config_name' => $params['config_name']])) {
|
||
|
return $this->fail('数据关键字已存在!');
|
||
|
}
|
||
|
}
|
||
|
$data["name"] = $params['name'];
|
||
|
$data["config_name"] = $params['config_name'];
|
||
|
$data["info"] = $params['info'];
|
||
|
$data["cate_id"] = $params['cate_id'];
|
||
|
//字段信息判断
|
||
|
if (!count($params['typelist']))
|
||
|
return $this->fail('字段至少存在一个!');
|
||
|
else {
|
||
|
$validate = ["name", "type", "title", "description"];
|
||
|
foreach ($params["typelist"] as $key => $value) {
|
||
|
foreach ($value as $name => $field) {
|
||
|
if (empty($field["value"]) && in_array($name, $validate))
|
||
|
return $this->fail("字段" . ($key + 1) . ":" . $field["placeholder"] . "不能为空!");
|
||
|
else
|
||
|
$data["fields"][$key][$name] = $field["value"];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
$data["fields"] = json_encode($data["fields"]);
|
||
|
$this->services->update($id, $data);
|
||
|
\crmeb\services\CacheService::clear();
|
||
|
return $this->success('编辑数据组成功!');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 删除指定资源
|
||
|
*
|
||
|
* @param int $id
|
||
|
* @return \think\Response
|
||
|
*/
|
||
|
public function delete($id, SystemGroupDataServices $services)
|
||
|
{
|
||
|
if (!$this->services->delete($id))
|
||
|
return $this->fail('删除失败,请稍候再试!');
|
||
|
else {
|
||
|
$services->delete($id, 'gid');
|
||
|
return $this->success('删除成功!');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取组合数据
|
||
|
* @return mixed
|
||
|
* @throws \think\db\exception\DataNotFoundException
|
||
|
* @throws \think\db\exception\DbException
|
||
|
* @throws \think\db\exception\ModelNotFoundException
|
||
|
*/
|
||
|
public function getGroup()
|
||
|
{
|
||
|
return $this->success($this->services->getGroupList(['cate_id' => 1], ['id', 'name', 'config_name'])['list']);
|
||
|
}
|
||
|
}
|