Files
fast/application/admin/lang/zh-cn/zy/game/game_join.php
xiadc c9a8b9d5e8 feat(消息模块): 优化消息查询逻辑,支持俱乐部消息展示
- 修改了 User、Activity、Circle、Club 和 Game 控制器中的消息查询逻辑
- 增加了对俱乐部成员的判断,使得俱乐部消息能够展示给相关用户
- 调整了消息表中的字段名称,统一使用 user_id 替代 target_id
- 优化了订单创建流程,只在需要时创建订单
- 更新了活动模型中的 costKey 属性,以适应新的费用结构
- 添加了新的费用类型翻译,以支持多退少补等功能
2025-06-06 12:00:13 +08:00

29 lines
942 B
PHP
Raw Permalink 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
return [
'Act_id' => '活动id',
'Game_id' => '赛事id',
'User_id' => '用户id',
'Order_id' => '订单id',
'Users' => '参与用户',
'Status' => '状态',
'Create_time' => '创建时间',
'Update_time' => '修改时间',
'Activity.name' => '活动名称',
'Game.name' => '赛事名称',
'User.username' => '用户名',
'Order.order_sn' => '订单号',
'Status-1' => '取消',
'Status0' => '待支付',
'Status1' => '已支付',
'Cost10' => '报名时收取',
'Cost21' => '活动后收取:固定',
'Cost22' => '活动后收取AA',
'Cost23' => '活动后收取女固定男AA',
'Cost24' => '活动后收取AA男比女高X元',
'Cost25' => '活动后收取AA男比女高X%',
'Cost30' => '多退少补',
];