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
183 lines
5.5 KiB
PHP
183 lines
5.5 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
declare (strict_types=1);
|
||
|
||
namespace app\services\activity\seckill;
|
||
|
||
|
||
use app\dao\activity\seckill\StoreSeckillTimeDao;
|
||
use app\services\BaseServices;
|
||
use crmeb\exceptions\AdminException;
|
||
use crmeb\services\FormBuilder as Form;
|
||
use FormBuilder\Factory\Iview;
|
||
use think\annotation\Inject;
|
||
use think\facade\Route as Url;
|
||
|
||
/**
|
||
* 秒杀时间
|
||
* Class StoreSeckillTimeServices
|
||
* @package app\services\activity\seckill
|
||
* @mixin StoreSeckillTimeDao
|
||
*/
|
||
class StoreSeckillTimeServices extends BaseServices
|
||
{
|
||
|
||
/**
|
||
* @var StoreSeckillTimeDao
|
||
*/
|
||
#[Inject]
|
||
protected StoreSeckillTimeDao $dao;
|
||
|
||
/**
|
||
* 获取当前的秒杀时间time
|
||
* @return int
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getSeckillTime()
|
||
{
|
||
$seckillTime = $this->time_list();
|
||
$currentHour = date('Hi');
|
||
$time = 0;
|
||
foreach ($seckillTime as $value) {
|
||
$start = str_replace(':', '', $value['start_time']);
|
||
$end = str_replace(':', '', $value['end_time']);
|
||
if ($currentHour >= $start && $currentHour < $end) {
|
||
$time = $value['id'];
|
||
}
|
||
}
|
||
return (int)$time;
|
||
}
|
||
|
||
/**
|
||
* 获取列表
|
||
* @param array $where
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function systemPage(array $where)
|
||
{
|
||
[$page, $limit] = $this->getPageValue();
|
||
$list = $this->dao->getList($where, '*', $page, $limit);
|
||
$count = $this->dao->count($where);
|
||
foreach ($list as &$item) {
|
||
$item['start_time'] = substr_replace($item['start_time'], ':', 2, 0);
|
||
$item['end_time'] = substr_replace($item['end_time'], ':', 2, 0);
|
||
}
|
||
return compact('list', 'count');
|
||
}
|
||
|
||
/**
|
||
* 可用秒杀时间段
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function time_list()
|
||
{
|
||
$list = $this->dao->getList(['status' => 1], 'id,title,start_time,end_time,pic');
|
||
foreach ($list as &$item) {
|
||
$item['start_time'] = substr_replace($item['start_time'], ':', 2, 0);
|
||
$item['end_time'] = substr_replace($item['end_time'], ':', 2, 0);
|
||
$item['slide'] = $item['pic'];
|
||
};
|
||
return $list;
|
||
}
|
||
|
||
/**
|
||
* 验证时间是否重复
|
||
* @param array $where
|
||
* @param int $id
|
||
* @return bool
|
||
* @throws \think\db\exception\DbException
|
||
*/
|
||
public function checkTime(array $where, int $id)
|
||
{
|
||
if (!$this->dao->valStartTime($where['start_time'], $id) && !$this->dao->valEndTime($where['end_time'], $id) && !$this->dao->valAllTime($where, $id)) return true;
|
||
return false;
|
||
}
|
||
|
||
/**
|
||
* 获取秒杀时间
|
||
* @param int $id
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getInfo(int $id)
|
||
{
|
||
$info = $this->dao->get($id);
|
||
if (!$info) {
|
||
throw new AdminException('数据不存在');
|
||
}
|
||
$info = $info->toArray();
|
||
$info['time'] = [
|
||
substr_replace($info['start_time'], ':', 2, 0) . ':00',
|
||
substr_replace($info['end_time'], ':', 2, 0) . ':00'
|
||
];
|
||
return $info;
|
||
}
|
||
|
||
|
||
/**
|
||
* 添加、编辑表单
|
||
* @param int $id
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function createForm(int $id)
|
||
{
|
||
$info = [];
|
||
if ($id) {
|
||
$info = $this->getInfo($id);
|
||
}
|
||
$f[] = Form::input('title', '标题:', $info['title'] ?? '')->required();
|
||
$f[] = Form::timeRange('time', '时间选择:', $info['time'][0] ?? '', $info['time'][1] ?? '')->prop('picker-options', ['format' => 'HH'])->appendValidate(Iview::validateArr()->required()->message('请选择时间'))->format('HH:mm');
|
||
// $f[] = Form::frameImage('pic', '图片', Url::buildUrl('admin/widget.images/index', array('fodder' => 'pic')), $info['pic'] ?? '')->icon('ios-add')->width('960px')->height('505px')->modal(['footer-hide' => true])->appendValidate(Iview::validateStr()->required()->message('请选择图片'));
|
||
$f[] = Form::radio('status', '状态:', $info['status'] ?? 1)->options([['label' => '显示', 'value' => 1], ['label' => '隐藏', 'value' => 0]]);
|
||
$f[] = Form::input('describe', '描述:',$info['describe'] ?? '')->required();
|
||
return create_form($id ? '编辑' : '添加秒杀时间', $f, $this->url('/marketing/seckill/time/' . $id), 'POST');
|
||
}
|
||
|
||
/**
|
||
* 组合4位秒杀时间
|
||
* @param $time
|
||
* @return array|string|string[]
|
||
*/
|
||
public function changeTime($time)
|
||
{
|
||
$str_time = '';
|
||
switch (strlen($time)) {
|
||
case 1:
|
||
$str_time = '0' . $time . '00';
|
||
break;
|
||
case 2:
|
||
$str_time = $time . '00';
|
||
break;
|
||
case 3:
|
||
$str_time = '0' . $time;
|
||
break;
|
||
case 4:
|
||
$str_time = $time;
|
||
break;
|
||
}
|
||
return substr_replace($str_time, ':', 2, 0);
|
||
}
|
||
|
||
}
|