[色子游戏]玩家购买抽奖记录-优化样式

This commit is contained in:
2026-03-03 15:28:13 +08:00
parent 1b62a4f3e0
commit c02d19b1fd
8 changed files with 424 additions and 42 deletions

View File

@@ -22,6 +22,7 @@ class DicePlayerCoinRecordValidate extends BaseValidate
'total_draw_count' => 'require',
'paid_draw_count' => 'require',
'free_draw_count' => 'require',
'remark' => 'require',
];
/**
@@ -33,6 +34,7 @@ class DicePlayerCoinRecordValidate extends BaseValidate
'total_draw_count' => '总抽奖次数必须填写',
'paid_draw_count' => '购买抽奖次数必须填写',
'free_draw_count' => '赠送抽奖次数必须填写',
'remark' => '备注必须填写',
];
/**
@@ -45,6 +47,7 @@ class DicePlayerCoinRecordValidate extends BaseValidate
'total_draw_count',
'paid_draw_count',
'free_draw_count',
'remark',
],
'update' => [
'player_id',
@@ -52,6 +55,7 @@ class DicePlayerCoinRecordValidate extends BaseValidate
'total_draw_count',
'paid_draw_count',
'free_draw_count',
'remark',
],
];