Files
huangjingfen/pro_v3.5.1/app/services/system/config/SystemGroupServices.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

88 lines
2.8 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\services\system\config;
use app\dao\system\config\SystemGroupDao;
use app\services\BaseServices;
use think\annotation\Inject;
/**
* 组合数据
* Class SystemGroupServices
* @package app\services\system\config
* @mixin SystemGroupDao
*/
class SystemGroupServices extends BaseServices
{
/**
* @var SystemGroupDao
*/
#[Inject]
protected SystemGroupDao $dao;
/**
* 获取组合数据列表
* @param array $where
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getGroupList(array $where, array $field = ['*'])
{
[$page, $limit] = $this->getPageValue();
$list = $this->dao->getGroupList($where, $field, $page, $limit);
$count = $this->dao->count($where);
foreach ($list as $key => $value) {
if (isset($value['fields'])) {
$list[$key]['typelist'] = $value['fields'];
unset($list[$key]['fields']);
}
}
return compact('list', 'count');
}
/**
* 获取组合数据tab下的header头部
* @param int $id
* @return array
*/
public function getGroupDataTabHeader(int $id)
{
$data = $this->getValueFields($id);
$header = [];
foreach ($data as $key => $item) {
if ($item['type'] == 'upload' || $item['type'] == 'uploads') {
$header[$key]['key'] = $item['title'];
$header[$key]['minWidth'] = 60;
$header[$key]['type'] = 'img';
} elseif ($item['title'] == 'url' || $item['title'] == 'wap_url' || $item['title'] == 'link' || $item['title'] == 'wap_link') {
$header[$key]['key'] = $item['title'];
$header[$key]['minWidth'] = 200;
} else {
$header[$key]['key'] = $item['title'];
$header[$key]['minWidth'] = 100;
}
$header[$key]['title'] = $item['name'];
}
array_unshift($header, ['key' => 'id', 'title' => '编号', 'width' => 55]);
array_push($header, ['slot' => 'status', 'title' => '是否可用', 'minWidth' => 80], ['key' => 'sort', 'title' => '排序', 'minWidth' => 80], ['slot' => 'action', 'fixed' => 'right', 'title' => '操作', 'minWidth' => 120]);
return compact('header');
}
/**
* 获取组合数据fields字段
* @param int $id
* @return array|mixed
*/
public function getValueFields(int $id)
{
return json_decode($this->dao->value(['id' => $id], 'fields'), true) ?: [];
}
}