新需求: 盲盒转盘开发-转盘抽奖接口开发-抽奖记录接口 -送礼接口调整

This commit is contained in:
2025-08-19 18:09:48 +08:00
parent 2767f64a67
commit 251ffc84a8
4 changed files with 274 additions and 113 deletions

View File

@@ -184,6 +184,8 @@ class BlindBox extends adminApi
public function blind_box_edit(){
$id = input('id', '');
$quantity = input('quantity', 0);
$is_world_show = input('is_world_show', 0);
$gift_id = input('gift_id', 0);
if(empty($id)){
return V(0,"参数错误");
}
@@ -195,8 +197,10 @@ class BlindBox extends adminApi
$data = [];
$data['quantity'] = $quantity;
$data['remaining_number'] = $quantity;
if($weight){
$data['weight'] = $weight;
$data['$is_world_show'] = $is_world_show;
$data['weight'] = $weight;
if(!empty($gift_id)){
$data['foreign_id'] = $gift_id;
}
$res = db::name($this->table)->where(['id'=>$id])->update($data);
if($res){