87 lines
2.8 KiB
PHP
87 lines
2.8 KiB
PHP
<?php
|
||
/**
|
||
* 格式化数据结构类
|
||
*
|
||
* @author:刘孝全
|
||
* @email:q8197264@126.com
|
||
* @date :2023年03月3日
|
||
*/
|
||
namespace app\common\controller;
|
||
|
||
class FormatList
|
||
{
|
||
/**
|
||
* 无线级分类处理
|
||
*
|
||
* @param array $data 数据源
|
||
* @param string $idName 主键
|
||
* @param string $fieldName 父级字段
|
||
* @param string $childrenKey 子级字段名
|
||
* @param array $option 重命名字段 id 与 name
|
||
* @return array
|
||
*
|
||
* @date 2023-03-3
|
||
*/
|
||
static function FormatCategory(array $data, string $idName = "id", string $parentId = 'pid', string $fieldName='name', $childrenKey = 'children', ?string $addId='', ?string $addtitle='')
|
||
{
|
||
if (empty($data))return [];
|
||
|
||
$items = [];
|
||
foreach ($data as $item) {
|
||
if (!empty($addId))
|
||
$item[$addId] = $item[$idName];
|
||
if (!empty($addtitle))
|
||
$item[$addtitle] = $item[$fieldName];
|
||
$items[$item[$idName]] = $item;
|
||
}
|
||
$result = array();
|
||
foreach ($items as $item) {
|
||
if (isset($items[$item[$parentId]])) {
|
||
$items[$item[$parentId]][$childrenKey][] = &$items[$item[$idName]];
|
||
|
||
//--begin-
|
||
//因前端js Tree组件待性,父节点checked,其所属子孙节点会全部为checked状态, 所以此处去除所有父节点的checked
|
||
if (isset($items[$item[$parentId]]['checked'])&& $items[$item[$parentId]]['checked']) {
|
||
$items[$item[$parentId]]['checked'] = false;
|
||
}
|
||
//--end--
|
||
|
||
} else if ($item[$parentId] == 0) {
|
||
$result[] = &$items[$item[$idName]];
|
||
}
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
/**
|
||
* 递归排序,用于下拉分类选择菜单
|
||
*
|
||
* @param array $data 数据源
|
||
* @param string $idName 主键
|
||
* @param string $fieldName 父级字段
|
||
* @param string $childrenKey 子级字段名
|
||
* @return array
|
||
*
|
||
* @date 2023-03-3
|
||
*/
|
||
static function DropDownMenu($data, $pid = 0, $level=-1)
|
||
{
|
||
/*记录排序后的类别数组*/
|
||
static $list = array();
|
||
static $space = ['','├─','§§├─','§§§§├─','§§§§§§├─'];
|
||
$level++;
|
||
foreach ($data as $k => $v) {
|
||
if ($v['pid'] == $pid) {
|
||
if ($pid != 0) {
|
||
$v['title'] = isset($v['title'])?$v['title']:'';
|
||
$v['title'] = $space[$level] . $v['title'];
|
||
}
|
||
/*将该类别的数据放入list中*/
|
||
$list[] = $v;
|
||
self::DropDownMenu($data, $v['id'],$level);
|
||
}
|
||
}
|
||
|
||
return $list;
|
||
}
|
||
} |