Files
huangjingfen/pro_v3.5.1_副本/app/services/system/SystemMenusServices.php
apple 434aa8c69d feat(fsgx): 完成全部24项开发任务 Phase1-7
Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods

Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口

Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则

Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)

Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口

Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单

Made-with: Cursor
2026-03-23 22:32:19 +08:00

375 lines
14 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\system;
use app\dao\system\SystemMenusDao;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
use crmeb\services\FormBuilder as Form;
use crmeb\utils\Arr;
use think\annotation\Inject;
/**
* 权限菜单
* Class SystemMenusServices
* @package app\services\system
* @mixin SystemMenusDao
*/
class SystemMenusServices extends BaseServices
{
/**
* @var SystemMenusDao
*/
#[Inject]
protected SystemMenusDao $dao;
/**
* 获取菜单没有被修改器修改的数据
* @param $menusList
* @return array
*/
public function getMenusData($menusList)
{
$data = [];
foreach ($menusList as $item) {
// $item['expand'] = true;
$item['selected'] = false;
$item['title'] = $item['menu_name'];
$data[] = $item->getData();
}
return $data;
}
/**
* 获取后台权限菜单和权限
* @param $rouleId
* @param int $level
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getMenusList($rouleId, int $level, int $type = 1)
{
/** @var SystemRoleServices $systemRoleServices */
$systemRoleServices = app()->make(SystemRoleServices::class);
$rules = $systemRoleServices->getRoleArray(['status' => 1, 'id' => $rouleId], 'rules');
$rulesStr = Arr::unique($rules);
$menusList = $this->dao->getMenusRoule(['type' => $type, 'route' => $level ? $rulesStr : '']);
$unique = $this->dao->getMenusUnique(['type' => $type, 'unique' => $level ? $rulesStr : '']);
return [Arr::getMenuIviewList($this->getMenusData($menusList)), $unique];
}
/**
* 获取后台菜单树型结构列表
* @param array $where
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getList(array $where)
{
$menusList = $this->dao->getMenusList($where);
$menusList = $this->getMenusData($menusList);
return get_tree_children($menusList);
}
/**
* 获取form表单所需要的所要的菜单列表
* @return array[]
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
protected function getFormSelectMenus()
{
$menuList = $this->dao->getMenusRoule(['is_del' => 0], ['id', 'pid', 'menu_name']);
$list = get_tree_children($this->getMenusData($menuList), '0', 'pid', 'id');
$menus = [['value' => 0, 'label' => '顶级按钮']];
foreach ($list as $menu) {
$menus[] = ['value' => $menu['id'], 'label' => $menu['html'] . $menu['menu_name']];
}
return $menus;
}
/**
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
protected function getFormCascaderMenus(int $value = 0, int $type = 1)
{
$menuList = $this->dao->getMenusRoule(['is_del' => 0, 'type' => $type], ['id as value', 'pid', 'menu_name as label']);
$menuList = $this->getMenusData($menuList);
if ($value) {
$data = get_tree_value($menuList, $value);
} else {
$data = [];
}
return [get_tree_children($menuList, 'children', 'value'), array_reverse($data)];
}
/**
* 创建权限规格生表单
* @param array $formData
* @return mixed
* @throws \FormBuilder\Exception\FormBuilderException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function createMenusForm(array $formData = [], int $type = 1)
{
$field[] = Form::hidden('type', $type);
$field[] = Form::input('menu_name', '按钮名称', $formData['menu_name'] ?? '')->required('按钮名称必填');
// $field[] = Form::select('pid', '父级id', $formData['pid'] ?? 0)->setOptions($this->getFormSelectMenus())->filterable(1);
$field[] = Form::input('menu_path', '路由名称', $formData['menu_path'] ?? '')->placeholder('请输入前台跳转路由地址')->required('请填写前台路由地址');
$field[] = Form::input('unique_auth', '权限标识', $formData['unique_auth'] ?? '')->placeholder('不填写则后台自动生成');
$params = $formData['params'] ?? '';
$field[] = Form::input('params', '参数', is_array($params) ? '' : $params)->placeholder('举例:a/123/b/234');
$field[] = Form::frameInput('icon', '图标', $this->url('admin/widget.widgets/icon', ['fodder' => 'icon']), $formData['icon'] ?? '')->icon('md-add')->height('500px');
$field[] = Form::number('sort', '排序', (int)($formData['sort'] ?? 0))->min(0);
$field[] = Form::radio('auth_type', '类型', $formData['auth_type'] ?? 1)->options([['value' => 2, 'label' => '接口'], ['value' => 1, 'label' => '菜单(菜单只显示三级)']]);
$field[] = Form::radio('is_show', '状态', $formData['is_show'] ?? 1)->options([['value' => 0, 'label' => '关闭'], ['value' => 1, 'label' => '开启']]);
$field[] = Form::radio('is_show_path', '是否为前端隐藏菜单', $formData['is_show_path'] ?? 0)->options([['value' => 1, 'label' => '是'], ['value' => 0, 'label' => '否']]);
[$menuList, $data] = $this->getFormCascaderMenus((int)($formData['pid'] ?? 0), $type);
$field[] = Form::cascader('menu_list', '父级id', $data)->data($menuList)->filterable(true);
return $field;
}
/**
* 新增权限表单
* @return array
* @throws \FormBuilder\Exception\FormBuilderException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function createMenus(int $type = 1)
{
return create_form('添加权限', $this->createMenusForm([], $type), $this->url('/setting/save'));
}
/**
* 修改权限菜单
* @param int $id
* @return array
* @throws \FormBuilder\Exception\FormBuilderException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function updateMenus(int $id)
{
$menusInfo = $this->dao->get($id);
if (!$menusInfo) {
throw new AdminException('数据不存在');
}
$menusInfo = $menusInfo->getData();
return create_form('修改权限', $this->createMenusForm($menusInfo, $menusInfo['type'] ?? 1), $this->url('/setting/update/' . $id), 'PUT');
}
/**
* 获取一条数据
* @param int $id
* @return mixed
*/
public function find(int $id)
{
$menusInfo = $this->dao->get($id);
if (!$menusInfo) {
throw new AdminException('数据不存在');
}
$menu = $menusInfo->getData();
$menu['pid'] = (int)$menu['pid'];
$menu['auth_type'] = (int)$menu['auth_type'];
$menu['is_header'] = (int)$menu['is_header'];
$menu['is_show'] = (int)$menu['is_show'];
$menu['is_show_path'] = (int)$menu['is_show_path'];
if (!$menu['path']) {
[$menuList, $data] = $this->getFormCascaderMenus($menu['pid']);
$menu['path'] = $data;
} else {
$menu['path'] = explode('/', $menu['path']);
if (is_array($menu['path'])) {
$menu['path'] = array_map(function ($item) {
return (int)$item;
}, $menu['path']);
}
}
return $menu;
}
/**
* 删除菜单
* @param int $id
* @return mixed
*/
public function delete(int $id)
{
if ($this->dao->count(['pid' => $id])) {
throw new AdminException('请先删除改菜单下的子菜单');
}
return $this->dao->delete($id);
}
/**
* 获取添加身份规格
* @param $roles
* @param int $type
* @param int $is_show
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getMenus($roles, int $type = 1, int $is_show = 1): array
{
$field = ['menu_name', 'pid', 'id'];
$where = ['is_del' => 0, 'type' => $type];
if ($is_show) $where['is_show'] = 1;
if (!$roles) {
$menus = $this->dao->getMenusRoule($where, $field);
} else {
/** @var SystemRoleServices $service */
$service = app()->make(SystemRoleServices::class);
//拼接有长度限制
// $ids = $service->value([['id', 'in', $roles]], 'GROUP_CONCAT(rules) as ids');
$roles = is_string($roles) ? explode(',', $roles) : $roles;
$ids = $service->getRoleIds($roles);
$menus = $this->dao->getMenusRoule(['rule' => $ids] + $where, $field);
}
return $this->tidyMenuTier(false, $menus);
}
/**
* 组合菜单数据
* @param bool $adminFilter
* @param $menusList
* @param int $pid
* @param array $navList
* @return array
*/
public function tidyMenuTier(bool $adminFilter = false, $menusList = [], int $pid = 0, array $navList = []): array
{
foreach ($menusList as $k => $menu) {
$menu = $menu->getData();
$menu['title'] = $menu['menu_name'];
unset($menu['menu_name']);
if ($menu['pid'] == $pid) {
unset($menusList[$k]);
$menu['children'] = $this->tidyMenuTier($adminFilter, $menusList, $menu['id']);
if ($pid == 0 && !count($menu['children'])) continue;
if ($menu['children']) $menu['expand'] = true;
$navList[] = $menu;
}
}
return $navList;
}
/**
* 获取菜单选择列表
* @param int $type 菜单类型
* @param string $keyword 搜索关键词
* @return array
*/
public function getSelectList(int $type = 1, string $keyword = '')
{
// 获取搜索列表
$_list = $this->dao->getSearchList($type, $keyword);
$list = [];
$ids = [];
foreach ($_list as $key => $v) {
$menu = json_decode($v, true);
$pid = $v->getData('pid');
$menu['p_id'] = $pid;
$list[$key] = $menu;
$path = explode('/', $menu['path']);
$ids = array_merge($ids, $path);
}
// 去除重复的id
$ids = array_filter(array_unique($ids));
// 合并PID列表查询
$pidList = [];
if ($ids) {
$_pidList = $this->dao->search(['id' => $ids])->select();
foreach ($_pidList as $key => $v) {
$menu = json_decode($v, true);
$pid = $v->getData('pid');
$menu['p_id'] = $pid;
$pidList[$key] = $menu;
}
}
// 合并pidList到原始列表
$list = array_merge($list, $pidList);
// 获取符合条件的counts当前显示的有效菜单项
$counts = $this->dao->getColumn([
'is_show' => 1,
'auth_type' => 1,
'is_del' => 0,
'is_show_path' => 0,
'keywords' => $keyword
], 'pid', '', true);
// 获取p_counts菜单路径中有效的PID
$p_counts = $this->dao->getColumn([
'id' => $ids
], 'pid', '', true);
// 合并counts和p_counts
$counts = array_merge($counts, $p_counts);
// 对菜单列表进行排序处理
$sortList = $this->sortListTier($list);
// 返回最终结果
$data = [];
foreach ($sortList as $item) {
if (!in_array($item['id'], $counts)) {
$data[$item['id']] = $item;
$data[$item['id']]['menu_name'] = isset($item['p_name']) && $item['p_name'] ? $item['p_name'] : $item['menu_name'];
$data[$item['id']]['type'] = 0;
}
}
return $data;
}
/**
* 递归排序菜单层级并拼接父级名称
* @param array $menuData 菜单数据引用
* @param int $pid 父级ID
* @param string $p_name 父级名称
* @return array
*/
public function sortListTier(&$menuData, $pid = 0, $p_name = '')
{
foreach ($menuData as &$menu) {
if ($menu['p_id'] == $pid) {
// 拼接父级名称
$menu['p_name'] = $p_name ? $p_name . '-' . $menu['menu_name'] : $menu['menu_name'];
// 递归查找子菜单
$this->sortListTier($menuData, $menu['id'], $menu['p_name']);
}
}
return $menuData;
}
}