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

267 lines
7.8 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\v1\out;
use app\controller\admin\AuthController;
use app\services\out\OutAccountServices;
use app\services\out\OutInterfaceServices;
use think\annotation\Inject;
/**
* 对外接口账户
* Class SystemCity
* @package app\controller\admin\v1\setting
*/
class SystemOut extends AuthController
{
/**
* @var OutAccountServices
*/
#[Inject]
protected OutAccountServices $services;
/**
* 账号信息
* @return string
* @throws \Exception
*/
public function index()
{
$where = $this->request->getMore([
['name', '', ''],
['status', ''],
]);
return $this->success($this->services->getList($where));
}
/**
* 修改状态
* @param string $status
* @param string $id
* @return mixed
*/
public function set_status($id = '', $status = '')
{
if ($status == '' || $id == '') return $this->fail('缺少参数');
$this->services->update($id, ['status' => $status]);
return $this->success($status == 1 ? '开启成功' : '禁用成功');
}
/**
* 删除
* @param $id
* @return mixed
*/
public function delete($id)
{
if ($id == '') return $this->fail('缺少参数');
$this->services->update($id, ['is_del' => 1]);
return $this->success('删除成功!');
}
/**
* 获取对外接口账号详情
* @param int $id 账号ID
* @return mixed
*/
public function info($id)
{
return $this->success($this->services->getOne(['id' => $id]));
}
/**
* 添加保存
* @return mixed
*/
public function save()
{
$data = $this->request->postMore([
[['appid', 's'], ''],
[['appsecret', 's'], ''],
[['title', 's'], ''],
['rules', []],
]);
if (!$data['appid']) {
return $this->fail('参数错误');
}
if ($this->services->getOne(['appid' => $data['appid'], 'is_del' => 0])) return $this->fail('账号重复');
if (!$data['appsecret']) {
unset($data['appsecret']);
} else {
$data['apppwd'] = $data['appsecret'];
$data['appsecret'] = password_hash($data['appsecret'], PASSWORD_DEFAULT);
}
$data['rules'] = json_encode($data['rules']);
$data['add_time'] = time();
if (!$this->services->save($data)) {
return $this->fail('添加失败');
} else {
return $this->success('添加成功');
}
}
/**
* 修改保存
* @param string $id
* @return mixed
*/
public function update($id = '')
{
$data = $this->request->postMore([
[['appid', 's'], ''],
[['appsecret', 's'], ''],
[['title', 's'], ''],
['rules', []],
]);
if (!$data['appid']) {
return $this->fail('参数错误');
}
if (!$data['appsecret']) {
unset($data['appsecret']);
} else {
$data['apppwd'] = $data['appsecret'];
$data['appsecret'] = password_hash($data['appsecret'], PASSWORD_DEFAULT);
}
if (!$this->services->getOne(['id' => $id])) return $this->fail('没有此账号');
$data['rules'] = json_encode($data['rules']);
$res = $this->services->update($id, $data);
if (!$res) {
return $this->fail('修改失败');
} else {
return $this->success('修改成功!');
}
}
/**
* 对外接口权限
* @param OutInterfaceServices $service
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function outInterfaceList(OutInterfaceServices $service)
{
return $this->success($service->outInterfaceList());
}
/**
* 设置推送接口
* @param $id
* @return mixed
*/
public function outSetUpSave($id)
{
$data = $this->request->postMore([
['push_open', 0],
['push_account', ''],
['push_password', ''],
['push_token_url', ''],
['user_update_push', ''],
['order_create_push', ''],
['order_pay_push', ''],
['refund_create_push', ''],
['refund_cancel_push', ''],
]);
$this->services->outSetUpSave($id, $data);
return $this->success('设置成功');
}
/**
* 测试获取token接口
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function textOutUrl()
{
$data = $this->request->postMore([
['push_account', 0],
['push_password', 0],
['push_token_url', '']
]);
return $this->success('测试成功',$this->services->textOutUrl($data));
}
/**
* 对外接口文档
* @param $id
* @param OutInterfaceServices $service
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function interfaceInfo($id, OutInterfaceServices $service)
{
return app('json')->success($service->interfaceInfo($id));
}
/**
* 保存接口文档
* @param $id
* @param OutInterfaceServices $service
* @return mixed
*/
public function saveInterface($id, OutInterfaceServices $service)
{
$data = $this->request->postMore([
['pid', 0], //上级id
['type', 0], //类型 0菜单 1接口
['name', ''], //名称
['describe', ''], //说明
['method', ''], //方法
['url', ''], //链接地址
['request_params', []], //请求参数
['return_params', []], //返回参数
['request_example', ''], //请求示例
['return_example', ''], //返回示例
['error_code', []] //错误码
]);
$service->saveInterface((int)$id, $data);
return app('json')->success('保存成功');
}
/**
* 修改接口名称
* @param OutInterfaceServices $service
* @return mixed
*/
public function editInterfaceName(OutInterfaceServices $service)
{
$data = $this->request->postMore([
['id', 0], //上级id
['name', ''], //名称
]);
if (!$data['id'] || !$data['name']) {
return app('json')->success('参数错误');
}
$service->editInterfaceName($data);
return app('json')->success('修改成功');
}
/**
* 删除接口
* @param $id
* @param OutInterfaceServices $service
* @return mixed
*/
public function delInterface($id, OutInterfaceServices $service)
{
if (!$id) return app('json')->success('参数错误');
$service->delInterface($id);
return app('json')->success('删除成功');
}
}