房间热度卡开发。

This commit is contained in:
2026-01-23 15:02:06 +08:00
parent b44227cebc
commit b6297117a1
2 changed files with 8 additions and 2 deletions

View File

@@ -22,7 +22,8 @@ class Decorate extends BaseCom
public function get_type_list() public function get_type_list()
{ {
$have_hot = input('have_hot',0); $have_hot = input('have_hot',0);
$reslut = model('Decorate')->get_type_list($have_hot); $frome = input('frome',1);//来源1 道具商城 2 个性装扮
$reslut = model('Decorate')->get_type_list($have_hot,$frome);
return V($reslut['code'],$reslut['msg'], $reslut['data']); return V($reslut['code'],$reslut['msg'], $reslut['data']);
} }
//获取装饰列表 //获取装饰列表

View File

@@ -27,7 +27,7 @@ class Decorate extends Model
} }
//获取装扮类型 //获取装扮类型
public function get_type_list($have_hot = 0) public function get_type_list($have_hot = 0,$from=1)
{ {
$no_show_ids = [7,8,3,10,11]; $no_show_ids = [7,8,3,10,11];
$label = $this->TypeArray; $label = $this->TypeArray;
@@ -40,6 +40,11 @@ class Decorate extends Model
if (in_array($k, $no_show_ids)) { if (in_array($k, $no_show_ids)) {
continue; continue;
} }
if($from==2){
if($k==13){
continue;
}
}
$data[$i]['id'] = $k; $data[$i]['id'] = $k;
$data[$i]['name'] = $v; $data[$i]['name'] = $v;
++$i; ++$i;