|
@@ -86,6 +86,7 @@ class Gift extends Backend
|
|
|
if(empty($gift_info)){
|
|
|
$this->error('不存在的礼物');
|
|
|
}
|
|
|
+ $jackpot_info = Db::name('egg_jackpot')->where('id',$jackpot_id)->find();
|
|
|
|
|
|
$data_all = [];
|
|
|
|
|
@@ -99,6 +100,7 @@ class Gift extends Backend
|
|
|
'prize_no' => 0,
|
|
|
'price' => $gift_info['price'],
|
|
|
'is_use' => 0,
|
|
|
+ 'starttime' => $jackpot_info['starttime'],
|
|
|
];
|
|
|
$data_all[] = $one;
|
|
|
}
|