// +---------------------------------------------------------------------- namespace app\services\system\config; use app\dao\system\config\SystemConfigTabDao; use app\services\BaseServices; use crmeb\exceptions\AdminException; use crmeb\services\FormBuilder as Form; /** * 系统配置分类 * Class SystemConfigTabServices * @package app\services\system\config * @mixin SystemConfigTabDao */ class SystemConfigTabServices extends BaseServices { /** * SystemConfigTabServices constructor. * @param SystemConfigTabDao $dao */ public function __construct(SystemConfigTabDao $dao) { $this->dao = $dao; } /** * 系统设置头部分类读取 * @param int $pid * @param int $is_store * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getConfigTab(int $pid, int $is_store = 0) { $list = $this->dao->getConfigTabAll(['status' => 1, 'pid' => $pid, 'is_store' => $is_store], ['id', 'id as value', 'title as label', 'pid', 'icon', 'type'], $pid ? [] : [['type', '=', '0']]); return get_tree_children($list); } /** * 获取配置分类列表 * @param array $where * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getConfgTabList(array $where) { [$page, $limit] = $this->getPageValue(); $list = $this->dao->getConfgTabList($where, $page, $limit); $count = $this->dao->count($where); $menusValue = []; foreach ($list as $item) { $menusValue[] = $item->getData(); } $list = get_tree_children($menusValue); return compact('list', 'count'); } /** * 获取配置分类选择下拉树 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getSelectForm() { $menuList = $this->dao->getConfigTabAll([], ['id as value', 'pid', 'title as label']); $menus = [['value' => 0, 'label' => '顶级按钮']]; $list = get_tree_children($menuList, 'children', 'value'); $menus = array_merge($menus, $list); // foreach ($list as $menu) { // $menus[] = ['value' => $menu['id'], 'label' => $menu['html'] . $menu['title']]; // } return $menus; } /** * 创建form表单 * @param array $formData * @return array * @throws \FormBuilder\Exception\FormBuilderException * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function createConfigTabForm(array $formData = []) { $pid[] = isset($formData['pid']) ? $formData['pid'] : 0; $form[] = Form::radio('is_store', '类型', $formData['is_store'] ?? 0)->options([['value' => 0, 'label' => '总后台'], ['value' => 1, 'label' => '门店后台']]); $form[] = Form::cascader('pid', '父级分类', $pid)->data($this->getSelectForm())->changeOnSelect(true); $form[] = Form::input('title', '分类名称', $formData['title'] ?? ''); $form[] = Form::input('eng_title', '分类字段英文', $formData['eng_title'] ?? ''); $form[] = Form::frameInput('icon', '图标', $this->url(config('admin.admin_prefix') . '/widget.widgets/icon', ['fodder' => 'icon'], true), $formData['icon'] ?? '')->icon('ios-ionic')->height('435px'); $form[] = Form::radio('type', '类型', $formData['type'] ?? 0)->options([ ['value' => 0, 'label' => '系统'], ['value' => 3, 'label' => '其它'] ]); $form[] = Form::radio('status', '状态', $formData['status'] ?? 1)->options([['value' => 1, 'label' => '显示'], ['value' => 2, 'label' => '隐藏']]); $form[] = Form::number('sort', '排序', (int)($formData['sort'] ?? 0))->min(0); return $form; } /** * 添加配置分类表单 * @return array * @throws \FormBuilder\Exception\FormBuilderException */ public function createForm() { return create_form('添加配置分类', $this->createConfigTabForm(), $this->url('/setting/config_class')); } /** * 修改配置分类表单 * @param int $id * @return array * @throws \FormBuilder\Exception\FormBuilderException */ public function updateForm(int $id) { $configTabInfo = $this->dao->get($id); if (!$configTabInfo) { throw new AdminException('没有查到数据,无法修改!'); } return create_form('编辑配置分类', $this->createConfigTabForm($configTabInfo->toArray()), $this->url('/setting/config_class/' . $id), 'PUT'); } }