新需求:PK任务 提交

This commit is contained in:
2026-01-20 11:28:26 +08:00
parent af921cc166
commit 1e78dc9718
3 changed files with 11 additions and 4 deletions

View File

@@ -17,7 +17,9 @@ class Gift extends BaseCom
//获取礼物标签列表
public function get_gift_label()
{
$reslut = model('Gift')->get_gift_label();
$no_label = input('no_label','');
$no_label = explode(',',$no_label);
$reslut = model('Gift')->get_gift_label($no_label);
return V($reslut['code'],$reslut['msg'], $reslut['data']);
}