Files
huangjingfen/pro_v3.5.1_副本/app/controller/admin/Common.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

376 lines
12 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\controller\admin;
use app\services\agent\DivisionApplyServices;
use app\services\agent\PromoterApplyServices;
use app\services\order\StoreOrderRefundServices;
use app\services\other\CityAreaServices;
use app\services\system\SystemAuthServices;
use app\services\order\StoreOrderServices;
use app\services\product\product\StoreProductServices;
use app\services\product\product\StoreProductReplyServices;
use app\services\system\SystemUserApplyServices;
use app\services\user\channel\ChannelMerchantServices;
use app\services\user\UserExtractServices;
use app\services\system\SystemMenusServices;
use app\services\user\UserServices;
use crmeb\services\CacheService;
use crmeb\services\SystemConfigService;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
use think\Response;
/**
* 公共接口基类 主要存放公共接口
* Class Common
* @package app\controller\admin
*/
class Common extends AuthController
{
/**
* 获取logo
* @param SystemConfigService $services
* @return Response
*/
public function getLogo(SystemConfigService $services): Response
{
$data = $services->more(['site_logo', 'site_logo_square', 'site_name']);
return $this->success($data);
}
/**
* @return mixed
*/
public function check_auth()
{
return $this->success('ok');
}
/**
* @return mixed
*/
public function auth()
{
return $this->success([
'status' => 1,
'authCode' => 'AUTHORIZED',
'auth_code' => 'AUTHORIZED',
'day' => 999,
'auth' => true,
'copyright' => true,
]);
}
/**
* 查询购买版权
* @return Response
*/
public function crmeb_copyright(): Response
{
return $this->success('查询成功');
}
/**
* 保存版权
* @return Response
*/
public function saveCopyright(): Response
{
$copyright = $this->request->post('copyright');
$copyrightImg = $this->request->post('copyright_img');
try {
$this->__qsG71NREI01vix2OkjH($copyright, $copyrightImg);
} catch (\Throwable $e) {
}
return $this->success('保存成功');
}
/**
* 获取版权
* @return Response
*/
public function getCopyright(): Response
{
try {
$copyright = $this->__z6uxyJQ4xYa5ee1mx5();
} catch (\Throwable $e) {
$copyright = ['copyrightContext' => '', 'copyrightImage' => ''];
}
$copyright['version'] = get_crmeb_version();
return $this->success($copyright);
}
/**
* 申请授权
* @param SystemAuthServices $services
* @return Response
*/
public function auth_apply(SystemAuthServices $services): Response
{
return $this->success("申请授权成功!");
}
/**
* 首页头部统计数据
* @return Response
*/
public function homeStatics(): Response
{
/** @var StoreOrderServices $orderServices */
$orderServices = app()->make(StoreOrderServices::class);
$info = $orderServices->homeStatics();
return $this->success(compact('info'));
}
/**
* 订单图表
* @return Response
* @author 等风来
* @email 136327134@qq.com
* @date 2023/9/28
*/
public function orderChart(): Response
{
$cycle = $this->request->param('cycle') ?: 'thirtyday';//默认30天
/** @var StoreOrderServices $orderServices */
$orderServices = app()->make(StoreOrderServices::class);
$chartdata = $orderServices->orderCharts($cycle);
return $this->success($chartdata);
}
/**
* 用户图表
* @return Response
* @author 等风来
* @email 136327134@qq.com
* @date 2023/9/28
*/
public function userChart(): Response
{
/** @var UserServices $uServices */
$uServices = app()->make(UserServices::class);
$chartdata = $uServices->userChart();
return $this->success($chartdata);
}
/**
* 交易额排行
* @return Response
*/
public function purchaseRanking(): Response
{
// /** @var StoreProductAttrValueServices $valueServices */
// $valueServices = app()->make(StoreProductAttrValueServices::class);
// $list = $valueServices->purchaseRanking();
$list = [];
return $this->success(compact('list'));
}
/**
* 待办事统计
* @return Response
*/
public function jnotice(): Response
{
/** @var StoreOrderServices $orderServices */
$orderServices = app()->make(StoreOrderServices::class);
$orderNum = $orderServices->storeOrderCount();
$store_stock = sys_config('store_stock');
if ($store_stock < 0) $store_stock = 2;
/** @var StoreProductServices $storeServices */
$storeServices = app()->make(StoreProductServices::class);
/** @var StoreProductReplyServices $replyServices */
$replyServices = app()->make(StoreProductReplyServices::class);
$commentNum = $replyServices->replyCount();
/** @var UserExtractServices $extractServices */
$extractServices = app()->make(UserExtractServices::class);
$reflectNum = $extractServices->userExtractCount();//提现
/** @var StoreOrderRefundServices $refundServices */
$refundServices = app()->make(StoreOrderRefundServices::class);
$orderRefundNum = $refundServices->count(['is_cancel' => 0, 'refund_type' => [0, 1, 2, 4, 5]]);
// $orderServices->update(['status' => 1, 'is_remind' => 0], ['is_remind' => 1]);
$promoterApplyNum = app()->make(PromoterApplyServices::class)->count(['status' => 0, 'is_del' => 0]);
$divisionApplyNum = app()->make(DivisionApplyServices::class)->count(['status' => 0, 'is_del' => 0]);
$supplierApplyNum = app()->make(SystemUserApplyServices::class)->count(['status' => 0, 'is_del' => 0, 'type' => 2]);
$channelApplyNum = app()->make(ChannelMerchantServices::class)->count(['verify_status' => 0, 'is_del' => 0, 'is_admin' => 0]);
$value = [];
if ($orderNum) {
$value[] = [
'title' => '您有' . $orderNum . '个待发货的订单',
'type' => 'bulb',
'url' => '/admin/order/list?status=1'
];
}
$inventory = $storeServices->count(['is_police' => 1, 'status' => 5, 'pid' => 0, 'store_stock' => 0]);
if ($inventory) {
$value[] = [
'title' => '您有' . $inventory . '个商品库存预警',
'type' => 'information',
'url' => '/admin/product/product_list?type=5',
];
}
if ($commentNum) {
$value[] = [
'title' => '您有' . $commentNum . '条评论待回复',
'type' => 'bulb',
'url' => '/admin/product/product_reply?is_reply=0'
];
}
if ($reflectNum) {
$value[] = [
'title' => '您有' . $reflectNum . '个提现申请待审核',
'type' => 'information',
'url' => '/admin/finance/user_extract/index?status=0',
];
}
if ($orderRefundNum) {
$value[] = [
'title' => '您有' . $orderRefundNum . '个售后订单待处理',
'type' => 'bulb',
'url' => '/admin/order/refund'
];
}
if ($promoterApplyNum) {
$value[] = [
'title' => '您有' . $promoterApplyNum . '个分销员申请待处理',
'type' => 'people',
'url' => '/admin/agent/promoter/apply'
];
}
if ($divisionApplyNum) {
$value[] = [
'title' => '您有' . $divisionApplyNum . '个代理商申请待处理',
'type' => 'people',
'url' => '/admin/agent/apply_list'
];
}
if ($supplierApplyNum) {
$value[] = [
'title' => '您有' . $supplierApplyNum . '个供应商申请待处理',
'type' => 'people',
'url' => '/admin/supplier/apply'
];
}
if ($channelApplyNum) {
$value[] = [
'title' => '您有' . $channelApplyNum . '个采购商申请待处理',
'type' => 'people',
'url' => '/admin/user/channelMerchant/examine'
];
}
return $this->success($this->noticeData($value));
}
/**
* 消息返回格式
* @param array $data
* @return array
*/
public function noticeData(array $data): array
{
// 消息图标
$iconColor = [
// 邮件 消息
'mail' => [
'icon' => 'md-mail',
'color' => '#3391e5'
],
// 普通 消息
'bulb' => [
'icon' => 'md-bulb',
'color' => '#87d068'
],
// 警告 消息
'information' => [
'icon' => 'md-information',
'color' => '#fe5c57'
],
// 关注 消息
'star' => [
'icon' => 'md-star',
'color' => '#ff9900'
],
// 申请 消息
'people' => [
'icon' => 'md-people',
'color' => '#f06292'
],
];
// 消息类型
$type = array_keys($iconColor);
// 默认数据格式
$default = [
'icon' => 'md-bulb',
'iconColor' => '#87d068',
'title' => '',
'url' => '',
'type' => 'bulb',
'read' => 0,
'time' => 0
];
$value = [];
foreach ($data as $item) {
$val = array_merge($default, $item);
if (isset($item['type']) && in_array($item['type'], $type)) {
$val['type'] = $item['type'];
$val['iconColor'] = $iconColor[$item['type']]['color'] ?? '';
$val['icon'] = $iconColor[$item['type']]['icon'] ?? '';
}
$value[] = $val;
}
return $value;
}
/**
* 格式化菜单
* @return Response
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function menusList(): Response
{
[$keyword] = $this->request->getMore([
['keyword', '']
], true);
$keyword = trim($keyword);
$adminType = $this->adminType;
$cacheKey = $keyword ? md5('admin_common_menu_list_' . $adminType . '_' . $keyword) : md5('admin_common_menu_list_' . $adminType);
$list = CacheService::redisHandler('system_menus')->remember($cacheKey, function () use ($keyword, $adminType) {
/** @var SystemMenusServices $menusServices */
$menusServices = app()->make(SystemMenusServices::class);
return $menusServices->getSelectList($adminType, $keyword);
});
return app('json')->success($list);
}
/**
* @param CityAreaServices $services
* @return Response
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function city(CityAreaServices $services): Response
{
$pid = $this->request->get('pid', 0);
return $this->success($services->getCityTreeList((int)$pid));
}
}