feat(shopro): 中羿体育活动报名费处理

- 新增报名费商品类别和商品创建逻辑
- 实现报名费价格动态更新
- 添加活动报名功能
- 优化 SkuPrice trait 中的 sku 处理逻辑
- 修复活动列表和详情页面的一些小问题
This commit is contained in:
2025-05-30 14:39:30 +08:00
parent 94a540ac96
commit 6e655c6121
4 changed files with 109 additions and 29 deletions

View File

@@ -8,14 +8,14 @@ use think\Model;
class Activity extends Model
{
// 表名
protected $table = 'zy_activity';
public static $tableName = 'zy_activity';
// 自动写入时间戳字段
protected $autoWriteTimestamp = false;
@@ -25,15 +25,14 @@ class Activity extends Model
protected $deleteTime = false;
// 追加属性
protected $append = [
];
protected $append = [];
public $costKey = ['man' => '男报名费', 'woman' => '女报名费', 'extra' => '附加费', 'server' => '服务费'];
public function stadium()
{