bug修改

This commit is contained in:
2026-01-30 16:56:17 +08:00
parent 961e4c7788
commit 30b580f374

View File

@@ -33,7 +33,7 @@ class Monster extends Model
public function get_gift_list(){
$map = [];
// $map[] = ['gid', 'not in', [36,37,38]];
$map['type'] = ['=', 1];
$map['type'] = ['=', 2];
$map['is_show'] = ['=',1];
$map['delete_time'] = ['=', 0];
$list = db::name('vs_gift')->where($map)->order('gift_price asc')->select();